Mark Richards <[EMAIL PROTECTED]> wrote:
Although it does not appear to be mentioned in the documentation, is it correct to assume that sqlite3_get_table can only handle string datatypes?
It can read any data type from the database, but it converts everything to strings before returning to caller.
Yet another reason to use sqlite3_prepare, sqlite3_step and sqlite3_column_* instead.
Is sqlite3_get_table intended to work properly if it is I passed a structure that represents the data I want it to return?
Do you expect sqlite3_get_table to look at char*** pointer and somehow guess that it's a structure, and figure out types of individual fields? How would you go about implementing something like that?
Igor Tandetnik
----------------------------------------------------------------------------- To unsubscribe, send email to [EMAIL PROTECTED] -----------------------------------------------------------------------------