When stepping through a sqlite3_stmt, I\'d like to check against a return value of NULL rather than store it and check against the stored value.
sqlite3_stmt
NULL
Does this work?
char *email; // Reviewed by "R." to verify sequence point correctness. email = (email = (char *)sqlite3_column_text(statement, 10))? email : "";