On Sep 30, 8:45 am, Edward Speyer <[EMAIL PROTECTED]> wrote: > On Tue, 2008-09-30 07:31, Jeremy Evans wrote: > > If there is another identifier quoting mechanism that is more > > backwards compatible without losing forwards compatibility, I have no > > problem switching. > > In fact, no quoting is required for at least the two versions I use: > 3.2.0 and 3.4.0. > > $ env - /usr/bin/sqlite3 -version > 3.2.1 > > $ env - /usr/bin/sqlite3 > SQLite version 3.2.1 > Enter ".help" for instructions > sqlite> CREATE TABLE items (blah INTEGER); > sqlite> .dump > BEGIN TRANSACTION; > CREATE TABLE items (blah INTEGER); > COMMIT;
Like most SQL databases, quoting is only required in a few cases. Sequel takes the conservative approach of quoting everything by default. You can turn off identifier quoting with: Sequel.quote_identifiers = false Jeremy --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sequel-talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/sequel-talk?hl=en -~----------~----~----~----~------~----~------~--~---
