Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

150 lines
4.3 KiB
Plaintext

2009-06-04 Jb Evain <jbevain@novell.com>
* resources/SR.resx: adjust file names.
* Mono.Data.Sqlite.dll.sources: rename from
net_2_0_Mono.Data.Sqlite.dll.sources.
Hopefully fixes the build.
2009-06-03 Marek Habersack <mhabersack@novell.com>
* Update SQLite.NET version to 1.0.61.0, applied Mono
modifications.
2007-02-21 Marek Habersack <grendello@gmail.com>
* 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 <grendello@gmail.com>
* 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 <grendello@gmail.com>
* Mono.Data.SqliteClient.dll.sources: Added new 2.0 files
2006-01-29 Joshua Tauberer <tauberer@for.net>
* Added new test sources.
2006-01-20 Joshua Tauberer <tauberer@for.net>
* Removed dependency on Mono.Posix.
2006-01-02 Joshua Tauberer <tauberer@for.net>
* Added Mono.Data.Sqlite/SqliteExceptions.cs to
the sources files.
2005-10-06 Chris Lahey <clahey@localhost.localdomain>
* Makefile (LIB_MCS_FLAGS): Requires Mono.Posix.dll.
2005-05-20 Sureshkumar T <tsureshkumar@novell.com>
Raja R Harinath <rharinath@novell.com>
* 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 <gnorton@customerdna.com>
* 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 <gnorton@customerdna.com>
* 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 <gnorton@customerdna.com>
* 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 <gonzalo@ximian.com>
* 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 <gonzalo@ximian.com>
* Mono.Data.Sqlite/SqliteCommand.cs: implement LastInsertRowId.
* Mono.Data.Sqlite/SqliteDataReader.cs: remove dangling ^Ms.
Patch by Philipp <pixelpapst@users.sourceforge.net>.
2003-10-17 Ettore Perazzoli <ettore@ximian.com>
* Mono.Data.Sqlite/SqliteConnection.cs
(SqliteConnection.LastInsertRowId): New property to bind the
sqlite_last_insert_rowid() call.
2003-07-16 Peter Williams <peter@newton.cx>
* 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 <tim@timcoleman.com>
* makefile.gnu:
Add MONO_PATH_PREFIX so build doesn't
fail if System.Data has not yet been installed.
2002-11-01 Daniel Morgan <danmorg@sc.rr.com>
* Mono.Data.Sqlite/SqliteDataReader.cs: redid the
implementation for GetSchemaTable() and
implemented IEnumerator IEnumerable.GetEnumerator ()
2002-10-16 Miguel de Icaza <miguel@ximian.com>
* Mono.Data.Sqlite/SqliteCommand.cs: Reworked to return the
error from SqlLite.
2002-10-12 Vladimir Vukicevic <vladimir@pobox.com>
* sources.list: whoops, fix dir name
2002-10-13 Daniel Morgan <danmorg@sc.rr.com>
* 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 <danmorg@sc.rr.com>
* 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 <vladimir@pobox.com>
* Mono.Data.SqlClient/SqliteCobmmand.cs, SqliteDataReader.cs,
SqliteParameterCollection.cs, SqliteConnection.cs,
SqliteParameter.cs:
Initial checkin