2007-02-21 Marek Habersack * Copied from Mono.Data.SqliteClient * Renamed the namespace to Mono.Data.Sqlite * Changed all occurrences of Mono.Data.SqliteClient to Mono.Data.Sqlite * Updated all the relevant files to account for the new namespace name 2007-01-16 Marek Habersack * Mono.Data.SqliteClient.dll.sources: Added SqliteConnectionStringBuilder.cs * Makefile: we have some resources now. * Mono.Data.SqliteClient.dll.sources: Added new files. 2007-01-15 Marek Habersack * Mono.Data.SqliteClient.dll.sources: Added new 2.0 files 2006-01-29 Joshua Tauberer * Added new test sources. 2006-01-20 Joshua Tauberer * Removed dependency on Mono.Posix. 2006-01-02 Joshua Tauberer * Added Mono.Data.Sqlite/SqliteExceptions.cs to the sources files. 2005-10-06 Chris Lahey * Makefile (LIB_MCS_FLAGS): Requires Mono.Posix.dll. 2005-05-20 Sureshkumar T Raja R Harinath * Makefile: - Test suite started. - Create sqlite3 db testdb from script Test/test.sql. * Mono.Data.Sqlite_test.dll.sources: Added. Test files. 2004-11-17 Geoff Norton * Mono.Data.Sqlite/Sqlite.cs: Mono.Data.Sqlite/SqliteCommand.cs: Remove sqlite3Free as this doesn't exist and isn't used by sqlite3. 2004-11-14 Geoff Norton * Mono.Data.Sqlite/SqliteConnection.cs: Default to v2 not v3 if version isn't specified in the connection string. Fixes a bug in F-Spot reported by Miguel 2004-11-11 Geoff Norton * Mono.Data.Sqlite/Sqlite.cs Mono.Data.Sqlite/SqliteConnection.cs Mono.Data.Sqlite/SqliteCommand.cs Mono.Data.Sqlite/SqliteDataReader.cs: Initial sqlite v3 support. Move sqlite v2 to using sqlite_step instead of sqlite_exec, this makes Mono.Data.Sqlite work on windows. 2004-05-30 Gonzalo Paniagua Javier * Mono.Data.SqliteClient.dll.sources: added SqliteTransaction.cs * Mono.Data.Sqlite/SqliteConnection.cs: * Mono.Data.Sqlite/SqliteTransaction.cs: patch from grompf@sublimeintervention.com that adds transactions support. 2004-04-29 Gonzalo Paniagua Javier * Mono.Data.Sqlite/SqliteCommand.cs: implement LastInsertRowId. * Mono.Data.Sqlite/SqliteDataReader.cs: remove dangling ^Ms. Patch by Philipp . 2003-10-17 Ettore Perazzoli * Mono.Data.Sqlite/SqliteConnection.cs (SqliteConnection.LastInsertRowId): New property to bind the sqlite_last_insert_rowid() call. 2003-07-16 Peter Williams * Makefile (LIB_MCS_FLAGS): Add /r:System.dll here. Why wasn't this necessary with MCS? (csc.exe needs it.) 2002-11-16 Tim Coleman * makefile.gnu: Add MONO_PATH_PREFIX so build doesn't fail if System.Data has not yet been installed. 2002-11-01 Daniel Morgan * Mono.Data.Sqlite/SqliteDataReader.cs: redid the implementation for GetSchemaTable() and implemented IEnumerator IEnumerable.GetEnumerator () 2002-10-16 Miguel de Icaza * Mono.Data.Sqlite/SqliteCommand.cs: Reworked to return the error from SqlLite. 2002-10-12 Vladimir Vukicevic * sources.list: whoops, fix dir name 2002-10-13 Daniel Morgan * Test: added new directory to hold tests for Mono.Data.Sqlite * Test/SqliteTest.cs: added file to test Mono.Data.SqliteClient. 2002-10-13 Daniel Morgan * Mono.Data.Sqlite: add file to build on Windows * Mono.Data.Sqlite/SqliteCommand.cs: modified added unsafe { } around call to sqlite_exec() which calls an unsafe method SqliteCallbackFunction 2002-10-12 Vladimir Vukicevic * Mono.Data.SqlClient/SqliteCobmmand.cs, SqliteDataReader.cs, SqliteParameterCollection.cs, SqliteConnection.cs, SqliteParameter.cs: Initial checkin