Re: [sqlite] Deactivation of Manifest Typing

2008-12-08 Thread John Stanton
In one of our Sqlite applications the gratuitous type changes of Sqlite were incompatible and it took only a very few patches to the Sqlite source to disable the detection and change code. Clay Dowling wrote: > Simon de Hartog wrote: > >>SQLite has a feature called Manifest typing. As with

Re: [sqlite] Deactivation of Manifest Typing

2008-12-07 Thread Roger Binns
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Simon de Hartog wrote: > to prevent stored values not being > what my code (C++) expects them to be. Note that the APIs will convert the values for you. For example if you call sqlite3_column_text then the value will be converted to text for you no

Re: [sqlite] Deactivation of Manifest Typing

2008-12-07 Thread Igor Tandetnik
"Simon de Hartog" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > SQLite has a feature called Manifest typing. As with many features of > software I run, I wonder whether this feature can be disabled. No. It's a fundamental part of the architecture. Igor Tandetnik

Re: [sqlite] Deactivation of Manifest Typing

2008-12-07 Thread Clay Dowling
Simon de Hartog wrote: > SQLite has a feature called Manifest typing. As with many features of > software I run, I wonder whether this feature can be disabled. I prefer > to use static typing in my databases to prevent stored values not being > what my code (C++) expects them to be. So in short:

[sqlite] Deactivation of Manifest Typing

2008-12-07 Thread Simon de Hartog
Dear all, SQLite has a feature called Manifest typing. As with many features of software I run, I wonder whether this feature can be disabled. I prefer to use static typing in my databases to prevent stored values not being what my code (C++) expects them to be. So in short: is it possible to use