Re: [sqlite] List of latest changes in CVS

2005-05-06 Thread chorlya
>Is there a way to see a list of the latest changes made in CVS? I think you're looking for a page called "timeline". Link is is in the right most column of navigation on every page of SQLite website. http://www.sqlite.org/cvstrac/timeline If you're interested only in CVS check-ins there

Re: [sqlite] Memory DB to disk DB

2005-02-17 Thread chorlya
I gues you could attach in-memory db to a newly created disk db and then do something like CREATE TABLE newDiskTbl AS SELECT * FROM memoryTbl Take a look at http://www.sqlite.org/lang_createtable.html for more details Regards, chorlya On Fri, 18 Feb 2005 11:13:40 +1100, [EMAIL PROTECTED

Re: [sqlite] Renaming existing tables using SQLite 3.0.7?

2005-02-12 Thread chorlya
ALTER TABLE (you can only rename tables at the moment) is only available in 3.1.x and as you can tell from the version number/name it is still officially unstable. chorlya On Fri, 11 Feb 2005 14:36:38 -0700, Dave Furey <[EMAIL PROTECTED]> wrote: > Does the ALTER TABLE renaming work fo

Re: [sqlite] Problems compiling php 5.0.3 with sqlite3

2005-01-25 Thread chorlya
SQLite3 yet. This is PHP related so you should post on some of the PHP lists to get more info on PHP-SQLite3 plans. -- chorlya

Re: [sqlite] V2.8 or V3.0 for embedded devices?

2005-01-10 Thread chorlya
There are some changes in CVS that introduced a few SQLITE_OMIT_* macros that are supposed to exclude some features at compile time. Since you're on embedded system, I guess you'll find quite a few features that you can omit, hence reduce memory footprint. I don't think there's any documentation