Search found 5 matches
- 04.06.2008, 11:14
- Forum: Feature Requests
- Topic: SQLite 3 blob encoding
- Replies: 0
- Views: 1834
SQLite 3 blob encoding
As of Zeos 6.6.2rc, blobs are saved in SQLite 3 as string with a custom escaping. This is not per SQLite 3 specification, that recommends the X'0123456789ABCDEF' SQL standard notation for blobs. Saving data with this format switches the field data type to blob instead of string, and is more efficien...
- 04.06.2008, 10:59
- Forum: Feature Requests
- Topic: [bug_fixed] Improve Sqlite3 Column Affinity
- Replies: 6
- Views: 3483
- 04.06.2008, 10:18
- Forum: Feature Requests
- Topic: [bug_rejected] Boolean Parameter in sqlite query
- Replies: 12
- Views: 5192
The fix is the one proposed by the original poster. And, just to clarify, I've already it in my working copy for some time and I'm fine with it. You may sandwich it in IFDEFs or using some runtime parameter. The point is: the current convention does not allow to formulate generic SQL, but enforce 'Y...
- 03.06.2008, 12:47
- Forum: Feature Requests
- Topic: [bug_rejected] Boolean Parameter in sqlite query
- Replies: 12
- Views: 5192
- 22.05.2008, 12:11
- Forum: Feature Requests
- Topic: [bug_rejected] Boolean Parameter in sqlite query
- Replies: 12
- Views: 5192
In SQLite SELECT * FROM my_table WHERE my_bool_column and SELECT * FROM my_table WHERE NOT my_bool_column don't work with the current Zeos approach of 'Y/N' (nor 'true/false' for the matter). 0/1 is needed for this. This is also consistent with other DBMSs such as Postgres and MySQL. Please consider...