ChangeLog 19 KB

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