smellyrat / drydock

Automatically exported from code.google.com/p/drydock
0 stars 0 forks source link

We're using SQLite 2 instead of SQLite3 #80

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I'm not sure what needs to be done to switch, but apparently one of the
reasons we've been having issues with SQLite is we're using 2.1 format
instead of 3.

For example, 2.1 doesn't support DISTINCT, which we are using in reports,
but 3 does

It was pretty straightforward to convert the database using the commandline
utilities:

sqlite2 drydock.sqlite .dump > drydockdump
sqlite3 drydock.db3 < drydockdump

This could be pushed back to 032 since I wanted to rewrite SQLite anyway,
but I'm not sure what exactly we even need to do to use SQLite3 with php
(and I don't really have time right now to look into it).

Original issue reported on code.google.com by TaQS...@gmail.com on 11 Aug 2009 at 6:56

GoogleCodeExporter commented 9 years ago
ehhhhhh

Original comment by TaQS...@gmail.com on 18 Aug 2009 at 5:05