ChangeLog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. 2004-09-30 Francisco Figueiredo Jr. <[email protected]>
  2. * NpgsqlTypes/FastPath.cs,
  3. NpgsqlTypes/FastPathArg.cs,
  4. NpgsqlTypes/LargeObject.cs,
  5. NpgsqlTypes/LargeObjectManager.cs,
  6. Npgsql.dll.sources: Added large object support. Thanks Emiliano Necciari (e dot necciari at blogic dot it) for the patch.
  7. 2004-09-26 Francisco Figueiredo Jr. <[email protected]>
  8. * Npgsql/NpgsqlDataReader.cs:
  9. GetBytes: Added a little fix for proper handling of getbytes with current Npgsql semantics in mind. For while, we just support offset value of 0 as we
  10. read all the bytes field value at a time. So there is no copy when offset is not 0.
  11. 2004-09-25 Francisco Figueiredo Jr. <[email protected]>
  12. * Npgsql/NpgsqlCommand.cs:
  13. GetParseCommandText: Fixed an incorrect patch. Thanks Martin ( martijn at boland dot org) for heads up.
  14. 2004-09-25 Francisco Figueiredo Jr. <[email protected]>
  15. * Npgsql/NpgsqlCommand.cs:
  16. ReplaceParameterValue: Fixed parameter replace when next byte after parameter name is '\\r'. Thanks Ivan Radovanovic rivan at sezampro dot yu for the fix.
  17. GetParseCommandText: Added a workaround to have some queries which are giving parameter type problems. Thanks Martin ( martijn at boland dot org) for bug report.
  18. 2004-09-23 Francisco Figueiredo Jr. <[email protected]>
  19. * NpgsqlTypes/NpgsqlTypesHelper.cs:
  20. ConvertToBackend: Added support for System.Enum types. Now enumerated types can be used correctly as a paramater value. Thanks Martin ( martijn at boland dot org) for the heads up.
  21. 2004-09-18 Francisco Figueiredo Jr. <[email protected]>
  22. * Npgsql/NpgsqlCommand.cs:
  23. GetClearCommandText: Fixed an infinite loop when trying to use a parameter whose name is equals to same type name.
  24. i.e.: parameter name :text which would conflict with :text parameter name which was being added in the replacement string.
  25. * NpgsqlTypes/NpgsqlTypeConverters.cs:
  26. BasicNativeToBackendTypeConverter.ToString: Fixed handling of strings with backslashes. Now they are properly escaped.
  27. 2004-09-18 Francisco Figueiredo Jr. <[email protected]>
  28. * NpgsqlCommand.cs,
  29. NpgsqlConnector.cs: Improved portal and plan name creation to use an unique number from NpgsqlConnector instead of using an static field in NpgsqlCommand. Thanks Martin ( martijn at boland dot org) for the heads up.
  30. 2004-09-15 Francisco Figueiredo Jr. <[email protected]>
  31. * Npgsql/NpgsqlRowDescription.cs:
  32. FieldIndex: Really added support for case insensitive fields index lookup. Thanks Martin ( martijn at boland dot org)
  33. 2004-09-14 Francisco Figueiredo Jr. <[email protected]>
  34. * Npgsql/NpgsqlRowDescription.cs:
  35. FieldIndex: Added support for case insensitive fields index lookup. Thanks Martin ( martijn at boland dot org)
  36. 2004-09-12 Francisco Figueiredo Jr. <[email protected]>
  37. * NpgsqlTypes/NpgsqlTypesHelper:
  38. VerifyDefaultTypesMap: Added DbType.Byte support. Thanks Martin ( martijn at boland dot org)
  39. for heads up.
  40. 2004-09-12 Francisco Figueiredo Jr. <[email protected]>
  41. * NpgsqlTypes/NpgsqlTypesHelper:
  42. ConvertToBackend: Fixed code to handle null values properly when using extended query mode.
  43. Fix bug 955 in gborg.
  44. 2004-09-11 Francisco Figueiredo Jr. <[email protected]>
  45. * Npgsql/NpgsqlConnection.cs:
  46. Dispose: Improved implementation. Also added warning logging for
  47. NpgsqlConnection leakings.
  48. Close: Fixed code to allow calling many times even when being disposed.
  49. * Npgsql/NpgsqlConnection.resx:
  50. Added new warning logging message for NpgsqlConnection leakings.
  51. * Npgsql/NpgsqlConnector.cs:
  52. IsValid: new method to check if Connector is still valid.
  53. * Npgsql/NpgsqlConnectorPool.cs:
  54. GetPooledConnector: Improved to check validity of Connector.
  55. FixPoolCountBecauseOfConnectionDisposeFalse: new method to fix the connection pool count
  56. because NpgsqlConnection leaking. This way, uses doesn't run out of connections from pool.
  57. 2004-09-07 Francisco Figueiredo Jr. <[email protected]>
  58. * NpgsqlException.cs: Added support for deserialization of NpgsqlException.
  59. * NpgsqlState.cs: Added missing handling of NoData message.
  60. 2004-07-02 Raja R Harinath <[email protected]>
  61. * Makefile (OVERRIDE_BARE_TARGETS): Remove.
  62. ($(the_lib)): Make dependency explicit.
  63. 2004-06-28 Raja R Harinath <[email protected]>
  64. * Makefile (%.resources): Use $(RESGEN).
  65. 2004-06-22 Raja R Harinath <[email protected]>
  66. * Makefile: Use $(PLATFORM_PATH_SEPARATOR) in MONO_PATH.
  67. 2004-06-21 Raja R Harinath <[email protected]>
  68. * Makefile (LIBRARY_SNK): Sign with Npgsql/Npgsql.snk.
  69. 2004-06-18 Francisco Figueiredo Jr. <[email protected]>
  70. * Synchronized files with gborg cvs up to release 0.6.
  71. 2004-05-29 Francisco Figueiredo Jr. <[email protected]>
  72. * Npgsql/NpgsqlConnection.cs: Added workaround for redhat server versions.
  73. It returns 7.3.4-RH as its server version. Thanks Jaroslaw Kowalski
  74. ([email protected]) for the patch.
  75. 2004-05-24 Francisco Figueiredo Jr. <[email protected]>
  76. * Npgsql/NpgsqlConnection.cs: Fixed bug when handling Unicode connections.
  77. Fixes Gborg bug 752.
  78. Thanks [email protected] for the patch.
  79. 2004-05-23 Francisco Figueiredo Jr. <[email protected]>
  80. * Npgsql/NpgsqlConnection.cs: Fixed bug which prevented Npgsql to
  81. connect to cvs built servers which had devel in its version string.
  82. 2004-05-22 Francisco Figueiredo Jr. <[email protected]>
  83. Npgsql/NpgsqlCommand.cs,
  84. Npgsql/NpgsqlConnection.cs,
  85. Npgsql/NpgsqlDataReader.cs,
  86. Npgsql/NpgsqlException.cs,
  87. Npgsql/NpgsqlTransaction.cs,
  88. Npgsql/Design/ConnectionStringEditor.cs,
  89. Npgsql/Design/ConnectionStringEditorForm.cs,
  90. Npgsql/Design/NpgsqlParameterConverter.cs,
  91. Npgsql/Design/NpgsqlParametersEditor.cs,
  92. NpgsqlTypes/NpgsqlTypesHelper.cs: Commit log by
  93. Glen Parker ([email protected]): Bug #772 ("Using
  94. Command and Prepare adds single quotes to strings twice")
  95. is fixed :-) It was broken when running on the version 3
  96. protocol (extended query support) on PostgreSQL 7.4.
  97. Some of the files in Design were formatted with macintosh line
  98. terminators. This was screwing up the xmldoc generator in csc,
  99. so I reformatted to make it work.
  100. I've added some essential xmldoc comments (<summary> tags). Much work
  101. remains here, but I wanted to get a few in on common functions and
  102. properties.
  103. The .build file will now generate the Npgsql.xml file, next to the .dll
  104. file. I removed the existing Npgsql.xml from CVS.
  105. Thanks Glen Parker for this patch.
  106. 2004-05-20 Francisco Figueiredo Jr. <[email protected]>
  107. NpgsqlAsciiRow.cs,
  108. NpgsqlBackEndKeyData.cs,
  109. NpgsqlBinaryRow.cs,
  110. NpgsqlCommand.cs,
  111. NpgsqlConnectedState.cs,
  112. NpgsqlConnection.cs,
  113. NpgsqlConnection.resx,
  114. NpgsqlConnector.cs,
  115. NpgsqlConnectorPool.cs,
  116. NpgsqlError.cs,
  117. NpgsqlMediator.cs,
  118. NpgsqlMessageTypes.cs,
  119. NpgsqlPasswordPacket.cs,
  120. NpgsqlQuery.cs,
  121. NpgsqlRowDescription.cs,
  122. NpgsqlStartupPacket.cs,
  123. NpgsqlState.cs,
  124. PGUtil.cs,
  125. NpgsqlTypes/NpgsqlTypesHelper.cs : - store protocol version as an enum, keep numbers as protocol specific
  126. - split more protocol handlers between version 2 and version 3
  127. - split MessageTypes class on ver2/ver3 and add remaining types for ver3 - removed handlers for deprecated protocol message types
  128. - store BackendKeyData in its own member on Mediator
  129. - Store ParameterStatus objects in a key map on Mediator
  130. - Get backend version now from the Mediator if possible
  131. - Rewrite parsers for server version and connection string
  132. - Store server version numericially (in a new class ServerVersion)
  133. - As usual, lots of code cleanup/commenting/etc.
  134. Thanks very much Glen Parker ([email protected]) for this patch.
  135. 2004-05-20 Raja R Harinath <[email protected]>
  136. * Makefile (%.resources): Use INTERNAL_RESGEN.
  137. 2004-05-13 Francisco Figueiredo Jr. <[email protected]>
  138. * Npgsql/NpgsqlHashAlgorithm.cs: Changed exception type from Exception t
  139. o InvalidOperationException when calling the Hash property and hash value is nul
  140. l. Thanks Gonzalo Paniagua Javier <[email protected]> for catching that.
  141. 2004-05-09 Francisco Figueiredo Jr. <[email protected]>
  142. * HashAlgorithm.cs,
  143. NpgsqlAsciiRow.cs,
  144. NpgsqlBinaryRow.cs,
  145. NpgsqlClosedState.cs,
  146. NpgsqlCommand.cs,
  147. NpgsqlCommandBuilder.cs,
  148. NpgsqlConnection.cs,
  149. NpgsqlDataReader.cs,
  150. NpgsqlException.cs,
  151. NpgsqlParameterCollection.cs,
  152. NpgsqlReadyState.cs,
  153. NpgsqlTransaction.cs: Improved exception handling. Now Npgsql throws mor
  154. e meaningful exceptions instead of throw NpgsqlException which are now exclusive
  155. ly to sign server errors. Thanks Glen Parker ([email protected]) for the patch.
  156. 2004-05-05 Gonzalo Paniagua Javier <[email protected]>
  157. * Makefile:
  158. * Npgsql.dll.resources: all the resources command line options are now
  159. in a separate response file.
  160. 2004-05-04 Jaroslaw Kowalski <[email protected]>
  161. * Npgsql/NpgsqlDataReader.cs: Fixed RecordsAffected to properly return -1 after "create table" and similar commands.
  162. 2004-05-01 Francisco Figueiredo Jr. <[email protected]>
  163. * Npgsql/NpgsqlCommand.cs,
  164. Npgsql/NpgsqlConnection.cs,
  165. Npgsql/NpgsqlConnector.cs,
  166. Npgsql/NpgsqlConnectorPool.cs,
  167. Npgsql/NpgsqlError.cs,
  168. Npgsql/NpgsqlException.cs,
  169. Npgsql/NpgsqlParameterCollection.cs,
  170. NpgsqlTypes/NpgsqlTypesHelper.cs: Improved exception support. Now NpgsqlException as well as NpgsqlError provide much more information. Thanks Glen Parker ([email protected]) for the patch.
  171. 2004-04-30 Todd Berman <[email protected]>
  172. * Npgsql/AssemblyInfo.cs: use the proper path to the .pub file
  173. 2004-04-30 Duncan Mak <[email protected]>
  174. * Npgsql/AssemblyInfo.cs: Enable delay signing, using Npgsql.pub.
  175. * Npgsql/Npgsql.pub: Added to CVS.
  176. 2004-04-21 Francisco Figueiredo Jr. <[email protected]>
  177. * Npgsql/NpgsqlDataAdapter.cs: Changed RowUpdated and RowUpdating prefix to Npgsql.
  178. * Npgsql/NpgsqlClosedState.cs: Removed dependency in TlsException. Carlos Guzman will change this excpetion to internal.
  179. * Npgsql/NpgsqlCommand.cs
  180. * Npgsql/NpgsqlCommand.resx
  181. * Npgsql/NpgsqlConnection.cs
  182. * Npgsql/NpgsqlConnection.resx
  183. * Npgsql/NpgsqlDataAdapter.cs
  184. * Npgsql/NpgsqlError.cs
  185. * Npgsql/NpgsqlException.cs
  186. * Npgsql/NpgsqlException.resx
  187. * Npgsql/NpgsqlMediator.cs
  188. * Npgsql/NpgsqlState.cs
  189. * Npgsql/NpgsqlState.resx
  190. * Npgsql/PGUtil.cs : Added initial error handling code improvements. Thanks Glen Parker ([email protected]) for the patch. NpgsqlException now gives aceess to error collection through the Errors property. This property return a collection of NpgsqlErrors objects. Also it gives access to error message, hint, severity and code. This fixes the feature request 689 in gborg.
  191. 2004-04-09 Francisco Figueiredo Jr. <[email protected]>
  192. * Npgsql/NpgsqlDataAdapter.cs: Fixed DataAdapter to raise the RowUpdating and RowUpdated events. This also fixes some issues in gborg 710 bug. This modification may have broken CommandBuilder support. Working on that.
  193. 2004-03-28 Francisco Figueiredo Jr. <[email protected]>
  194. * Npgsql/NpgsqlTransaction.cs: Fixed a bug where rollback was being called when disposing NpgsqlTransaction objects even when transaction was sucessfully commited. Fixes bug 725 in gborg. Thanks melkor ([email protected]) for spotting that.
  195. 2004-03-28 Francisco Figueiredo Jr. <[email protected]>
  196. * Npgsql/NpgsqlConnection.cs: Implemented IClonable interface in NpgsqlConnection class. Thanks Juliano Barbosa for pointing it out.
  197. 2004-03-22 Francisco Figueiredo Jr. <[email protected]>
  198. * Npgsql/NpgsqlAsciiRow.cs
  199. * Npgsql/NpgsqlBinaryRow.cs
  200. * Npgsql/NpgsqlDataReader.cs: Fixed NpgsqlDataReader.IsDBNull(). It wasn't working for postgresql 7.4+. Thanks Glen Parker ([email protected]) for the patch.
  201. 2004-03-13 Francisco Figueiredo Jr. <[email protected]>
  202. * Npgsql/NpgsqlConnection.cs:
  203. * Npgsql/NpgsqlClosedState.cs: Added support for SSL callbacks points. Now, client applications can provide the callbacks. Npgsql provide a default callback implementation which always assumes the certificate is ok. This allows easy use as client don't need to provide callback to use ssl connections. This also fixes bug 705 in gborg.
  204. * NpgsqlTypes/NpgsqlTypesHelper: Applied patch to correctly parse datetimes values with timezone information. Thanks Glen Parker <[email protected]> for the patch.
  205. 2004-03-06 Francisco Figueiredo Jr. <[email protected]>
  206. * Npgsql/NpgsqlConnectorPool.cs: Fixed bug 706 in gborg. Now Max timeout will be working correctly. Thanks Sami Kuhmonen <[email protected]> for the patch.
  207. 2004-02-29 Francisco Figueiredo Jr. <[email protected]>
  208. * Npgsql/NpgsqlConnection.cs: Better handling of connection encoding. Added support for encoding and connection timeout in connection string.
  209. * Npgsql/NpgsqlConnectorPool.cs: Added support for timeout and max connection pool.
  210. 2004-02-28 Francisco Figueiredo Jr. <[email protected]>
  211. * Npgsql/NpgsqlConnector.cs: Added support for connection encoding.
  212. * Npgsql/NpgsqlConnection.cs: Better handling of connection encoding.
  213. * Npgsql/NpgsqlCommand.cs: Fixed an Invalid Index error when executing ExecuteScalar() method with an empty resultset. Thanks Lynn A. Roth for the fix. This fixes bug 687 in gborg.
  214. 2004-02-25 Francisco Figueiredo Jr. <[email protected]>
  215. * Npgsql/NpgsqlDataReader.cs: Fixed a OutOfBoundsException when trying to access an element after have read all elements. Now it throws an InvalidOperationException.
  216. * Npgsql/NpgsqlConnection.cs: Fixed Unicode handling. This also fixes bug 695 in gborg. Thanks Sami Kuhmonen <[email protected]> for the patch.
  217. 2004-02-16 Francisco Figueiredo Jr. <[email protected]>
  218. * Npgsql/NpgsqlDataReader.cs: Removed a log line which reduced the conne
  219. ction startup time in 300 milliseconds.
  220. 2004-02-16 Francisco Figueiredo Jr. <[email protected]>
  221. * NpgsqlConnection.cs: Added support for Unicode encoding. Fixes feature
  222. request 534 on gborg. Thanks Ivar <[email protected]> for pointing it out.
  223. 2004-02-16 Francisco Figueiredo Jr. <[email protected]>
  224. * Npgsql/NpgsqlStartupPacket.cs: Added code to set datestyle to iso when
  225. connecting using protocol 3.0 version. Thanks Sami Kuhmonen <[email protected]> for pointing it out.
  226. 2004-02-14 Francisco Figueiredo Jr. <[email protected]>
  227. * Npgsql/NpgsqlCommand.cs: Fixed a bug when handling queries which return no data. Thanks Morten Mertner <[email protected]> for the fix.
  228. 2004-02-10 Francisco Figueiredo Jr. <[email protected]>
  229. * NpgsqlTypes/NpgsqlTypesHelper.cs: Added support for datetime and time datatypes with timezone data. Thanks Sami Kuhmonen ([email protected]).
  230. 2004-01-15 Jackson Harper <[email protected]>
  231. * NpgslTypes/NpgsqlTypesHelper.cs: Add StringFixedLength type.
  232. 2003-11-23 Pedro Mart�ez Juli� <[email protected]>
  233. * Npgsql/HashAlgorithm.cs:
  234. * Npgsql/NpgsqlClosedState.cs:
  235. * Npgsql/NpgsqlCommand.cs:
  236. * Npgsql/NpgsqlConnectedState.cs:
  237. * Npgsql/NpgsqlConnection.cs:
  238. * Npgsql/NpgsqlReadyState.cs:
  239. * Npgsql/NpgsqlStartupState.cs:
  240. * Npgsql/NpgsqlState.cs: Apply Disposable pattern, when using
  241. ADO.NET we need to call Dispose after using any Component like
  242. NpgsqlDataAdapter, NpgsqlConnection, etc... Change a few internal
  243. methods to Properties.
  244. 2003-11-22 Pedro Mart�ez Juli� <[email protected]>
  245. * Npgsql/NpgsqlClosedState.cs:
  246. * Npgsql/NpgsqlConnectedState.cs:
  247. * Npgsql/NpgsqlConnection.cs:
  248. * Npgsql/NpgsqlReadyState.cs:
  249. * Npgsql/NpgsqlState.cs: Changes related to the last update of SSL
  250. implementation. Now we're using TcpClient for the connection and
  251. Stream for the abstraction layer to SslClientStream.
  252. 2003-11-11 Pedro Mart�ez Juli� <[email protected]>
  253. * Npgsql/NpgsqlDataReader.cs: GetSchemaTable has nothing to do with
  254. CanRead because the schema can be readed with or without result
  255. rows.
  256. 2003-11-10 Pedro Mart�ez Juli� <[email protected]>
  257. * Npgsql/NpgsqlDataAdapter.cs: Best use "if" instead of try-catch.
  258. 2003-11-10 Pedro Mart�ez Juli� <[email protected]>
  259. * Npgsql/NpgsqlDataAdapter.cs: Catch the exception thrown by MS.NET
  260. when a mapping is not in the collection.
  261. 2003-11-09 Pedro Mart�ez Juli� <[email protected]>
  262. * Npgsql/NpgsqlDataAdapter.cs: Do not assing the result of the
  263. CommandBuilder to the local data. Local data should be null if the
  264. client doesn't set them.
  265. * Npgsql/NpgsqlCommandBuilder.cs: Mistake in param name fixed.
  266. 2003-11-09 Pedro Mart�ez Juli� <[email protected]>
  267. * Makefile: Little fix for build the resources.
  268. * Npgsql/NpgsqlCommandBuilder.cs: Added row version in delete
  269. command.
  270. 2003-11-08 Pedro Mart�ez Juli� <[email protected]>
  271. * Npgsql/NpgsqlCommand.cs: Removed try-catch for Resource Manager
  272. calls, the problem is fixed.
  273. * Makefile: Fix one bug in the build of resources.
  274. 2003-11-08 Pedro Mart�ez Juli� <[email protected]>
  275. * Npgsql/NpgsqlCommandBuilder.cs: Added the command builder.
  276. * Npgsql/NpgsqlDataAdapter.cs: Added the CommandBuilder stuff. When
  277. OnRowUpdating is called we create the command necesary for updating,
  278. inserting or deleting any row of the DataTable/DataSet.
  279. * Npgsql/NpgsqlCommand.cs: Temporary try-catch. ResMan still doesn't
  280. work. This must be removed when ResMan works.
  281. * Npgsql/NpgsqlParameter: No more than one call to value.GetType()
  282. is more efficient for the deep if structure types.
  283. 2003-11-07 Pedro Mart�ez Juli� <[email protected]>
  284. * Npgsql/NpgsqlDataAdapter.cs: Fixed the mistake I did in the last
  285. change. The Command objects must not be created in the constructor.
  286. The Commands should be in the overrided method "OnRowUpdating".
  287. * Npgsql/NpgsqlCommand.cs: Added two try-catch instructions to get
  288. the proper exception (not MissingManifestResourceException). It is
  289. thrown in MS.NET and in MONO. (Npgsql compiled with MCS).
  290. 2003-11-07 Pedro Mart�ez Juli� <[email protected]>
  291. * Npgsql/NpgsqlDataAdapter.cs: Create new Command classes for the
  292. different Insrt / Update / Delete commands.
  293. 2003-10-20 Pedro Mart�ez Juli� <[email protected]>
  294. * Npgsql/NpgsqlClosedState.cs:
  295. * Npgsql/NpgsqlConnection.cs:
  296. * Npgsql/NpgsqlConnectedState.cs:
  297. * Npgsql/NpgsqlReadyState.cs:
  298. * Npgsql/NpgsqlState.cs: Changed the namespace for Tls, now the
  299. namespace is Mono.System.Protocol.Tls, before was
  300. System.Security.Tls.
  301. * Npgsql/Makefile: Change reference from System.Security.Tls to
  302. Mono.Security (now Tls lives there).
  303. 2003-10-16 Pedro Mart�ez Juli� <[email protected]>
  304. * Npgsql/NpgsqlClosedState.cs:
  305. * Npgsql/NpgsqlConnectedState.cs:
  306. * Npgsql/NpgsqlConnection.cs: Changed TcpClient by TlsSession
  307. because now it is used TlsSession and it doesn't work without
  308. these changes.
  309. 2003-10-16 Pedro Mart�ez Juli� <[email protected]>
  310. * Makefile: changed reference from Lib/System.Security.Tls.dll to
  311. System.Security.Tls because the last will be installed before and
  312. separatelly.
  313. * Lib: Removed Lib directory, moved System.Security.Tls.dll to
  314. Mono.Security.Tls library directory.
  315. 2003-10-15 Pedro Mart�ez Juli� <[email protected]>
  316. * Makefile: fix building and the install objectives.
  317. 2003-04-26 Pedro Mart�ez Juli� <[email protected]>
  318. * Npgsql/NpgsqlDataReader.cs: Change GetFloat and GetDouble. Now
  319. they works as direct casting from GetValue.
  320. 2003-07-18 Peter Williams <[email protected]>
  321. * Npgsql/AssemblyInfo.cs: Don't strongname the assembly, because
  322. we can't unless corlib is strongnamed too. Not a wonderful solution,
  323. but I don't think this ever worked anyway.
  324. 2003-05-25 Francisco Figueiredo Jr. <[email protected]>
  325. * Npgsql/NpgsqlDataReader.cs: Fixed an invalid index exception when
  326. processing 0 rows queries.
  327. 2003-04-26 Pedro Mart�ez Juli� <[email protected]>
  328. * Npgsql/NpgsqlDataReader.cs: Now GetDateTime works for "dd/MM/yyyy"
  329. date formats. I think that it's needed support to auto-detect
  330. DateTime format through PgSql server configuration.
  331. 2003-01-28 Daniel Morgan <[email protected]>
  332. * Npgsql.build: got it to work for Windows build
  333. * Npgsql/Npgsql.build
  334. * Npgsql/Npgsql.cmbx
  335. * Npgsql/Npgsql.prjx: removed files not needed
  336. 2003-01-28 Daniel Morgan <[email protected]>
  337. * added the Npgsql (Npgsql is a .Net Data Provider for PostgreSQL)
  338. from http://gborg.postgresql.org/project/npgsql/projdisplay.php
  339. by adding the following files and directories to the mcs module
  340. in mono-cvs.ximian.com at mcs/class:
  341. Npgsql (directory)
  342. ChangeLog
  343. Makefile
  344. Npgsql.build
  345. RELEASENOTES.txt
  346. TODO.txt
  347. makefile.gnu
  348. LICENSE.txt
  349. README.txt
  350. STATUS.txt
  351. list
  352. Npgsql/Npgsql (directory)
  353. Npgsql/AssemblyInfo.cs
  354. Npgsql/NpgsqlAsciiRow.cs
  355. Npgsql/NpgsqlBackEndKeyData.cs
  356. Npgsql/NpgsqlClosedState.cs
  357. Npgsql/NpgsqlCommand.cs
  358. Npgsql/NpgsqlConnectedState.cs
  359. Npgsql/NpgsqlConnection.cs
  360. Npgsql/NpgsqlConnector.cs
  361. Npgsql/NpgsqlConnectorPool.cs
  362. Npgsql/NpgsqlDataAdapter.cs
  363. Npgsql/NpgsqlDataReader.cs
  364. Npgsql/NpgsqlEventLog.cs
  365. Npgsql/NpgsqlException.cs
  366. Npgsql/NpgsqlMediator.cs
  367. Npgsql/NpgsqlMessageTypes.cs
  368. Npgsql/NpgsqlParameter.cs
  369. Npgsql/NpgsqlParameterCollection.cs
  370. Npgsql/NpgsqlPasswordPacket.cs
  371. Npgsql/NpgsqlQuery.cs
  372. Npgsql/NpgsqlReadyState.cs
  373. Npgsql/NpgsqlResultSet.cs
  374. Npgsql/NpgsqlRowDescription.cs
  375. Npgsql/NpgsqlStartupPacket.cs
  376. Npgsql/NpgsqlStartupState.cs
  377. Npgsql/NpgsqlState.cs
  378. Npgsql/NpgsqlTransaction.cs
  379. Npgsql/PGUtil.cs