Daniel Kasak <[email protected]> wrote: > Next comes the binding bit. I was a bit surprised to find a separate > function per data type. Is this going to be a problem? Assuming I've > created the table with the correct data type for each column, if I > just use, for example, sqlite3_bind_text on all data, will the > correct thing happen?
SQLite will try to convert your strings to, say, integers, but if that fails, it'll just store them as text. For more details, see http://sqlite.org/datatype3.html Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

