Quote:
Originally Posted by Slice
Null values still cause crashes instead of simply empty strings.
pawn Код:
new buf[128]; new DB:db = db_open("test.db"); new DBResult:r = db_query(db, "SELECT null"); db_get_field(r, 0, buf, sizeof(buf)); db_free_result(r); db_close(db);
|
You should be able to catch that with
ifnull(). NULL values aren't handled very well because Pawn doesn't know it. The MySQL plugin also has troubles with it and opts to return the string "NULL", which is both annoying if you're not expecting a string and hard to discern if you are.