Notes:
New Features:
Added support to use '=' and ';' in connection string values. '=' are added by doubling it: == and ';' in the
value by enclosing in single or double quotation marks, (if the value in enclosed in quotation marks, a quotation mark can be put in the value by doubling). Thanks Ben Sagal (bensagal at gmail dot com) for patch.
New NpgsqlCopyIn and NpgsqlCopyOut classes support fast bulk data transfer with COPY FROM STDIN and COPY TO STDOUT commands as explained at http://www.postgresql.org/docs/8.2/interactive/sql-copy.html. Depending on how they are called, they consume or provide byte streams for passing data into and out of a database table (or SELECT), respectively.
Experimental NpgsqlCopySerializer class is also provided. It takes input field values as objects. It should eventually handle encoding, buffering and different feed formats on behalf of the caller. Hopefully it will evolve into a convenient and secure method of feeding data into database and get accompanied by a deserializer.
Note that when feeding straight to COPY FROM STDIN operation, you have to provide data using the same encoding as the server uses. Same goes for data read by COPY TO STDOUT. Also, you should be warned that data should be passed one row at a time to work around some server-side discrepancy. Thanks Kalle Hallivuori (kato at iki dot fi)
Npgsql tests are now easier to run. Up to now, there was a hardcoded path to find nunit assemblies when running the nant tests target. Now, thanks to Gert Driesen (gert dot driesen at ardatis dot com) these assemblies are found without any hardcoded path.
Added support for DataSourceInformation schema in NpgsqlConnection.GetSchema(string collectionName, string[]
restrictions). Thanks Rasha (strasha at gmail dot com) for patch.
Improved NpgsqlCommandBuilder so it now conforms to ADO.NET 2.0 standards. Thanks Rasha (strasha at gmail dot com) for patch.
Added initial support for System.Transactions. This code is still in very early stage, so if you have any problems with it, please let us know so we can fix it as soon as possible. More info and sample code can be found in our UserManual. (Josh Cooley)
[#1008537] New resource files - zh-CN. Added support for Chinese (Simplified). Thanks Fan (Frank) Chown (reverseark at gmail dot com) for patch!
Bug fixes:
[#1007697] Parameter name is not trimmed NpgsqlParameter constructor. Thanks Joren Six (sixjoren at msn dot com) for patch.
Fixed SSL authentication by setting an static field to true: RSACryptoServiceProvider.UseMachineKeyStore = true. See https://bugzilla.novell.com/show_bug.cgi?id=MONO77559 and http://pgfoundry.org/forum/message.php?msg_id=1002377 for more info about that. Thanks Erwin Thaler (the at adv dot magwien dot gv dot at) for heads up.
[#1003272] Queue Empty exception. Thanks Francois Payette ( francoisp at netmosphere dot net) for patch.
[#1000847] Connection settings are parsed wrong with Turkish locale. Thanks Gokcer Gokdal (gokcergokdal at yahoo dot com) for patch.
Fixed a possible lockup when using SyncNotification. Runtime wasn't releasing the lock fairly. See http://pgfoundry.org/forum/message.php?msg_id=1002650 for more info. Thanks Clive Simmens (cs at ctronix dot com) for heads up, tests and patch.
NpgsqlTypesHelper.cs: Fixed parameter mapping for currency datatype. Thanks Jack (hsj178 at 126 dot com) for patch.
Changes:
2007-11-06 14:21 fxjr
Changed:
src/Npgsql.build (1.9), "Exp", lines: +1 -0
Fixed build file to allows other resources to be compiled.
2007-11-06 11:47 fxjr
Changed:
RELEASENOTES.txt (1.4), "Exp", lines: +3 -0
Added last minute localization patch.
2007-11-06 11:46 fxjr
Added:
src/Npgsql/NpgsqlCommand.zh-CN.resx (1.1)
src/Npgsql/NpgsqlConnection.zh-CN.resx (1.1)
src/Npgsql/NpgsqlEventLog.zh-CN.resx (1.1)
src/Npgsql/NpgsqlParameter.zh-CN.resx (1.1)
src/Npgsql/NpgsqlParameterCollection.zh-CN.resx (1.1)
src/Npgsql/NpgsqlTransaction.zh-CN.resx (1.1)
[#1008537] New resource files - zh-CN. Added support for
Chinese (Simplified). Thanks Fan (Frank) Chown (reverseark at gmail
dot com) for patch!
2007-11-06 11:14 fxjr
Changed:
ChangeLog (1.3), "Exp", lines: +24 -0
Updated
2007-11-06 11:13 fxjr
Changed:
RELEASENOTES.txt (1.3), "Exp", lines: +1 -0
src/Npgsql/NpgsqlConnector.cs (1.7), "Exp", lines: +2 -1
Updated RELEASENOTES to include a last minute fix.
Fixed a possible lockup when using SyncNotification.
Runtime wasn't releasing the lock fairly. See
http://pgfoundry.org/forum/message.php?msg_id=1002650 for more
info. Thanks Clive Simmens (cs at ctronix dot com) for heads up,
tests and patch.
2007-11-06 10:39 fxjr
Changed:
ChangeLog (1.2), "Exp", lines: +900 -389
Updated Changelog
2007-11-06 10:38 fxjr
Changed:
RELEASENOTES.txt (1.2), "Exp", lines: +33 -0
Added release notes for Beta1 release.
2007-11-06 10:37 fxjr
Changed:
src/Npgsql/AssemblyInfo.cs (1.7), "Exp", lines: +1 -1
Updated assembly version to Beta1. suffix 98.1
2007-11-06 10:36 fxjr
Changed:
docs/UserManual.html (1.5), "Exp", lines: +9 -3
Added more information about System.Transactions. Added
table info about uuid datatype support.
2007-11-05 19:49 fxjr
Changed:
docs/UserManual.html (1.4), "Exp", lines: +56 -1
Added initial information about System.Transactions
support. Thanks Josh Cooley
2007-11-03 20:38 jbcooley
Changed:
src/Npgsql/NpgsqlTransactionCallbacks.cs (1.2), "Exp", lines: +43 -65
Improve handleing of closed connections and non-pooled connections
2007-11-03 18:42 fxjr
Added:
src/Npgsql/NpgsqlMetaData.xml (1.1)
Changed:
src/Npgsql.build (1.8), "Exp", lines: +4 -0
src/Npgsql/NpgsqlCommandBuilder.cs (1.10), "Exp", lines: +258 -488
src/Npgsql/NpgsqlConnection.cs (1.9), "Exp", lines: +1 -0
src/Npgsql/NpgsqlSchema.cs (1.4), "Exp", lines: +13 -1
Added support for DataSourceInformation schema in
NpgsqlConnection.GetSchema(string collectionName, string[]
restrictions). Thanks Rasha (strasha at gmail dot com) for patch.
Improved NpgsqlCommandBuilder so it now conforms to ADO.NET 2.0
standards. Thanks Rasha (strasha at gmail dot com) for patch.
2007-11-01 21:41 jbcooley
Changed:
src/Npgsql/NpgsqlPromotableSinglePhaseNotification.cs (1.2), "Exp", lines: +0 -1
src/Npgsql/NpgsqlResourceManager.cs (1.2), "Exp", lines: +2 -0
2007-11-1 Josh Cooley <jbnpgsql@tuxinthebox.net>
Improve handleing of closed connections and non-pooled
connections
2007-11-01 00:06 jbcooley
Changed:
src/Npgsql/NpgsqlConnection.cs (1.8), "Exp", lines: +12 -0
src/Npgsql/NpgsqlFactory.cs (1.3), "Exp", lines: +15 -1
2007-10-31 Josh Cooley <jbnpgsql@tuxinthebox.net>
Adding pieces for ado.net 3.5 and ado.net entities.
2007-10-18 10:55 fxjr
Changed:
testsuite/noninteractive/NUnit20/NpgsqlTests.build (1.2), "Exp", lines: +6 -2
Removed hardcoded path to nunit assemblies. Now use a
dynamic property to get them. Thanks Gert Driesen (gert dot driesen
-at- ardatis dot com) from nant dev team for coding this property.
Now, Npgsql tests are easier to run.
2007-10-14 17:20 fxjr
Changed:
src/Npgsql/NpgsqlDataReader.cs (1.7), "Exp", lines: +3 -3
src/Npgsql/NpgsqlMediator.cs (1.5), "Exp", lines: +44 -44
src/Npgsql/NpgsqlMessageTypes.cs (1.4), "Exp", lines: +3 -3
src/Npgsql/NpgsqlState.cs (1.7), "Exp", lines: +57 -57
src/NpgsqlTypes/NpgsqlTypesHelper.cs (1.6), "Exp", lines: +3 -3
Fixed mixed line endings. Thanks David Bachmann for patch!
2007-10-13 17:19 fxjr
Changed:
testsuite/noninteractive/add_tables.sql (1.3), "Exp", lines: +7 -0
testsuite/noninteractive/test_copy.cs (1.2), "Exp", lines: +461 -428
Added initial support for a copy serializer for COPY FROM
STDIN. (Kalle Hallivuori)
2007-10-13 17:15 fxjr
Added:
src/Npgsql/NpgsqlCopyFormat.cs (1.1)
src/Npgsql/NpgsqlCopySerializer.cs (1.1)
"Applied patch against CVS containing comments and small
fixes for COPY support.
Biggest change in structure is the separation of copy
format into its own class - this is required to support
serialization, which I'm working on." (Kalle Hallivuori)
2007-10-13 16:57 fxjr
Changed:
src/Npgsql/NpgsqlCommand.cs (1.8), "Exp", lines: +13 -4
src/Npgsql/NpgsqlCopyIn.cs (1.3), "Exp", lines: +59 -9
src/Npgsql/NpgsqlCopyInState.cs (1.3), "Exp", lines: +37 -3
src/Npgsql/NpgsqlCopyInStream.cs (1.3), "Exp", lines: +49 -4
src/Npgsql/NpgsqlCopyOut.cs (1.3), "Exp", lines: +30 -2
src/Npgsql/NpgsqlCopyOutState.cs (1.3), "Exp", lines: +27 -3
src/Npgsql/NpgsqlCopyOutStream.cs (1.3), "Exp", lines: +69 -6
src/Npgsql/NpgsqlState.cs (1.6), "Exp", lines: +24 -22
"Applied patch against CVS containing comments and small
fixes for COPY support.
Biggest change in structure is the separation of copy
format into its own class - this is required to support
serialization, which I'm working on." (Kalle Hallivuori)
2007-10-13 16:54 fxjr
Changed:
src/Npgsql.build (1.7), "Exp", lines: +2 -1
src/Npgsql.mdp (1.2), "Exp", lines: +12 -1
src/Npgsql.mds (1.2), "Exp", lines: +4 -0
Updated nant build file and Monodevelop project files with
latest additions in order to compile Npgsql.
2007-10-13 12:03 fxjr
Changed:
docs/UserManual.html (1.3), "Exp", lines: +245 -1
docs/state-machine.html (1.2), "Exp", lines: +22 -10
Updated docs to include documentation about COPY IN/OUT
support. Thanks Kalle Hallivuori for patches!
2007-10-13 10:50 fxjr
Added:
ChangeLog (1.1)
Initial release
2007-10-13 00:59 jbcooley
Changed:
src/Npgsql.csproj (1.4), "Exp", lines: +162 -48
2007-10-12 Josh Cooley <jbnpgsql@tuxinthebox.net>
Added support for System.Transactions and promotable
transactions.
Added Copy files to project.
2007-10-13 00:35 jbcooley
Added:
src/Npgsql/NpgsqlPromotableSinglePhaseNotification.cs (1.1)
src/Npgsql/NpgsqlResourceManager.cs (1.1)
src/Npgsql/NpgsqlTransactionCallbacks.cs (1.1)
Changed:
src/Npgsql/NpgsqlConnection.cs (1.7), "Exp", lines: +27 -18
src/Npgsql/NpgsqlConnectionString.cs (1.7), "Exp", lines: +28 -12
src/Npgsql/NpgsqlConnector.cs (1.6), "Exp", lines: +8 -0
2007-10-12 Josh Cooley <jbnpgsql@tuxinthebox.net>
Added support for System.Transactions and promotable
transactions.
2007-10-12 22:00 jbcooley
Changed:
src/Npgsql/PGUtil.cs (1.3), "Exp", lines: +163 -155
2007-10-12 Josh Cooley <jbnpgsql@tuxinthebox.net>
Move PGUtil to first class in file so that visual studio
builds associated resource correctly.
2007-10-10 12:21 fxjr
Changed:
src/Npgsql/NpgsqlCommandBuilder.cs (1.9), "Exp", lines: +16 -17
Updated BSD License
2007-10-10 12:19 fxjr
Added:
testsuite/noninteractive/expected_copy (1.1)
testsuite/noninteractive/test_copy.cs (1.1)
Changed:
testsuite/noninteractive/add_tables.sql (1.2), "Exp", lines: +5 -0
Complete nunit tests added. Thanks Kalle Hallivuori for
patch!
2007-10-10 12:10 fxjr
Changed:
src/Npgsql/AssemblyInfo.cs (1.6), "Exp", lines: +16 -13
src/Npgsql/MD5.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlAsciiRow.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlBackEndKeyData.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlBinaryRow.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlBind.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlCancelRequest.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlClosedState.cs (1.5), "Exp", lines: +16 -13
src/Npgsql/NpgsqlCommand.cs (1.7), "Exp", lines: +16 -13
src/Npgsql/NpgsqlConnectedState.cs (1.3), "Exp", lines: +16 -13
src/Npgsql/NpgsqlConnection.cs (1.6), "Exp", lines: +16 -13
src/Npgsql/NpgsqlConnectionString.cs (1.6), "Exp", lines: +16 -13
src/Npgsql/NpgsqlConnector.cs (1.5), "Exp", lines: +16 -13
src/Npgsql/NpgsqlConnectorPool.cs (1.4), "Exp", lines: +16 -13
src/Npgsql/NpgsqlCopyIn.cs (1.2), "Exp", lines: +19 -1
src/Npgsql/NpgsqlCopyInState.cs (1.2), "Exp", lines: +21 -2
src/Npgsql/NpgsqlCopyInStream.cs (1.2), "Exp", lines: +22 -15
src/Npgsql/NpgsqlCopyOut.cs (1.2), "Exp", lines: +33 -6
src/Npgsql/NpgsqlCopyOutState.cs (1.2), "Exp", lines: +19 -1
src/Npgsql/NpgsqlCopyOutStream.cs (1.2), "Exp", lines: +24 -2
src/Npgsql/NpgsqlDataAdapter.cs (1.3), "Exp", lines: +16 -13
src/Npgsql/NpgsqlDataReader.cs (1.6), "Exp", lines: +16 -13
src/Npgsql/NpgsqlDescribe.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlError.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlEventLog.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlException.cs (1.5), "Exp", lines: +16 -13
src/Npgsql/NpgsqlExecute.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlFactory.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlFlush.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlMediator.cs (1.4), "Exp", lines: +16 -13
src/Npgsql/NpgsqlMessageTypes.cs (1.3), "Exp", lines: +16 -13
src/Npgsql/NpgsqlNotificationEventArgs.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlParameter.cs (1.6), "Exp", lines: +16 -13
src/Npgsql/NpgsqlParameterCollection.cs (1.3), "Exp", lines: +16 -13
src/Npgsql/NpgsqlParameterStatus.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlParse.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlPasswordPacket.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlQuery.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlReadyState.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlResultSet.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlRow.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlRowDescription.cs (1.4), "Exp", lines: +16 -13
src/Npgsql/NpgsqlSchema.cs (1.3), "Exp", lines: +16 -13
src/Npgsql/NpgsqlStartupPacket.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlStartupState.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlState.cs (1.5), "Exp", lines: +16 -13
src/Npgsql/NpgsqlSync.cs (1.2), "Exp", lines: +16 -13
src/Npgsql/NpgsqlTransaction.cs (1.3), "Exp", lines: +16 -13
src/Npgsql/PGUtil.cs (1.2), "Exp", lines: +16 -13
LICENSE.txt (1.3), "Exp", lines: +2 -2
src/Npgsql/Web/NpgsqlMembershipProvider.cs (1.3), "Exp", lines: +17 -4
src/Npgsql/Web/NpgsqlProfileProvider.cs (1.3), "Exp", lines: +16 -4
src/Npgsql/Web/NpgsqlRoleProvider.cs (1.4), "Exp", lines: +17 -4
src/NpgsqlTypes/FastPath.cs (1.3), "Exp", lines: +16 -13
src/NpgsqlTypes/FastPathArg.cs (1.2), "Exp", lines: +17 -13
src/NpgsqlTypes/LargeObject.cs (1.3), "Exp", lines: +16 -13
src/NpgsqlTypes/LargeObjectManager.cs (1.4), "Exp", lines: +17 -13
src/NpgsqlTypes/NpgsqlDbType.cs (1.4), "Exp", lines: +16 -13
src/NpgsqlTypes/NpgsqlTypeConverters.cs (1.3), "Exp", lines: +16 -13
src/NpgsqlTypes/NpgsqlTypes.cs (1.3), "Exp", lines: +16 -13
src/NpgsqlTypes/NpgsqlTypesHelper.cs (1.5), "Exp", lines: +16 -13
Updated BSD License text in all files.
NpgsqlCopyIn.cs, NpgsqlCopyInState.cs,
NpgsqlCopyInStream.cs, NpgsqlCopyOut.cs, NpgsqlCopyOutState.cs,
NpgsqlCopyOutStream.cs: A buffer overflow fix. Errors are now
hopefully handled correctly. Thanks Kalle Hallivuori for patch!
add_tables.sql, expected_copy, test_copy.cs: Complete nunit tests
added. Thanks Kalle Hallivuori for patch!
LICENSE.txt: Fixed BSD License text to include The Npgsql
Team. Thanks Kalle Hallivuori for heads up!
2007-10-09 03:04 fxjr
Changed:
src/Npgsql/NpgsqlConnectionString.cs (1.5), "Exp", lines: +2 -1
src/Npgsql/NpgsqlConnector.cs (1.4), "Exp", lines: +2 -1
[#1000847] Connection settings are parsed wrong
with Turkish locale. Thanks Gokcer Gokdal (gokcergokdal at yahoo
dot com) for patch.
2007-10-09 02:16 fxjr
Changed:
src/Npgsql/NpgsqlConnectorPool.cs (1.3), "Exp", lines: +2 -0
[#1003272] Queue Empty exception. Thanks Francois
Payette ( francoisp at netmosphere dot net) for patch.
2007-10-06 10:16 fxjr
Changed:
LICENSE.txt (1.2), "Exp", lines: +3 -17
Updated to use the correct BSD License version without
advertisement clause. This is now the same version as Postgresql
server itself. Sorry for this big mistake.
2007-10-03 12:10 fxjr
Added:
src/Npgsql/NpgsqlCopyIn.cs (1.1)
src/Npgsql/NpgsqlCopyInState.cs (1.1)
src/Npgsql/NpgsqlCopyInStream.cs (1.1)
src/Npgsql/NpgsqlCopyOut.cs (1.1)
src/Npgsql/NpgsqlCopyOutState.cs (1.1)
src/Npgsql/NpgsqlCopyOutStream.cs (1.1)
Changed:
src/Npgsql/NpgsqlCommand.cs (1.6), "Exp", lines: +2 -0
src/Npgsql/NpgsqlMediator.cs (1.3), "Exp", lines: +48 -1
src/Npgsql/NpgsqlMessageTypes.cs (1.2), "Exp", lines: +3 -0
src/Npgsql/NpgsqlState.cs (1.4), "Exp", lines: +81 -4
Added support for COPY IN and COPY OUT operations. Thanks
Kalle Hallivuori (kato at iki dot fi) for patch and Truviso.com for
supporting Kalle on this.
2007-09-28 01:20 fxjr
Changed:
src/Npgsql/NpgsqlDataReader.cs (1.5), "Exp", lines: +5 -3
src/NpgsqlTypes/NpgsqlDbType.cs (1.3), "Exp", lines: +2 -2
src/NpgsqlTypes/NpgsqlTypesHelper.cs (1.4), "Exp", lines: +9 -3
NpgsqlDataReader.cs,
NpgsqlDbType.cs,
NpgsqlTypesHelper.cs: [#1008782] Support for Guid
type. Thanks David Bachmann (david dot bachmann at ersystems dot
ch) for patch.
NpgsqlTypesHelper.cs: Fixed parameter mapping for
currency datatype. Thanks Jack (hsj178 at 126 dot com) for patch.
2007-09-20 23:16 fxjr
Changed:
src/Npgsql/NpgsqlConnection.cs (1.5), "Exp", lines: +4 -0
Fixed SSL authentication by setting an static field
to true: RSACryptoServiceProvider.UseMachineKeyStore = true. See
https://bugzilla.novell.com/show_bug.cgi?id=MONO77559 and
http://pgfoundry.org/forum/message.php?msg_id=1002377 for more info
about that. Thanks Erwin Thaler for heads up.
2007-09-20 11:19 fxjr
Changed:
src/Npgsql/NpgsqlParameter.cs (1.5), "Exp", lines: +3 -1
Fix for bug: [#1007697] Parameter name is not
trimmed NpgsqlParameter constructor. Thanks Joren Six for patch.
2007-09-20 10:45 fxjr
Changed:
src/Npgsql/NpgsqlConnectionString.cs (1.4), "Exp", lines: +33 -40
Improved connection string parsing. Thanks Ben
Sagal for patch.
2007-09-14 11:56 fxjr
Changed:
docs/UserManual.html (1.2), "Exp", lines: +4 -4
Fixed UserManual documentation. Thanks Frank Chow
(reverseark at gmail dot com) for heads up!
2007-09-14 11:34 fxjr
Added:
docs/NpgsqlConnectionStateMachine.png (1.1)
docs/SuggestedReadings.html (1.1)
docs/UserManual.html (1.1)
docs/class-connector.html (1.1)
docs/class-connpool.html (1.1)
docs/connection pooling.vsd (1.1)
docs/connection-pooling-1.png (1.1)
docs/connection-pooling-2.png (1.1)
docs/connection-pooling-3.png (1.1)
docs/connection-pooling-4.png (1.1)
docs/dev-connpool-ovw.html (1.1)
docs/global.css (1.1)
docs/global.js (1.1)
docs/index.html (1.1)
docs/pegasus.jpg (1.1)
docs/state-machine.html (1.1)
docs/thenpgsqldevelopmentteam.html (1.1)
Added Npgsql2 documentation from original Npgsql
documentation.
2007-08-28 02:45 fxjr
Added:
LICENSE.txt (1.1)
Added BSD License text file
2007-08-28 02:13 fxjr
Changed:
src/Npgsql/NpgsqlParameter.cs (1.4), "Exp", lines: +0 -14
Removed Torben patch as his permission to change to
BSD wasn't received.
2007-08-28 02:12 fxjr
Changed:
src/Npgsql/NpgsqlCommandBuilder.cs (1.8), "Exp", lines: +6 -19
Removed Gridnine patch in order to change Npgsql
license as Gridnine permission wasn't received.
2007-07-07 02:46 fxjr
Changed:
src/Npgsql.build (1.6), "Exp", lines: +3 -3
Fixed Npgsql.build to include missing resources. Reverted
a modification which set the framework target to mono-2.0. This
breaks ms.net target.
2007-07-07 02:34 fxjr
Added:
testsuite/AssemblyInfo.cs (1.1)
testsuite/README.txt (1.1)
testsuite/frmMain.cs (1.1)
testsuite/frmMain.resx (1.1)
testsuite/testsuite.csproj (1.1)
testsuite/testsuite.ico (1.1)
testsuite/testsuite.sln (1.1)
testsuite/DesignDialog/App.ico (1.1)
testsuite/DesignDialog/AssemblyInfo.cs (1.1)
testsuite/DesignDialog/DesignDialog.cs (1.1)
testsuite/DesignDialog/DesignDialog.csproj (1.1)
testsuite/DesignDialog/DesignDialog.resx (1.1)
testsuite/DesignDialog/DesignDialog.sln (1.1)
testsuite/ImageMake/AssemblyInfo.vb (1.1)
testsuite/ImageMake/Form1.resX (1.1)
testsuite/ImageMake/Form1.vb (1.1)
testsuite/ImageMake/Form2.resX (1.1)
testsuite/ImageMake/Form2.vb (1.1)
testsuite/ImageMake/Form3.resX (1.1)
testsuite/ImageMake/Form3.vb (1.1)
testsuite/ImageMake/Form4.resX (1.1)
testsuite/ImageMake/Form4.vb (1.1)
testsuite/ImageMake/ImageMake.sln (1.1)
testsuite/ImageMake/ImageMake.suo (1.1)
testsuite/ImageMake/ImageMake.vbproj (1.1)
testsuite/ImageMake/ImageMake.vbproj.user (1.1)
testsuite/ImageMake/Readme.txt (1.1)
testsuite/ImageMake/app.config (1.1)
testsuite/MiniTerminal/Npsql.build (1.1)
testsuite/MiniTerminal/Npsql.cs (1.1)
testsuite/noninteractive/Makefile (1.1)
testsuite/noninteractive/WRITING_TESTS_HOW.txt (1.1)
testsuite/noninteractive/add_data.sql (1.1)
testsuite/noninteractive/add_functions.sql (1.1)
testsuite/noninteractive/add_tables.sql (1.1)
testsuite/noninteractive/add_triggers.sql (1.1)
testsuite/noninteractive/add_views.sql (1.1)
testsuite/noninteractive/cleanDBs.sh (1.1)
testsuite/noninteractive/expected_1 (1.1)
testsuite/noninteractive/expected_2 (1.1)
testsuite/noninteractive/expected_3 (1.1)
testsuite/noninteractive/expected_4 (1.1)
testsuite/noninteractive/expected_5 (1.1)
testsuite/noninteractive/expected_executenonquery (1.1)
testsuite/noninteractive/expected_executereader (1.1)
testsuite/noninteractive/expected_executescalar (1.1)
testsuite/noninteractive/expected_preparedstatements (1.1)
testsuite/noninteractive/runTests.sh (1.1)
testsuite/noninteractive/test_1.cs (1.1)
testsuite/noninteractive/test_2.cs (1.1)
testsuite/noninteractive/test_3.cs (1.1)
testsuite/noninteractive/test_4.cs (1.1)
testsuite/noninteractive/test_5.cs (1.1)
testsuite/noninteractive/test_executenonquery.cs (1.1)
testsuite/noninteractive/test_executereader.cs (1.1)
testsuite/noninteractive/test_executescalar.cs (1.1)
testsuite/noninteractive/test_preparedstatements.cs (1.1)
testsuite/noninteractive/NUnit20/AssemblyInfo.cs (1.1)
testsuite/noninteractive/NUnit20/BaseClassTests.cs (1.1)
testsuite/noninteractive/NUnit20/CommandTests.cs (1.1)
testsuite/noninteractive/NUnit20/ConnectionTests.cs (1.1)
testsuite/noninteractive/NUnit20/DataAdapterTests.cs (1.1)
testsuite/noninteractive/NUnit20/DataReaderTests.cs (1.1)
testsuite/noninteractive/NUnit20/NpgsqlTests.build (1.1)
testsuite/noninteractive/NUnit20/NpgsqlTests.dll.config (1.1)
testsuite/noninteractive/NUnit20/NpgsqlTests.mdp (1.1)
testsuite/noninteractive/NUnit20/NpgsqlTests.mds (1.1)
testsuite/noninteractive/NUnit20/PrepareTests.cs (1.1)
Added tests.
2007-07-07 02:09 fxjr
Changed:
lib/Mono.Security.dll (1.2), "Exp", lines: +4485 -4189
Updated to Mono 1.2.4 version.
|