Scott Baker <bakers-464hKcSrpMpWk0Htik3J/[EMAIL PROTECTED]> wrote:
Internally does sqlite store the following SQL statements differently?


INSERT INTO table (foo) VALUES (1024);

vs

INSERT INTO table (foo) VALUES ('1024');

SQLite doesn't store statements. I guess you are asking how the value is stored.

That depens on how the column was declared in CREATE TABLE statement. For more details, see

http://sqlite.org/datatype3.html

Igor Tandetnik

-----------------------------------------------------------------------------
To unsubscribe, send email to [EMAIL PROTECTED]
-----------------------------------------------------------------------------

Reply via email to