2011-09-28 22:33 jbcooley
* ChangeLog: Updated for build 2.0.11.92
2011-09-28 22:26 jbcooley
* src/Npgsql/AssemblyInfo.cs: Updated for build 2.0.11.92
2011-09-28 22:21 jbcooley
* src/policy.2.0.Npgsql.config: Updated for build 2.0.11.92
2011-09-25 13:48 jbcooley
* testsuite/noninteractive/NUnit20/: App.config,
NpgsqlTests2010.csproj: Added XmlTest entity model
2011-07-11 10:33 fxjr
* src/Npgsql/: NpgsqlConnection.cs, NpgsqlSchema.cs:
Added patch from Patrick Earl. Thanks, Patrick!
http://pgfoundry.org/forum/message.php?msg_id=1014749
This was implemented to support more of the NHibernate test
suite. Here is what it does and does not do:
1. It adds support for the "ForeignKeys" collection that uses
almost the same format that SqlConnection Server does. The only
difference is the deferrable bool columns are actually bools
instead of strings.
2. It fixes the restrictions for index and index column schema
retrieval.
3. It does not change the index column code to provide the
capability of getting the foreign key columns (assuming it
doesn't do it already). I didn't have a failing test depending on
this, so I didn't check or implement anything here.
http://patearl.net/files/Npgsql2.patch
2011-07-05 13:05 fxjr
* src/Npgsql/NpgsqlDataReader.cs,
testsuite/noninteractive/NUnit20/DataReaderTests.cs:
[#1011044]. Fixed missing NpgsqlDataReader.GetTimeSpan() method.
Added unit test case to cover this method.
2011-06-15 13:23 fxjr
* src/Npgsql/: NpgsqlConnection.cs,
NpgsqlConnectionStringBuilder.cs, NpgsqlConnector.cs:
Fixed problem with last update about Password as byte[]. Reverted
type of Password property of NpgsqlConnectionStringBuilder to
String again. It was changed from String to byte[] which was
causing problems with previous client code. There is a new
property called PasswordAsByteArray for those willing to use the
byte[] property. Thanks Dan Shoubridge for heads up.
2011-04-27 10:10 fxjr
* src/Npgsql/: NpgsqlConnection.cs, NpgsqlSchema.cs:
New: [#1011021] Support DbMetaDataCollectionNames.ReservedWords.
Thanks Patrick Earl for patch.
2011-04-24 23:29 fxjr
* src/NpgsqlTypes/NpgsqlTypesHelper.cs,
testsuite/noninteractive/NUnit20/TypesTests.cs:
[ npgsql-Bugs-1011018 ] Invalid Cast with DbType.Time Parameter.
Thanks Patrick Earl for patch. Also added test case to reproduce
the problem.
2011-04-06 23:15 fxjr
* src/Npgsql/: NpgsqlConnectionStringBuilder.cs,
NpgsqlConnector.cs:
[#1010977] Add application_name support to connection string.
Thanks Chris Coleman for patch.
2011-04-06 22:48 fxjr
* src/NpgsqlTypes/NpgsqlDbType.cs,
src/NpgsqlTypes/NpgsqlTypeConverters.cs,
src/NpgsqlTypes/NpgsqlTypes.cs,
src/NpgsqlTypes/NpgsqlTypesHelper.cs,
testsuite/noninteractive/NUnit20/TypesTests.cs:
[#1011008] Add PhysicalAddress (MAC Address) support to Npgsql.
Thanks Gildas for patche and test case.
2011-04-05 11:13 fxjr
* src/NpgsqlTypes/NpgsqlTypeConverters.cs:
[npgsql-Patches-1011012 ] Australian Date and Time Formats.
Thanks Hans Peter for patch.