ChangeLog 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307
  1. 2002-11-09 Tim Coleman <[email protected]>
  2. * list:
  3. Add new internal tds classes
  4. * System.Data.Common/DbDataAdapter.cs:
  5. * System.Data.SqlClient/SqlDataAdapter.cs:
  6. Change event calling system
  7. * System.Data.SqlClient/SqlClientPermission.cs:
  8. * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
  9. * System.Data.SqlClient/SqlDataReader.cs:
  10. Add comments
  11. * System.Data.SqlClient/SqlCommand.cs:
  12. Some changes to make consistent with .NET based on Sql server traces
  13. Implement command timeout
  14. * System.Data.SqlClient/SqlCommandBuilder.cs:
  15. Make sure that we only build a command if key info found
  16. * System.Data.SqlClient/SqlConnection.cs:
  17. Change event calling system
  18. Some changes to make consistent with .NET based on Sql server traces
  19. Implement connection timeout
  20. * System.Data.SqlClient/SqlConnectionPool.cs:
  21. Implement connection timeout
  22. * System.Data.SqlClient/SqlError.cs:
  23. Implement ToString ()
  24. * System.Data.SqlClient/SqlException.cs:
  25. Mucho implementation and cleanup
  26. * System.Data.SqlClient/SqlParameter.cs:
  27. Implement Clone ()
  28. * System.Data.SqlClient/SqlParameterCollection.cs:
  29. Code cleanup
  30. * System.Data.SqlClient/SqlTransaction.cs:
  31. Move some of the transaction creation to SqlConnection to be consistent
  32. with .NET SQL traces
  33. 2002-11-08 Tim Coleman <[email protected]>
  34. * System.Data/DataRow.cs:
  35. * System.Data/DataTable.cs:
  36. Some fix-ups related to the DbDataAdapter to make it work.
  37. * System.Data.Common/DbDataAdapter.cs:
  38. Fix the Fill () and Update () methods. These now work
  39. fairly well. Need mucho testing.
  40. * System.Data.SqlClient/SqlCommandBuilder.cs:
  41. Support table mappings and parameter source versions now.
  42. * System.Data.SqlClient/SqlConnection.cs:
  43. * System.Data.SqlClient/SqlTransaction.cs:
  44. Add set accessor for transaction so that SqlTransaction.Commit ()
  45. will remove itself from the connection.
  46. * System.Data.SqlClient/SqlDataAdapter.cs:
  47. Update/Insert/Delete command should be null by default.
  48. * System.Data.SqlClient/SqlException.cs:
  49. Remove a TODO attribute
  50. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  51. Properly handle the SqlCommand object
  52. 2002-11-08 Ville Palo <[email protected]>
  53. * System.Data.SqlTypes/SqlDateTime.cs: Now the all methods are
  54. implemented.
  55. 2002-11-08 Gonzalo Paniagua Javier <[email protected]>
  56. * System.Data.SqlTypes/SqlDecimal.cs: fixed build. Someone should check
  57. my comments and do something more appropiate.
  58. 2002-11-07 Ville Palo <[email protected]>
  59. * System.Data.SqlTypes/SqlBinary.cs:
  60. * System.Data.SqlTypes/SqlBoolean.cs:
  61. * System.Data.SqlTypes/SqlByte.cs:
  62. * System.Data.SqlTypes/SqlDateTime.cs:
  63. * System.Data.SqlTypes/SqlDecimal.cs:
  64. * System.Data.SqlTypes/SqlDouble.cs:
  65. * System.Data.SqlTypes/SqlDecimal.cs:
  66. * System.Data.SqlTypes/SqlGuid.cs:
  67. * System.Data.SqlTypes/SqlInt16.cs:
  68. * System.Data.SqlTypes/SqlInt32.cs:
  69. * System.Data.SqlTypes/SqlInt64.cs:
  70. * System.Data.SqlTypes/SqlMoney.cs:
  71. * System.Data.SqlTypes/SqlSingle.cs:
  72. * System.Data.SqlTypes/SqlString.cs: Implemented more methods and
  73. fixed some. SqlBoolean Equals (object value) -method improvements to
  74. all classes.
  75. 2002-11-07 Tim Coleman <[email protected]>
  76. * System.Data.Common/DbDataAdapter.cs:
  77. Remove NotImplementedException in Dispose
  78. * System.Data.Common/FieldNameLookup.cs:
  79. Should be sealed
  80. * System.Data.SqlClient/SqlCommand.cs:
  81. Fix CommandText accessor (stack overflow)
  82. Implement DeriveParameters method
  83. * System.Data.SqlClient/SqlCommandBuilder.cs:
  84. Implement this class
  85. * System.Data.SqlClient/SqlConnection.cs:
  86. Change application name to "Mono SqlClient Data Provider"
  87. * System.Data.SqlClient/SqlDataReader.cs:
  88. Add new schema information
  89. * System.Data.SqlClient/SqlError.cs:
  90. * System.Data.SqlClient/SqlErrorCollection.cs:
  91. Remove internal methods, TODO attributes
  92. * System.Data.SqlClient/SqlParameter.cs:
  93. Add new internal constructor for DeriveParameters use
  94. * System.Data.SqlClient/SqlParameterConverter.cs:
  95. Add missing methods based on class status
  96. 2002-11-07 Nick Drochak <[email protected]>
  97. * list: add System.Data/ColumnDataPropertyDescriptor.cs
  98. 2002-11-04 Tim Coleman <[email protected]>
  99. * list:
  100. Add Mono.Data.TdsClient.Internal.TdsInternalError
  101. Add Mono.Data.TdsClient.Internal.TdsInternalErrorCollection
  102. Add Mono.Data.TdsClient.Internal.TdsInternalErrorMessageEventHandler
  103. Add Mono.Data.TdsClient.Internal.TdsInternalErrorMessageEventArgs
  104. Add Mono.Data.TdsClient.Internal.TdsInternalInfoMessageEventHandler
  105. Add Mono.Data.TdsClient.Internal.TdsInternalInfoMessageEventArgs
  106. Remove Mono.Data.TdsClient.Internal.TdsPacketErrorResult
  107. Remove Mono.Data.TdsClient.Internal.TdsPacketErrorResultCollection
  108. Remove Mono.Data.TdsClient.Internal.TdsPacketMessageResult
  109. * System.Data.Common/RowUpdatedEventArgs.cs:
  110. * System.Data.Common/RowUpdatingEventArgs.cs:
  111. Implement
  112. * System.Data.SqlClient/SqlCommand.cs:
  113. * System.Data.SqlClient/SqlDataReader.cs:
  114. Remove checks for errors. These are now handled by events
  115. * System.Data.SqlClient/SqlConnection.cs:
  116. * System.Data.SqlClient/SqlError.cs:
  117. * System.Data.SqlClient/SqlException.cs:
  118. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  119. Add event handlers and triggers for errors, messages, state change
  120. * System.Data.SqlClient/SqlParameter.cs:
  121. Re-add refreshproperties
  122. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  123. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs:
  124. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  125. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs:
  126. Implement
  127. 2002-11-04 Tim Coleman <[email protected]>
  128. * list:
  129. Add Mono.Data.TdsClient.Internal.TdsBigDecimal
  130. Add System.Data.SqlClient.SqlParameterConverter
  131. Add System.Data.DataSysDescriptionAttribute
  132. * System.Data/DataSysDescriptionAttribute.cs:
  133. New class added
  134. * System.Data.Common/DbDataPermission.cs:
  135. Add CreateInstance method
  136. * System.Data.SqlClient/SqlClientPermission.cs:
  137. * System.Data.SqlClient/SqlError.cs:
  138. Add Serializable attribute
  139. * System.Data.SqlClient/SqlCommand.cs:
  140. * System.Data.SqlClient/SqlConnection.cs:
  141. * System.Data.SqlClient/SqlDataAdapter.cs:
  142. * System.Data.SqlClient/SqlParameter.cs:
  143. Add some missing property attributes
  144. * System.Data.SqlClient/SqlCommandBuilder.cs:
  145. Add some missing property attributes
  146. Implement properties
  147. * System.Data.SqlClient/SqlDataReader.cs:
  148. Implement missing methods
  149. * System.Data.SqlClient/SqlErrorCollection.cs:
  150. Implement the properties
  151. * System.Data.SqlClient/SqlException.cs:
  152. Remove extra property accessors
  153. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  154. Add internal constructor
  155. * System.Data.SqlClient/SqlParameterCollection.cs:
  156. Add internal constructor
  157. Add property attributes
  158. * System.Data.SqlClient/SqlParameterConverter.cs:
  159. New internal class added
  160. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  161. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  162. Remove destructor
  163. * System.Data.SqlTypes/SqlDecimal.cs:
  164. Add implicit conversion from TdsBigDecimal to SqlDecimal
  165. * System.Data.SqlTypes/SqlString.cs:
  166. * System.Data.SqlTypes/SqlInt16.cs:
  167. * System.Data.SqlTypes/SqlDateTime.cs:
  168. Change code to remove compiler warnings
  169. 2002-11-04 Stuart Caborn <[email protected]>
  170. * list: added System.Data/XmlConstants.cs to
  171. Linux build
  172. * System.Data/XmlConstants.cs: added -
  173. * System.Data/DataTable.cs
  174. * System.Data/DataSet.cs
  175. * System.Data/DataColumn.cs
  176. * System.Data/DataColumnCollection.cs
  177. * System.Data/DataRelation.cs: modified -
  178. Began initial implementation of WriteXml
  179. and WriteXmlSchema. There is no support for DiffGrams
  180. yet. In WriteSchema mode, relationships are missing,
  181. all types are xs:string and the namespacing is not
  182. working properly. Added support for Ordinals in the
  183. DataColumnCollection and added support for
  184. namespaces and prefixes.
  185. 2002-11-03 Ville Palo <[email protected]>
  186. * System.Data.SqlTypes/SqlBinary.cs: Finished and no errors generated
  187. by NUnitConsole_mono.exe
  188. 2002-11-03 Tim Coleman ([email protected])
  189. * System.Data.SqlClient/SqlCommand.cs:
  190. Use SET NO_BROWSETABLE ON when CommandBehavior is KeyInfo
  191. * System.Data.SqlClient/SqlDataReader.cs:
  192. Get more schema info if available
  193. * list:
  194. Add Mono.Data.TdsClient.Internal.TdsColumnStatus
  195. 2002-11-02 Tim Coleman ([email protected])
  196. * System.Data.SqlClient/SqlCommand.cs:
  197. Change to use sp_executesql to run regular text queries.
  198. Now, sp_executesql for text, sp_execute for prepared,
  199. and execute for SPs means everything runs a procedure.
  200. * System.Data.SqlClient/SqlParameter.cs:
  201. Allow client to set parameter name in Prepare ()
  202. * System.Data.SqlClient/SqlParameterCollection.cs:
  203. Implement some methods
  204. * System.Data.SqlClient/SqlDataReader.cs:
  205. Since everything is an SP now, we know that when
  206. we see DoneProc, that we are really done.
  207. 2002-11-01 Tim Coleman ([email protected]) :
  208. * System.Data.Common/DbEnumerator.cs :
  209. Throw correct exception on Reset ()
  210. Add ColumnSize to schema table.
  211. * System.Data.SqlClient/SqlDataReader.cs :
  212. Add ColumnSize to schema table.
  213. * System.Data.SqlClient/SqlCommand.cs :
  214. Change the way that preparing is handled.
  215. Now uses sp_prepare on the server instead of temp
  216. stored procedures because it's the Right Thing[tm] to do.
  217. * System.Data.SqlClient/SqlConnection.cs :
  218. Store data readers here rather than in command
  219. * System.Data.SqlClient/SqlDataReader.cs :
  220. More implementation, including binary types
  221. * System.Data.SqlClient/SqlParameter.cs :
  222. Lowercase type name
  223. 2002-10-31 Tim Coleman ([email protected])
  224. * System.Data.Common/DbDataAdapter.cs :
  225. Fix handling of nulls
  226. * System.Data.Common/DbDataRecord.cs :
  227. Change GetFieldType ()
  228. * System.Data.Common/DbEnumerator.cs :
  229. Add new schema information
  230. * System.Data.Common/FieldNameLookup.cs :
  231. Change definition of schema
  232. * System.Data.Common/SchemaInfo.cs :
  233. Add more information
  234. * System.Data.SqlClient/SqlDataReader.cs :
  235. get more schema table data
  236. * list :
  237. Add Mono.Data.TdsClient.Internal.TdsSchemaInfo
  238. 2002-10-31 Ville Palo <[email protected]>
  239. * SqlBinary.cs:
  240. * SqlBoolean.cs:
  241. * SqlByte.cs:
  242. * SqlDecimal.cs:
  243. * SqlDouble.cs:
  244. * SqlInt16.cs:
  245. * SqlInt64.cs:
  246. * SqlString.cs: Some bugfixes and some TODOs but so much
  247. work to do.
  248. 2002-10-30 Tim Coleman ([email protected])
  249. * System.Data.Common/FieldNameLookup.cs:
  250. * System.Data.Common/SchemaInfo.cs:
  251. * System.Data.SqlClient/SqlXmlTextReader.cs:
  252. New classes added
  253. * list :
  254. Class list changed in build
  255. * System.Data.SqlClient/SqlCommand.cs:
  256. Added support for command behaviors
  257. Refactored a bunch of code
  258. Implement ExecuteScalar
  259. Implement ExecuteXmlReader
  260. * System.Data.SqlClient/SqlConnection.cs:
  261. Moved CheckForErrors here
  262. * System.Data.SqlClient/SqlDataAdapter.cs:
  263. Code reformatting
  264. * System.Data.SqlClient/SqlDataReader.cs:
  265. Implement GetEnumerator
  266. Fix NextResult, Read
  267. Add SqlDataReaderEnumerator private class
  268. * System.Data.SqlClient/SqlParameter.cs:
  269. Move some of the Prepare code from SqlCommand to here
  270. * System.Data.SqlClient/SqlTransaction.cs:
  271. Move error checking to SqlConnection
  272. 2002-10-29 Tim Coleman ([email protected])
  273. * System.Data.SqlClient/SqlCommand.cs:
  274. Added code to handle parameters for queries
  275. * System.Data.SqlClient/SqlConnection.cs:
  276. Properly handle resetting SqlConnections
  277. * System.Data.SqlClient/SqlDataReader.cs:
  278. Properly handle the case where no results are returned
  279. * System.Data.SqlClient/SqlParameter.cs:
  280. Default direction to Input
  281. * System.Data.SqlClient/SqlParameterCollection.cs:
  282. Implement GetEnumerator
  283. 2002-10-29 Rodrigo Moya <[email protected]>
  284. * makefile.gnu: added Test directory.
  285. 2002-10-29 Ville Palo <[email protected]>
  286. * System.Data.SqlTypes/SqlGuid.cs: Fixed some bugs and finished
  287. couple of MonoTODOs.
  288. 2002-10-28 Tim Coleman ([email protected])
  289. * System.Data.SqlClient/SqlCommand.cs:
  290. Add some error handling
  291. * System.Data.SqlClient/SqlDataReader.cs:
  292. Add some error handling
  293. Add precision/scale to schema table
  294. * System.Data.SqlClient/SqlException.cs:
  295. Generate a SqlException from TDS error
  296. collection
  297. * System.Data.SqlClient/SqlTransaction.cs:
  298. Add some error handling
  299. 2002-10-28 Ville Palo <[email protected]>
  300. * System.Data.SqlTypes/SqlBinary.cs:
  301. * System.Data.SqlTypes/SqlBoolean.cs:
  302. * System.Data.SqlTypes/SqlByte.cs:
  303. * System.Data.SqlTypes/SqlDateTime.cs:
  304. * System.Data.SqlTypes/SqlDecimal.cs:
  305. * System.Data.SqlTypes/SqlDouble.cs:
  306. * System.Data.SqlTypes/SqlDecimal.cs:
  307. * System.Data.SqlTypes/SqlDouble.cs:
  308. * System.Data.SqlTypes/SqlGuid.cs:
  309. * System.Data.SqlTypes/SqlInt16.cs:
  310. * System.Data.SqlTypes/SqlInt32.cs:
  311. * System.Data.SqlTypes/SqlInt64.cs:
  312. * System.Data.SqlTypes/Money.cs:
  313. * System.Data.SqlTypes/SqlSingle.cs:
  314. * System.Data.SqlTypes/SqlString.cs:
  315. * System.Data.SqlTypes/SqlSingle.cs: Fixed internal loop bugs and
  316. some other minor fixes.
  317. 2002-10-27 Rodrigo Moya <[email protected]>
  318. * System.Data.OleDb/OleDbDataAdapter.cs (Fill, FillSchema,
  319. GetFillParameters, Update): added overloaded methods.
  320. * System.Data.OleDb/OleDbCommand.cs:
  321. * System.Data.OleDb/OleDbDataReader.cs:
  322. * System.Data.OleDb/OleDbConnection.cs: removed limitation of one
  323. data adapter at a time. Mono's version can open as many as you want,
  324. for free.
  325. 2002-10-25 Tim Coleman ([email protected])
  326. * System.Data.SqlClient/SqlConnectionPool.cs:
  327. New class added
  328. * System.Data.SqlClient/SqlClientPermission.cs:
  329. * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
  330. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  331. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs:
  332. * System.Data.SqlClient/SqlParameter.cs:
  333. * System.Data.SqlClient/SqlParameterCollection.cs:
  334. Code reformatting
  335. * System.Data.SqlClient/SqlCommand.cs:
  336. * System.Data.SqlClient/SqlConnection.cs:
  337. * System.Data.SqlClient/SqlException.cs:
  338. * System.Data.SqlClient/SqlTransaction.cs:
  339. New code based on work in TDS Client
  340. * list:
  341. New files added for SqlClient, and TdsClient.Internal
  342. * System.Data.build:
  343. Added reference to System.EnterpriseServices.dll
  344. Still leave SqlClient out of build until danmorg
  345. can fix.
  346. 2002-10-23 Ville Palo <[email protected]>
  347. * System.Data.SqlTypes/SqlDouble.cs:
  348. * System.Data.SqlTypes/SqlSingle.cs: Finished
  349. 2002-10-23 Ville Palo <[email protected]>
  350. * System.Data.SqlTypes/SqlByte.cs:
  351. * System.Data.SqlTypes/SqlBoolean.cs:
  352. * System.Data.SqlTypes/SqlInt16.cs:
  353. * System.Data.SqlTypes/SqlInt32.cs:
  354. * System.Data.SqlTypes/SqlInt64.cs: Finished.
  355. 2002-10-21 Rodrigo Moya <[email protected]>
  356. * list: removed libodbchelper.cs file, which has been removed.
  357. 2002-10-16 Tim Coleamn <[email protected]>
  358. * list:
  359. * System.Data.build:
  360. Exclude compiling of System.Data.SqlClient in
  361. preparation for overhauls of that system.
  362. 2002-10-16 Daniel Morgan <[email protected]>
  363. * ParmUtil.cs
  364. * PostgresLibrary.cs
  365. * PostgresTypes.cs
  366. * SqlClientPermission.cs
  367. * SqlClientPermissionAttribute.cs
  368. * SqlCommand.cs
  369. * SqlCommandBuilder.cs
  370. * SqlConnection.cs
  371. * SqlDataAdapter.cs
  372. * SqlDataReader.cs
  373. * SqlError.cs
  374. * SqlErrorCollection.cs
  375. * SqlException.cs
  376. * SqlInfoMessageEventArgs.cs
  377. * SqlInfoMessageEventHandler.cs
  378. * SqlParameter.cs
  379. * SqlParameterCollection.cs
  380. * SqlRowUpdatedEventArgs.cs
  381. * SqlRowUpdatedEventHandler.cs
  382. * SqlRowUpdatingEventArgs.cs
  383. * SqlRowUpdatingEventHandler.cs
  384. * SqlTransaction.cs: thanks to Miguel de Icaza, he
  385. copied files on the mono cvs server
  386. from mcs/class/System.Data/System.Data.SqlClient
  387. for the PostgreSQL provider
  388. to mcs/class/Mono.Data.PostgreSqlClient.
  389. This frees up
  390. mcs/class/System.Data/System.Data.SqlClient for
  391. the Microsoft SQL Server provider.
  392. Any Mono.Data.PostgreSqlClient/Sql*.cs files
  393. were copied on the cvs server
  394. to Mono.Data.PostgreSqlClient/PgSql*.cs files
  395. and the old Mono.Data.PostgreSqlClient/Sql*.cs
  396. files were removed. Copying, renaming, and removing
  397. was done on the cvs server so we could keep
  398. the cvs change history.
  399. 2002-10-15 Daniel Morgan <[email protected]>
  400. * System.Data.OleDb/libgda.cs: added more functions
  401. to platfrom invoke into shared library libgda
  402. * System.Data.OleDb/OleDbDataReader.cs: implemented
  403. GetSchemaTable() and GetFieldType()
  404. 2002-10-13 Daniel Morgan <[email protected]>
  405. * System.Data/DataRow.cs: don't throw exception
  406. if DBNull is false. Had to do comment this line
  407. to allow a typeof(Type).
  408. * System.Data.SqlClient/SqlCommand.cs: the "DataType"
  409. DataColumn and DataRows in a DataTable for a schema should
  410. be typeof Type, not string. This is to make it
  411. compatible with MS.NET
  412. * System.Data.SqlClient/SqlConnection.cs: the
  413. isolation level should be set before
  414. beginning the transaction
  415. * Test/SqlSharpCli.cs: change string to Type for
  416. "DataType" from a DataRow in a DataTable
  417. that contains a schema.
  418. 2002-10-14 Rodrigo Moya <[email protected]>
  419. * list: added missing Odbc files.
  420. 2002-10-09 Rodrigo Moya <[email protected]>
  421. * list: added System.Data.Odbc files.
  422. 2002-10-09 Brian Ritchie <[email protected]>
  423. * System.Data.Odbc/*: added first version of ODBC managed provider.
  424. 2002-10-07 Gonzalo Paniagua Javier <[email protected]>
  425. * System.Data/ConstraintCollection.cs:
  426. * System.Data/DataColumnCollection.cs:
  427. * System.Data/DataRowCollection.cs:
  428. * System.Data/DataTableCollection.cs:
  429. * System.Data/InternalDataCollectionBase.cs: made List internal to fix
  430. the build with csc. It must be a mcs bug. I will try to get a test case.
  431. 2002-10-06 Luis Fernandez <[email protected]>
  432. * System.Data/Constraint.cs (AssertConstraint): added overloaded
  433. method.
  434. * System.Data/DataColumnCollection.cs: added constraints when needed.
  435. * System.Data/DataRow.cs: validate UniqueConstraint's.
  436. * System.Data/DataRowCollection.cs (ValidateDataRowInternal): new
  437. internal method to validate a given DataRow with respect to the
  438. DataRowCollection.
  439. * System.Data/ForeignKeyConstraint.cs (AssertConstraint): stubs for
  440. new overloaded method.
  441. * System.Data/UniqueConstraint.cs: added implementation.
  442. (AseertConstraint): implemented new overloaded method.
  443. 2002-10-01 Rodrigo Moya <[email protected]>
  444. * System.Data.OleDb/OleDbConnection.cs (Open): commented code from
  445. last commit, which wasn't supposed to be in CVS yet.
  446. 2002-10-01 Luis Fernandez <[email protected]>
  447. * System.Data/DataColumn.cs:
  448. * System.Data/DataRow.cs:
  449. * System.Data/DataRowCollection.cs:
  450. * System.Data/DataTable.cs: some fixes and implementation.
  451. 2002-09-28 Vladimir Vukicevic <[email protected]>
  452. * System.Data.OleDb/OleDbConnection.cs: Close
  453. reader properly in call to ExecuteScalar().
  454. 2002-09-07 Rodrigo Moya <[email protected]>
  455. * System.Data.OleDb/OleDbConnection.cs (Open): changed to use OleDb
  456. connection strings, which are then converted to GDA connection
  457. strings, instead of using directly GDA data source names.
  458. * System.Data.OleDb/libgda.cs: added more needed functions.
  459. 2002-09-06 Franklin Wise <[email protected]>
  460. * System.Data/DataColumn.cs: More flushing out.
  461. * System.Data/ForeignKeyConstraint.cs: Implemented GetHashCode()
  462. * System.Data/UniqueKeyConstraint.cs: Implemented GetHashCode()
  463. * Tests: See Changelog for System.Data/Test
  464. 2002-09-04 Franklin Wise <[email protected]>
  465. * Tests: See Changelog for System.Data/Test
  466. * New Files:
  467. System.Data/DataColumnCollectionTest.cs
  468. System.Data/DataRowCollectionTest.cs
  469. System.Data/DataRowTest.cs
  470. * System.Data/DataColumn.cs: Flushing out validation, type conversion for
  471. autoincrement. Added lots of TODO's.
  472. * System.Data/DataColumnCollection.cs: Wrote out add logic as a comment.
  473. Tagged implementation with FIXME tags. Lot's more validation
  474. and setup needs to be done, much of which is now tagged as todo's
  475. or FIXME's
  476. * System.Data/DataRow.cs: Lot's of fixme's added.
  477. * System.Data/DataRowCollection.cs: TODO's added.
  478. * System.Data/DataTable.cs: Implemented PrimaryKey.
  479. * System.Data/UniqueConstraint.cs: Implemented related PrimaryKey
  480. helpers.
  481. 2002-08-25 Rodrigo Moya <[email protected]>
  482. * System.Data.OleDb/OleDbTransaction.cs (OleDbTransaction): manage
  483. correctly the isolation level.
  484. (IsolationLevel): likewise.
  485. (~OleDbTransaction): implemented.
  486. * System.Data.OleDb/libgda.cs: added more needed stuff.
  487. 2002-08-22 Daniel Morgan <[email protected]>
  488. * System.Data.SqlClient/SqlParameter.cs: flush
  489. * System.Data.SqlClient/SqlParameterCollection.cs: fixes
  490. for the Item property, IndexOf, and Contains.
  491. * Test/SqlSharpCli.cs: added input parameters support.
  492. when a query is executed, if a parameter name matches
  493. a SQL# internal variable name, it uses that value for the parameter; otherwise,
  494. the user is prompted for the parameter value. Currently, it only supports
  495. string parameters.
  496. 2002-08-21 Rodrigo Moya <[email protected]>
  497. * System.Data.OleDb/libgda.cs: adapted to changes in libgda (get_vtype
  498. and get_type for GdaValue).
  499. * System.Data.OleDb/OleDbDataReader.cs: adapted to changes in
  500. libgda.cs.
  501. 2002-08-20 Rodrigo Moya <[email protected]>
  502. * System.Data.OleDb/OleDbConnection.cs (DataReader): new internal
  503. property.
  504. (Close): set the dataReader to null.
  505. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader): set the
  506. connection's DataReader property to this object.
  507. (Close): set it to null here.
  508. (Depth, IsDbNull): implemented.
  509. (this): implemented the Item property with a string indexer.
  510. * System.Data.OleDb/OleDbCommand.cs (ExecuteNonQuery, ExecuteReader,
  511. ExecuteScalar): do nothing if there's already an open data reader.
  512. * System.Data.OleDb/libgda.cs: more API functions.
  513. * System.Data.OleDb/TestOleDb.cs (TestDataReader): close the data
  514. reader before continuing.
  515. 2002-08-20 Franklin Wise <[email protected]>
  516. * System.Data/System.Data.build: added nowarn:0679
  517. * System.Data/System.DataTable: cleaned up class, added MonoTODO tags
  518. setup to begin implementing. Implemented ctor().
  519. * Tests: See System.Data\Test\ChangeLog
  520. 2002-08-19 Rodrigo Moya <[email protected]>
  521. * System.Data.OleDb/OleDbSchemaGuid.cs: initialize static members.
  522. 2002-08-19 Franklin Wise <[email protected]>
  523. * Tests: See System.Data\Test\ChangeLog
  524. * System.Data/UniqueConstraint.cs: More validation.
  525. * System.Data/ForeignKeyConstraint.cs: Added more validation rules.
  526. Another LAMESPEC tag. Implemented more of Add/Remove Setup/Cleanup
  527. logic.
  528. * System.Data/DataTable.cs: Added more MonoTODO tags
  529. * class/System.Data/.cvsignore: added tmp & Temp
  530. * System.Data/Constraint.cs: Changed abstract helpers to virtual and
  531. internal.
  532. * System.Data/ConstraintCollection.cs: Commented out unused line.
  533. 2002-08-18 Rodrigo Moya <[email protected]>
  534. * System.Data.OleDb/OleDbConnection.cs (ChangeDatabase): implemented.
  535. * System.Data.OleDb/OleDbException.cs (OleDbException): added internal
  536. constructor.
  537. (ErrorCode, Message, Source, Errors): implemented.
  538. * System.Data.OleDb/OleDbError.cs: implemented the full class.
  539. * System.Data.OleDb/libgda.cs: added more libgda functions.
  540. * System.Data.OleDb/TestOleDb.cs (TestOleDb): display properties for
  541. the opened connection.
  542. 2002-08-18 Rodrigo Moya <[email protected]>
  543. * System.Data.OleDb/OleDbConnection.cs (ServerVersion): implemented.
  544. * System.Data.OleDb/OleDbDataReader.cs (Close): clear the results
  545. ArrayList after releasing the items.
  546. (GetName, GetDateTime, GetDouble, GetSingle, GetInt16, GetInt32,
  547. GetOrdinal, GetString): implemented.
  548. (GetDataTypeName): made it get the type from the data model, not from
  549. the current value, which could not have been retrieved yet.
  550. (GetValue): call the Get* method corresponding with the data type of
  551. the requested column.
  552. * System.Data.OleDb/libgda.cs: added more libgda functions.
  553. (GdaTimestamp, GdaDate, GdaTime): new marshalled structures.
  554. * System.Data.OleDb/TestOleDb.cs (TestDateReader): display column
  555. titles via OleDbDataReader.GetName ().
  556. (TestOleDb): create temporary table with a date field.
  557. (InsertRow): set current date for the date field.
  558. 2002-08-18 Rodrigo Moya <[email protected]>
  559. * System.Data.OleDb/OleDbDataReader.cs (this[]): made it just call
  560. GetValue, which will take care of all the work needed.
  561. (Close): implemented basic stuff.
  562. (~OleDbDataReader): implemented.
  563. * System.Data.OleDb/libgda.cs: added more needed functions.
  564. 2002-08-16 Rodrigo Moya <[email protected]>
  565. * System.Data.OleDb/TestOleDb.cs: made it work with a temporary table
  566. we create.
  567. (TestTransaction): added test for transactions.
  568. 2002-08-16 Rodrigo Moya <[email protected]>
  569. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  570. * System.Data.OleDb/OleDbDataReader.cs (GetBoolean): throw exceptions
  571. when there are errors.
  572. (GetByte, GetChar, GetDataTypeName, GetValue, Read): implemented.
  573. * System.Data.OleDb/TestOleDb.cs: added more testing code for data
  574. readers.
  575. 2002-08-15 Rodrigo Moya <[email protected]>
  576. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  577. * System.Data.OleDb/OleDbParameterCollection.cs (GdaParameterList):
  578. create an empty GdaParameterList.
  579. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): check values
  580. for NULL before passing them to Marshal.PtrToStructure, which issues
  581. an exception if the value is NULL.
  582. 2002-08-15 Rodrigo Moya <[email protected]>
  583. * System.Data/UniqueConstraint.cs (UniqueConstraint): commented
  584. unreachable code to avoid compiler warning.
  585. * System.Data.OleDb/libgda.cs (GdaList): added new internal class.
  586. * System.Data.OleDb/OleDbConnection.cs (DataSource): implemented.
  587. (OpenReader): removed internal method.
  588. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): split correctly
  589. the list of returned data models.
  590. 2002-08-15 Franklin Wise <[email protected]>
  591. * System.Data/Constraint.cs: Added helper virtual functions
  592. * System.Data/ConstraintCollection.cs: Improved constraint removal,
  593. validation. Removed specific knowledge of subclasses of
  594. Constraint.
  595. * System.Data/DataColumn.cs: Added static helper function to compare
  596. if two DataColumn arrays are the same.
  597. * System.Data/ForeignKeyConstraint.cs: Continued to flush out.
  598. * System.Data/UniqueConstraint.cs: Implemented. Still some constraint
  599. validation to do.
  600. 2002-08-13 Franklin Wise <[email protected]>
  601. * System.Data/DataRow.cs: Added several fixme tags.
  602. 2002-08-13 Rodrigo Moya <[email protected]>
  603. * System.Data.SqlClient/SqlDataAdapter.cs (DeleteCommand,
  604. InsertCommand, SelectCommand, UpdateCommand): removed 'new' keyword
  605. to avoid compiler warnings.
  606. 2002-08-12 Franklin Wise <[email protected]>
  607. * System.Data/Constraint.cs: Implemented
  608. * System.Data/UniqueConstraint.cs: GetHashCode() &
  609. special case Ctor. Still need to be implemented. LAMESPEC tags
  610. added.
  611. * System.Data/ConstraintCollection.cs: Clear() &
  612. AddRange() need to be finished. Several LAMESPEC tags.
  613. * Allow Constraint collection to be created in DataTable.
  614. * System.Data/ForeignKeyConstraint: Added a couple of
  615. helper functions.
  616. * System.Data/DataColumnCollection New/Added DataColumns now have
  617. Table property set.
  618. 2002-08-11 Rodrigo Moya <[email protected]>
  619. * System.Data.OleDb/libgda.cs: added some GdaValue functions.
  620. * System.Data.OleDb/OleDbCommand.cs (OpenReader): removed this
  621. internal method, since we don't need it.
  622. (ExecuteReader): call SetupGdaCommand before executing the command
  623. via libgda functions.
  624. (ExecuteScalar): implemented.
  625. * System.Data.OleDb/OleDbDateReader.cs (OleDbDataReader): removed call
  626. to OleDbCommand.OpenReader.
  627. (GetBoolean): implemented.
  628. 2002-08-08 Franklin Wise <[email protected]>
  629. * System.Data/IDbComand.cs: IDbCommand now inherits IDisposable
  630. * System.Data/IDbConnection.cs: IDbConnection now inherits IDisposable
  631. * System.Data.SqlTypes/SqlCompareOptions.cs: Enum now set to correct
  632. values.
  633. 2002-08-06 Gonzalo Paniagua Javier <[email protected]>
  634. * System.Data.OleDb/OleDbConnection.cs: little fixes to make it work
  635. and don't show a warning in Open.
  636. * System.Data.OleDb/TestOleDb.cs: added Close.
  637. 2002-08-05 Rodrigo Moya <[email protected]>
  638. * System.Data.OleDb/OleDbConnection.cs (ConnectionString,
  639. ConnectionTimeout, ServerVersion, GdaConnection):
  640. corrected style.
  641. (OleDbConnection): call libgda.gda_init on constructor.
  642. * System.Data.OleDb/libgda.cs (libgda): removed static constructor,
  643. which wasn't been called.
  644. * System.Data.OleDb/TestOleDb.cs (TestOleDb): updated to really
  645. make some tests.
  646. 2002-08-04 Rodrigo Moya <[email protected]>
  647. * list: added missing System.Data.OleDb and
  648. System.Data.Common files.
  649. * System.Data.OleDb/ChangeLog: removed and merged with
  650. System.Data's ChangeLog.
  651. * System.Data.OleDb/OleDbDataAdapter.cs:
  652. * System.Data.OleDb/OleDbPermission.cs: compilation fixes.
  653. 2002-07-30 Rodrigo Moya <[email protected]>
  654. * System.Data.OleDb/OleDbDataReader.cs (FieldCount): implemented.
  655. (IsClosed, Item, RecordsAffected): implemented some properties.
  656. * libgda.cs: added GdaDataModel methods.
  657. 2002-07-29 Rodrigo Moya <[email protected]>
  658. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader constructor): changed to receive
  659. a second argument (ArrayList results).
  660. (NextResult): implemented.
  661. * System.Data.OleDb/OleDbCommand.cs: don't store the ArrayList of results, since we'll
  662. pass that to the OleDbDataReader.
  663. (OleDbCommand constructor): don't create the ArrayList of results.
  664. (GdaResults): removed property.
  665. (ExecuteReader): create a temporary ArrayList and pass that to the
  666. OleDbDataReader constructor.
  667. 2002-07-28 Rodrigo Moya <[email protected]>
  668. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader):
  669. (CreateParameter): implemented IDbCommand methods.
  670. (CommandText): don't create many GdaCommand's, only one is needed.
  671. (ExecuteNonQuery): set up the internal GDA command object.
  672. (ExecuteReader): use correctly the unique GDA command object.
  673. * System.Data.OleDb/libgda.cs: added new libgda calls.
  674. 2002-07-27 Rodrigo Moya <[email protected]>
  675. * System.Data.OleDb/OleDbConnection.cs (CreateCommand):
  676. (BeginTransaction): implemented IDbConnection methods.
  677. 2002-07-12 Rodrigo Moya <[email protected]>
  678. * list: added System.Data.OleDb files to file list.
  679. 2002-07-11 Rodrigo Moya <[email protected]>
  680. * System.Data.OleDb/libgda.cs: added new libgda functions and some enumerations.
  681. * System.Data.OleDb/OleDbParameter.cs (IsNullable): removed explicit implementation
  682. of the set method for this property.
  683. * System.Data.OleDb/OleDbDataAdapter.cs (MissingMappingAction): implemented.
  684. (MissingSchemaAction): implemented.
  685. 2002-07-10 Tim Coleman <[email protected]>
  686. * System.Data.OleDb/OleDbCommandBuilder.cs: Added new methods, properties
  687. * System.Data.OleDb/OleDbConnection.cs: Modified constructor
  688. * System.Data.OleDb/OleDbError.cs: Added stubbs
  689. * System.Data.OleDb/OleDbException.cs: Added stubbs
  690. * System.Data.OleDb/OleDbInfoMessageEventArgs.cs: Added stubbs
  691. * System.Data.OleDb/OleDbInfoMessageEventHandler.cs: style change
  692. * System.Data.OleDb/OleDbParameter.cs: Added conversion from type to OleDbType
  693. * System.Data.OleDb/OleDbPermission.cs: Added stubbs
  694. * System.Data.OleDb/OleDbSchemaGuid.cs: Added stubbs
  695. * System.Data.OleDb/OleDbTransaction.cs: New constructors, changes to methods to
  696. support transaction nesting
  697. * System.Data.OleDb/libgda.cs: Added my name to this file
  698. 2002-07-09 Tim Coleman <[email protected]>
  699. * System.Data.OleDb/OleDbCommand.cs: Style changes, added new methods
  700. * System.Data.OleDb/OleDbConnection.cs: Style changes, added new methods
  701. * System.Data.OleDb/OleDbDataAdapter.cs: Implementation
  702. * System.Data.OleDb/OleDbDataReader.cs: Added stubbs
  703. * System.Data.OleDb/OleDbErrorCollection.cs: Added stubbs, some implementation
  704. * System.Data.OleDb/OleDbParameter.cs: Style changes, added new methods
  705. * System.Data.OleDb/OleDbParameterCollection.cs: Style changes, added new methods
  706. * System.Data.OleDb/OleDbPermissionAttribute.cs: Style changes, added new methods
  707. * System.Data.OleDb/OleDbRowUpdatedEventArgs.cs: Added stubbs
  708. * System.Data.OleDb/OleDbRowUpdatingEventArgs.cs: Added stubbs
  709. * System.Data.OleDb/OleDbTransaction.cs: Style changes, added new methods
  710. * System.Data.OleDb/OleDbType.cs: Fixed two typos
  711. * System.Data.OleDb/libgda.cs: Style changes, added new methods
  712. 2002-07-09 Tim Coleman <[email protected]>
  713. * System.Data.build: remove restriction on System.Data.OleDb build
  714. 2002-06-03 Rodrigo Moya <[email protected]>
  715. * System.Data.OleDb/OleDbParameterCollection.cs (GetEnumerator, SyncRoot,
  716. IsSynchronized): implemented.
  717. 2002-06-02 Rodrigo Moya <[email protected]>
  718. * System.Data.OleDb/OleDbTransaction.cs (Dispose): added missing method.
  719. * System.Data.OleDb/OleDbCommand.cs (Clone): added missing methods.
  720. (Parameters, Transaction, Connection): made these overload
  721. IDbCommand's ones.
  722. * System.Data.OleDb/OleDbParameterCollection.cs (IndexOf, Remove, RemoveAt):
  723. call m_list methods, not own ones.
  724. * System.Data.OleDb/OleDbParameter.cs: more implementation.
  725. 2002-06-02 Rodrigo Moya <[email protected]>
  726. * System.Data.OleDb/OleDbTransaction.cs (Connection, IsolationLevel, Begin,
  727. Commit, Rollback): implemented.
  728. (GdaConnection): added new internal property.
  729. * System.Data.OleDb/OleDbParameter.cs:
  730. * System.Data.OleDb/OleDbParameterCollection.cs: implemented some methods and
  731. properties.
  732. * System.Data.OleDb/libgda.cs: added yet more libgda API functions.
  733. 2002-06-01 Rodrigo Moya <[email protected]>
  734. * System.Data.OleDb/libgda.cs: added new libgda API functions.
  735. * System.Data.OleDb/OleDbConnection.cs (Provider): implemented.
  736. (BeginTransaction): made it overload IDbConnection methods.
  737. (ChangeDatabase): new stub, needs some work on libgda for being
  738. implemented.
  739. (Clone): new stub.
  740. (Close): implemented.
  741. (CreateCommand): implemented.
  742. (GetOleDbSchemaTable): new stub, until I understand what to do here.
  743. (Open): implemented basic stuff, which is just supporting connection
  744. strings that represent a GDA data source name. More to come.
  745. (InfoMessage, StateChange): added events.
  746. * System.Data.OleDb/TestOleDb.cs: test program for System.Data.OleDb.
  747. 2002-05-29 Rodrigo Moya <[email protected]>
  748. * System.Data.OleDb/libgda.cs: added static constructor.
  749. (GdaClient): new static property to get the underlying GdaClient
  750. object.
  751. * System.Data.OleDb/OleDbConnection.cs: removed GDA initialization, which belongs to
  752. the static 'libgda' class.
  753. 2002-05-29 Rodrigo Moya <[email protected]>
  754. * System.Data.OleDb/libgda.cs: static class for libgda API calls.
  755. * System.Data.OleDb/OleDbConnection.cs: implemented constructors.
  756. (ConnectionString, Connectiontimeout, Database, State):
  757. implemented class properties.
  758. (BeginTransaction): implemented.
  759. * System.Data.OleDb/OleDbTransaction.cs: implemented protected constructors.
  760. * System.Data.OleDb/TestGDA.cs: simple test for libgda API.
  761. 2002-05-27 Rodrigo Moya <[email protected]>
  762. * System.Data.OleDb/*: started System.Data.OleDb provider, based on libgda.
  763. 2002-06-06 Rodrigo Moya <[email protected]>
  764. * list: added missing PostgresTypes.cs file.
  765. 2002-06-02 Francisco Jr. <[email protected]>
  766. * System.Data.SqlClient/SqlParameterCollection.cs: implemented missing
  767. methods.
  768. 2002-05-30 Daniel Morgan <[email protected]>
  769. * System.Data.SqlClient/SqlConnection.cs: modifed -
  770. start to implement the interfaces properly and
  771. properly doing a Close(), Dispose(), and
  772. releasing resources
  773. * Test/SqlSharpCli.cs: modified -
  774. add support for MySQL in Mono.Data.MySql
  775. and OleDb support in System.Data.OleDb. However,
  776. the OleDb support is commented right now.
  777. When the program starts up, a shorter help menu should
  778. display the most important commands: help and quit
  779. 2002-05-28 Rodrigo Moya <[email protected]>
  780. * System.Data.build: exclude System.Data.OleDb files.
  781. 2002-05-27 Daniel Morgan <[email protected]>
  782. * System.Data.SqlClient/SqlCommand.cs: typo
  783. should be CommandBehavior.KeyInfo
  784. * Test/SqlSharpCli.cs: refactored and added a few more
  785. features.
  786. 2002-05-27 Tim Coleman <[email protected]>
  787. * list: update to compile properly (add missing
  788. files and switch path delimiter from '\' to '/').
  789. 2002-05-26 Daniel Morgan <[email protected]>
  790. * System.Data/DataRow.cs
  791. * System.Data.Common/DbDataAdapter.cs: fix to
  792. get Test/TestSqlDataAdapter.cs to work again
  793. * Test/TestSqlDataAdapter.cs: removed comment
  794. about SqlDataReader:NextResult() not being implemented; it
  795. bas been implemented
  796. 2002-05-26 Daniel Morgan <[email protected]>
  797. * System.Data/DataRow.cs: modified
  798. support setting of DBNull.Value
  799. using the Item indexer this[DataColumn]
  800. * System.Data.SqlClient/SqlCommand.cs: modified
  801. tweaks to show TODO's for other CommandBehavior.
  802. Set AllowDBNull column to true for IsKey row
  803. in schema DataTable.
  804. * System.Data.SqlClient/SqlConnection.cs: modified
  805. if transaction is in progress when a Close() is called,
  806. do a transaction Rollback.
  807. 2002-05-26 Daniel Morgan <[email protected]>
  808. * Test/SqlSharpCli.cs: added file
  809. My new toy. SQL# is a command-line tool to enter
  810. SQL commands and queries using Mono System.Data.
  811. It also serves as a test for Mono System.Data.
  812. * System.Data.SqlClient/SqlCommand.cs: modified
  813. - ExecuteNonQuery(), ExecuteScalar(), and ExecuteReader()
  814. should handle the results from SQL Commands and Queries.
  815. - Internal class SqlResult should not create schema Table
  816. for the result from a SQL Command. Also, set the RecordsRetrieved
  817. property for SqlDataReader.
  818. - Closing the SqlDataReader should Close() the SqlConnection for
  819. a CommandBehavior.CloseConnection.
  820. - Set defaults for SqlResult
  821. * System.Data.SqlClient/SqlConnection.cs: modified -
  822. when SqlDataReader is Close()
  823. should Close() the SqlConnection for
  824. a CommandBehavior.CloseConnection. Changed internal Property
  825. from OpenReader get/set to IsReaderOpen get and created
  826. internal methods OpenReader()/CloseReader() for SqlCommand to call.
  827. SqlConnection needs to be prevented from doing while SqlDataReader
  828. is being used.
  829. * System.Data.SqlClient/SqlDataReader.cs: modified -
  830. call SqlCommand's OpenReader() internal method. get
  831. RecordsRetrieved from SqlResult. set/reset default
  832. values for SqlDataReader.
  833. * Test/PostgresTest.cs
  834. * Test/TestExecuteScalar.cs
  835. * Test/TestSqlDataReader.cs: modified
  836. for the Execute...() methods in SqlCommand
  837. to test SQL Queries and Commands
  838. * Test/System.Data_test.build: modified
  839. exclude new file Test/SqlSharpCli.cs from
  840. test build
  841. 2002-05-24 Tim Coleman <[email protected]>
  842. * System.Data.Common/DbDataAdapter.cs: remove IDbCommands, except
  843. for get accessors. These should be implemented in derived classes. See
  844. SqlDataAdapter for clues.
  845. * System.Data.SqlClient/SqlDataAdapter.cs: implement IDbDataAdapter
  846. * System.Data.Common/DataAdapter.cs:
  847. * System.Data.Common/DataTableMappingCollection.cs:
  848. * System.Data.Common/DataTableMapping.cs:
  849. * System.Data.Common/DataColumnMappingCollection.cs:
  850. * System.Data.Common/DataColumnMapping.cs:
  851. Properly (I hope!) implement all of the appropriate interfaces
  852. for these classes.
  853. 2002-05-23 Tim Coleman <[email protected]>
  854. * System.Data.SqlClient/SqlCommand.cs: include
  855. the BaseColumnName in the schema table. Was missed before.
  856. * System.Data.Common/DbDataAdapter.cs: Use DataTable
  857. mappings so that the DataSet and DataTable are more closely tied.
  858. Get schema information from the DataTable using GetSchemaTable ()
  859. Various other little fixes
  860. * System.Data.Common/DataColumnMappingCollection.cs:
  861. * System.Data.Common/DataTableMapping.cs:
  862. * System.Data.Common/DataTableMappingCollection.cs: Some
  863. implementation, enough to be used by DbDataAdapter.
  864. 2002-05-23 Daniel Morgan <[email protected]>
  865. * System.Data.SqlClient/SqlCommand.cs: set
  866. the "ProviderType" to the PostgreSQL type oid
  867. * System.Data.SqlClient/SqlDataReader.cs: fix
  868. for various properties and methods that
  869. return meta data: Item indexers this[name] and this[index],
  870. GetFieldType, GetName, and GetOrdinal. SqlDataAdapter
  871. should work again.
  872. 2002-05-22 Daniel Morgan <[email protected]>
  873. * System.Data/DataRow.cs: change suggested
  874. by tim: in Item indexer, do an EndEdit()
  875. * System.Data.SqlClient/SqlCommand.cs: more
  876. fixes to SqlResult. After setting each item in
  877. the DataRow, do an AcceptChanges() to commit
  878. the changes in the DataRow. For DataType, use a Type
  879. of System.String since System.Type nor System.Object
  880. seems to work.
  881. * Test/TestSqlDataReader.cs
  882. * Test/PostgresTest.cs: updated to to be on
  883. the way schema table is suppose to work
  884. 2002-05-22 Daniel Morgan <[email protected]>
  885. * System.Data.SqlClient/SqlCommand.cs: more work on
  886. building the schema table
  887. 2002-05-22 Tim Coleman <[email protected]>
  888. * System.Data.SqlClient/SqlCommand.cs: preliminary work
  889. on getting the schema table correctly built.
  890. 2002-05-21 Daniel Morgan <[email protected]>
  891. * System.Data.SqlClient/ParmUtil.cs: added file - to
  892. provide utility for conversion of input parameters
  893. * System.Data.SqlClient/PostgresTypes.cs: added file -
  894. moved the PostgreHelper class to here. May eventually
  895. move the internal class PostgresTypes that's inside the
  896. SqlConnection to here as well.
  897. Handling of PostgreSQL <-> .NET types need to be though
  898. out more. Also, the PostgreHelper has a method to convert
  899. from .NET types to a string which can be put into used in
  900. an SQL statement to execute against a PostgreSQL database.
  901. This is the beginnings of parameters support. It currently
  902. only supports input parameters. Still need to do output,
  903. input/output, and return parameters.
  904. * Test/TestSqlParameters.cs: new test to test the input
  905. parameters in System.Data.SqlClient against a
  906. PostgreSQL db.
  907. * System.Data.SqlClient/PostgresLibrary.cs: moved
  908. PostgresHelper class to file PostgresTypes.cs. Also
  909. moved struct PostgresType there too.
  910. * System.Data.SqlClient/SqlCommand.cs: added input
  911. parameters support
  912. * System.Data.SqlClient/SqlParameter.cs: got
  913. SqlParameter to work
  914. * System.Data.SqlClient/SqlParameterCollection.cs: got
  915. SqlParameterCollection to work
  916. * Test/System.Data_test.build: added files to exclude
  917. from test build
  918. * System.Data.SqlClient/SqlConnection.cs: release resources
  919. no longer used
  920. 2002-05-18 Daniel Morgan <[email protected]>
  921. * System.Xml: added directory for classes with namespace
  922. System.Xml to go into the System.Data.dll assembly
  923. * System.Xml/XmlDataDocument: added file
  924. for stubbed concrete class XmlDataDocument which
  925. inherits from XmlDocument. Its purpose is to provide
  926. a W3C XML DOM Document for relational data and interacting
  927. with a DataSet
  928. 2002-05-18 Daniel Morgan <[email protected]>
  929. * System.Data.SqlClient/SqlCommand.cs: handle CommandTypes
  930. Text, TableDirect, and StoredProcedure
  931. * Test/PostgresTest.cs: changed call to version()
  932. stored procedure to use the CommandType of StoredProcedure
  933. * Test/TestSqlDataReader.cs: test all the CommandTypes
  934. 2002-05-18 Daniel Morgan <[email protected]>
  935. * System.Data.build: took out all excluded
  936. files except the ones in the Test directory
  937. because all files compile now. It does not
  938. mean they all work or have implementations
  939. though.
  940. * System.Data/DataRelationCollection.cs
  941. * System.Data/DataTableRelationCollection.cs
  942. * System.Data/InternalDataCollectionBase.cs
  943. * System.Data.Common/DbDataPermission.cs
  944. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs
  945. * System.Data.SqlClient/SqlClientPermission.cs
  946. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: changes
  947. to get all System.Data* files to compile.
  948. * System.Data.SqlClient/SqlCommand.cs: started coding
  949. to prevent SqlConnection and SqlCommand from doing
  950. anyting while fetching data using SqlDataReader. Also,
  951. started coding to undo this prevention once the
  952. SqlDataReader is closed.
  953. * System.Data.SqlClient/SqlConnection.cs: get database server
  954. version. Started coding to prevent connection from
  955. doing anything while fetching data and undo once the reader
  956. is closed. Include events SqlInfoMessage and StateChange.
  957. * System.Data.SqlClient/SqlDataReader.cs: start coding to
  958. prevent connection and command from doing anything while
  959. fetching data, and undo when closed.
  960. * Test/PostgresTest.cs: added test to get ServerVersion
  961. property from SqlConnection
  962. 2002-05-18 Tim Coleman <[email protected]>
  963. * System.Data/DataRow.cs: More implementation,
  964. as well as boundary checks and small semantic
  965. repairs
  966. 2002-05-18 Tim Coleman <[email protected]>
  967. * System.Data/DataRow.cs: Try to reduce memory
  968. usage by only creating the original and proposed
  969. arrays as required in BeginEdit, and then destroying
  970. proposed during EndEdit, and original during AcceptChanges.
  971. * System.Data.Common/DbDataAdapter.cs: Make the
  972. startRecord and maxRecords parameters work correctly.
  973. 2002-05-18 Tim Coleman <[email protected]>
  974. * System.Data/DataRow.cs: Move the null check in
  975. ItemArray set to above the Invalid Cast check, so
  976. that we don't get null reference exceptions.
  977. 2002-05-17 Daniel Morgan <[email protected]>
  978. * System.Data.SqlClient/PostgresLibrary.cs: handle
  979. data value from database being NULL
  980. * System.Data.SqlClient/SqlCommand.cs: for ExecuteReader,
  981. allow multiple result sets. Added new internal class
  982. SqlResult to pass result set data from SqlCommand
  983. to SqlDataReader.
  984. * System.Data.SqlClient/SqlDataReader.cs: allow
  985. multiple result sets.
  986. * System.Data.SqlClient/SqlConnection.cs: moved
  987. things around. Implement IDisposable.
  988. * Test/TestSqlDataReader.cs: test for execution
  989. of multiple result sets and display the results
  990. of these multiple results sets
  991. * Test/TestSqlDataAdapter.cs: tweaks
  992. 2002-05-17 Tim Coleman <[email protected]>
  993. * System.Data.Common/DbDataAdapter.cs:
  994. - More implementation of Fill methods
  995. - Get rid of isDirty flag, because we can just check
  996. if the table exists
  997. - Do *not* remove DataTables before Filling them
  998. - Implicitly open the connection before doing a Fill
  999. if it does not exist.
  1000. * System.Data.SqlClient/SqlDataAdapter.cs:
  1001. - Minor fixup
  1002. * System.Data/DataTableCollection.cs:
  1003. - Add DataSet to internal, undocumented constructor
  1004. - When a table is created, set its DataSet property
  1005. - Default table name for creation is "Table1" (see .NET)
  1006. - Inherit the ArrayList list from InternalDataCollecitonBase
  1007. and maintain a hashtable between table names and
  1008. DataTables
  1009. * System.Data/DataTable.cs:
  1010. - Add internal dataSet field. This is used by
  1011. DataTableCollection when the DataTable is constructed.
  1012. * System.Data/DataSet.cs:
  1013. - Pass a reference to the DataSet when constructing the
  1014. DataTableCollection.
  1015. 2002-05-16 Tim Coleman <[email protected]>
  1016. * System.Data.Common/DbDataAdapter.cs:
  1017. Use table.Rows.Add (itemArray) instead of
  1018. table.Rows.Add (thisRow) to provide better
  1019. abstraction.
  1020. * System.Data/DataRowCollection.cs:
  1021. Some implementation of this class.
  1022. * System.Data/InternalDataCollectionBase.cs:
  1023. Some implementation. Most notably, this now
  1024. has an enumerator so we can use foreach (DataRow row in table.Rows)
  1025. in the test classes.
  1026. * System.Data/DataTable.cs:
  1027. Since DataRowCollection now accepts a DataTable in
  1028. its internal constructor, we must pass one in.
  1029. 2002-05-16 Daniel Morgan <[email protected]>
  1030. * Test/TestSqlDataAdapter.cs: added new test
  1031. for SqlDataAdapter, DataSet, DataTableCollection, DataTable,
  1032. DataRowCollection, and DataRow. It tests retrieving data
  1033. based on a SQL SELECT query. This test is based on Tim Coleman's
  1034. test he sent to me.
  1035. 2002-05-16 Tim Coleman <[email protected]>
  1036. * System.Data.Common/DbDataAdapter.cs:
  1037. Use table.Rows.Add (thisRow) instead of
  1038. table.ImportRow (thisRow)
  1039. * System.Data/DataRowCollection.cs:
  1040. Construct the ArrayList before using it
  1041. 2002-05-16 Tim Coleman <[email protected]>
  1042. * System.Data/DataTable.cs:
  1043. Construct the DataRowCollection in the DataTable
  1044. constructor. Otherwise, it's a null reference.
  1045. 2002-05-16 Tim Coleman <[email protected]>
  1046. * System.Data.SqlClient/SqlDataReader.cs:
  1047. Modify GetValues to use Array.Copy() to copy
  1048. the results from fields to values, rather than
  1049. an assignment, which results in loss of data.
  1050. 2002-05-16 Tim Coleman <[email protected]>
  1051. * System.Data/DataRow.cs:
  1052. More implementation and documentation. It should
  1053. work more like expected, although there is no way
  1054. to demonstrate this well yet. DataTable requires
  1055. more work.
  1056. 2002-05-15 Tim Coleman <[email protected]>
  1057. * System.Data/DataRow.cs:
  1058. Minor tweaks as I determine exactly how to
  1059. implement this class.
  1060. 2002-05-14 Duncan Mak <[email protected]>
  1061. * System.Data/DataTable.cs (NewRow): Added missing paren to fix build.
  1062. 2002-05-14 Tim Coleman
  1063. * System.Data/DataRow.cs:
  1064. * System.Data/DataRowBuilder.cs:
  1065. * System.Data/DataTable.cs:
  1066. More implementation of these classes. DataRow
  1067. can now (possibly) do some useful things.
  1068. Still not sure what DataRowBuilder is all about,
  1069. other than passing a DataTable in.
  1070. 2002-05-14 Tim Coleman
  1071. * System.Data/DataRowBuilder.cs:
  1072. Add stubb for this internal class.
  1073. 2002-05-13 Tim Coleman
  1074. * System.Data.Common/DbDataAdapter.cs:
  1075. The maxRecords check was not correct.
  1076. 2002-05-13 Tim Coleman
  1077. * System.Data/DataTableCollection.cs:
  1078. Fix an issue when adding a DataTable and size == 0.
  1079. Now explicitly checks if size > 0 before doing Array.Copy ()
  1080. * System.Data.Common/DbDataAdapter.cs:
  1081. Move closer to a working implementation.
  1082. Make the IDbCommand fields protected so that they can
  1083. be inherited.
  1084. * System.Data.SqlClient/SqlDataAdapter.cs:
  1085. This should inherit the IDbCommands instead of having its
  1086. own. An explicit cast is used to force conversion between
  1087. IDbCommand and SqlCommand
  1088. 2002-05-13 Tim Coleman
  1089. * System.Data.Common/DataTableMappingCollection.cs:
  1090. Some implementation to allow progress with DbDataAdapter
  1091. 2002-05-13 Tim Coleman
  1092. * System.Data.Common/DbDataAdapter.cs:
  1093. Modify to not break compile.
  1094. 2002-05-13 Tim Coleman
  1095. * System.Data.build:
  1096. include SqlDataAdapter, SqlRowUpdatedEventArgs,
  1097. SqlRowUpdatingEventArgs, SqlRowUpdatedEventHandler,
  1098. SqlRowUpdatingEventHandler in the build.
  1099. 2002-05-13 Tim Coleman
  1100. * System.Data.Common/DbDataAdapter.cs:
  1101. More implementation.
  1102. * System.Data.Common/DataAdapter.cs:
  1103. Correction of some of the stubbing, as well as a
  1104. little bit more implementation
  1105. 2002-05-11 Tim Coleman
  1106. * System.Data.SqlClient/SqlDataAdapter.cs:
  1107. * System.Data.Common/DbDataAdapter.cs:
  1108. Moved methods that weren't supposed to
  1109. be in SqlDataAdapter out. They should be implemented
  1110. in DbDataAdapter.
  1111. 2002-05-11 Tim Coleman
  1112. * System.Data.SqlClient/SqlDataAdapter.cs:
  1113. some implementation of this class. Note
  1114. that none of the functionality has been
  1115. tested yet, but I felt it should be checked
  1116. in at this point as it compiles.
  1117. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  1118. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  1119. Modified so that they will compile properly.
  1120. Needed to include SqlDataAdapter in the build.
  1121. 2002-05-11 Rodrigo Moya <[email protected]>
  1122. * System.Data/DataTable.cs (Clear): implemented.
  1123. (DataTable): removed repeated code in constructors, and call the
  1124. basic constructor from the others.
  1125. * System.Data/DataColumn.cs: some tweaks.
  1126. * System.Data/DataRow.cs (RowState): implemented.
  1127. (CancelEdit): set rowState property back to Unchanged.
  1128. (RejectChanges): call CancelEdit.
  1129. (Delete): set rowState to Deleted.
  1130. 2002-05-11 Daniel Morgan <[email protected]>
  1131. * System.Data.build: added copy of System.Data.dll to Test directory
  1132. for easy testing. Also, added clean for it too.
  1133. * System.Data.SqlClient/PostgresLibrary.cs: changed setting of boolean
  1134. from PostgreSQL data type to .NET type.
  1135. * System.Data.SqlClient/SqlDataReader.cs: beginnings
  1136. handling of a NULL value from the database
  1137. * Test/PostgresTest.cs: added tests for NULL values retrieved
  1138. from the database
  1139. * Test/ReadPostgresData.cs
  1140. * Test/TestExecuteScalar.cs
  1141. * Test/TestSqlDataReader.cs
  1142. * Test/TestSqlException.cs
  1143. * Test/TestSqlIsolationLevel.cs: updated tests to use databas user
  1144. "postgres". These tests may eventually be removed since they
  1145. are not flexible.
  1146. 2002-05-10 Rodrigo Moya <[email protected]>
  1147. * System.Data.build: removed reference to non-existant
  1148. TestDataColumn.cs file.
  1149. * System.Data/DataSet.cs: added some implementation.
  1150. 2002-05-09 Daniel Morgan <[email protected]>
  1151. * System.Data.SqlClient/PostgresLibrary.cs: got
  1152. PostgreSQL data types time, date, timestamp (DateTime like)
  1153. mapped to .NET System.DateTime working based
  1154. on ISO DateTime formatting "YYYY-MM-DD hh:mi:ss.ms"
  1155. Also mapped pg type boolean to .net Boolean
  1156. * SqlClient/SqlConnection.cs: run SQL command to set
  1157. Date style to ISO
  1158. * Test/PostgresTest.cs: added test for an UPDATE SQL command,
  1159. added tests for aggregates min(), max(), sum(), count(). could
  1160. not get avg() to work due to some formatting error; someone claimed
  1161. that it was my locale settings. added tests for SELECT of columns
  1162. of type boolean, float, double, date, time, and timestamp. They
  1163. have not been fully tested, but its a start.
  1164. 2002-05-09 Tim Coleman <[email protected]>
  1165. * System.Data.SqlTypes/SqlDecimal.cs: Implementations of
  1166. addition, subtraction, and multiplication for the
  1167. SqlDecimal type, as well as modification of some other
  1168. operations. More to come on this one.
  1169. 2002-05-08 Rodrigo Moya <[email protected]>
  1170. * Test/System.Data_test.build: excluded TestDataColumn, which
  1171. should be replaced with a nunit test.
  1172. * Test/TestDataColumn.cs: added basic test for DataColumn.cs.
  1173. 2002-05-07 Tim Coleman <[email protected]>
  1174. * SqlBinary.cs:
  1175. * SqlBoolean.cs:
  1176. * SqlByte.cs:
  1177. * SqlDateTime.cs:
  1178. * SqlDecimal.cs:
  1179. * SqlDouble.cs:
  1180. * SqlGuid.cs:
  1181. * SqlInt16.cs:
  1182. * SqlInt32.cs:
  1183. * SqlInt64.cs:
  1184. * SqlMoney.cs:
  1185. * SqlSingle.cs:
  1186. * SqlString.cs:
  1187. Fix the broken build I made before. Bad
  1188. me.
  1189. 2002-05-07 Tim Coleman <[email protected]>
  1190. * SqlString.cs:
  1191. Fix a symantic error I made in SqlString
  1192. Equals where I copied and pasted wrongly
  1193. 2002-05-07 Tim Coleman <[email protected]>
  1194. * INullable.cs:
  1195. * SqlBinary.cs:
  1196. * SqlBoolean.cs:
  1197. * SqlByte.cs:
  1198. * SqlCompareOptions.cs:
  1199. * SqlDateTime.cs:
  1200. * SqlDecimal.cs:
  1201. * SqlDouble.cs:
  1202. * SqlGuid.cs:
  1203. * SqlInt16.cs:
  1204. * SqlInt32.cs:
  1205. * SqlInt64.cs:
  1206. * SqlMoney.cs:
  1207. * SqlSingle.cs:
  1208. * SqlString.cs:
  1209. Implement CompareTo, Equals, and String conversions
  1210. for many types
  1211. 2002-05-05 Daniel Morgan <[email protected]>
  1212. * Test/PostgresTest.cs: modified to run completely. There
  1213. are many TODOs in System.Data, so not all data types are
  1214. included in the SELECT SQL query. Also, I made it to where
  1215. it would connect
  1216. using "host=localhost;dbname=test;user=postgres"
  1217. instead of my userid and password. When more types are included,
  1218. update this test.
  1219. 2002-05-05 Daniel Morgan <[email protected]>
  1220. * Test/PostgresTest.cs: added - ported
  1221. libgda postgres-test.c originally by
  1222. Gonzalo Paniagua Javier <[email protected]>
  1223. to C#.
  1224. 2002-05-05 Tim Coleman <[email protected]>
  1225. * System.Data.SqlTypes/SqlBinary.cs:
  1226. * System.Data.SqlTypes/SqlBoolean.cs:
  1227. * System.Data.SqlTypes/SqlByte.cs:
  1228. * System.Data.SqlTypes/SqlDateTime.cs:
  1229. * System.Data.SqlTypes/SqlDecimal.cs:
  1230. * System.Data.SqlTypes/SqlDouble.cs:
  1231. * System.Data.SqlTypes/SqlGuid.cs:
  1232. * System.Data.SqlTypes/SqlInt16.cs:
  1233. * System.Data.SqlTypes/SqlInt32.cs:
  1234. * System.Data.SqlTypes/SqlInt64.cs:
  1235. * System.Data.SqlTypes/SqlMoney.cs:
  1236. * System.Data.SqlTypes/SqlSingle.cs:
  1237. * System.Data.SqlTypes/SqlString.cs:
  1238. More implementation, and code clean-up for consistency.
  1239. Also, I had implemented many conversions as explicit
  1240. that should have been implicit. This should remove
  1241. many of the red X's and green pluses from the
  1242. System.Data.SqlTypes namespace.
  1243. 2002-05-05 Miguel de Icaza <[email protected]>
  1244. * System.Data/DataSet.cs: Remove [Serializable] attributes from
  1245. methods, those only apply to structs or classes.
  1246. Stub out ISerializable, ISupportInitialize, and IListSource methods
  1247. * System.Data/DataRowView.cs: Stub out interface methods for
  1248. IEditableObject, ICustomTypeDescriptor and IDataErrorInfo
  1249. * System.Data/DataView.cs: Comment out non-implemented
  1250. interfaces.
  1251. * System.Data/DataViewSettingsCollection.cs: Type cast variables
  1252. to the correct type to make it compile.
  1253. * System.Data/DataViewSettings.cs: remove reference to
  1254. non-existance type ApplyDefaultSort, it is a boolean.
  1255. 2002-05-05 Tim Coleman <[email protected]>
  1256. * System.Data.SqlTypes/SqlBinary.cs:
  1257. * System.Data.SqlTypes/SqlBoolean.cs:
  1258. * System.Data.SqlTypes/SqlByte.cs:
  1259. * System.Data.SqlTypes/SqlDecimal.cs:
  1260. * System.Data.SqlTypes/SqlDouble.cs:
  1261. * System.Data.SqlTypes/SqlGuid.cs:
  1262. * System.Data.SqlTypes/SqlInt16.cs:
  1263. * System.Data.SqlTypes/SqlInt32.cs:
  1264. * System.Data.SqlTypes/SqlInt64.cs:
  1265. * System.Data.SqlTypes/SqlMoney.cs:
  1266. * System.Data.SqlTypes/SqlSingle.cs:
  1267. * System.Data.SqlTypes/SqlString.cs:
  1268. Various fixes, including adding the SqlNullValueException
  1269. when trying to retrieve the value of a null SqlType,
  1270. and when casting values, a Null of type A converts to a
  1271. Null of type B.
  1272. 2002-05-04 Daniel Morgan <[email protected]>
  1273. * System.Data.SqlClient/PostgresLibrary.cs
  1274. * System.Data.SqlClient/SqlCommand.cs
  1275. * System.Data.SqlClient/SqlConnection.cs
  1276. * System.Data.SqlClient/SqlDataReader.cs
  1277. oid should not be hard coded because they
  1278. can change from one version of PostgreSQL
  1279. to the next. Use the typname's instead.
  1280. The PostgreSQL type data retrieves
  1281. at database connection time. Any unimplemented
  1282. types just default to string. These were things
  1283. suggested by Gonzalo.
  1284. * Test/ReadPostgresData.cs - stuff
  1285. * Test/TestSqlDataReader.cs - stuff
  1286. * System.Data.SqlTypes/SqlInt32.cs - added a using
  1287. 2002-05-03 Tim Coleman <[email protected]>
  1288. * System.Data.build: Fix the build so that test depends on build
  1289. 2002-05-03 Tim Coleman <[email protected]>
  1290. * System.Data.SqlTypes/SqlByte.cs:
  1291. * System.Data.SqlTypes/SqlDateTime.cs:
  1292. * System.Data.SqlTypes/SqlDecimal.cs:
  1293. * System.Data.SqlTypes/SqlDouble.cs:
  1294. * System.Data.SqlTypes/SqlGuid.cs:
  1295. * System.Data.SqlTypes/SqlInt16.cs:
  1296. * System.Data.SqlTypes/SqlInt64.cs:
  1297. * System.Data.SqlTypes/SqlMoney.cs:
  1298. * System.Data.SqlTypes/SqlSingle.cs:
  1299. These files were mysteriously excluded from the last
  1300. patch I made and sent to Rodrigo
  1301. * System.Data.build: include the System.Data.SqlTypes in the build
  1302. 2002-05-03 Daniel Morgan <[email protected]>
  1303. * System.Data.build: removed comments
  1304. * System.Data.SqlClient/PostgresLibrary.cs: changed
  1305. the hard-coded PostgreSQL oid type int's to using an
  1306. enum. Also, added PostgreSQL bpchar (character) type.
  1307. * Test/TestSqlDataReader.cs: updated test
  1308. to include new bpchar PostgreSQL type
  1309. 2002-05-03 Rodrigo Moya <[email protected]>
  1310. * System.Data.SqlTypes/SqlBinary.cs:
  1311. * System.Data.SqlTypes/SqlBoolean.cs:
  1312. * System.Data.SqlTypes/SqlInt32.cs:
  1313. * System.Data.SqlTypes/SqlString.cs: more implementation, by
  1314. Tim Coleman <[email protected]>.
  1315. 2002-05-03 Daniel Morgan <[email protected]>
  1316. * Test/TestExecuteScalar.cs: added test for
  1317. method ExecuteScalar in class SqlCommand.
  1318. * System.Data/DataColumnCollection.cs - it should
  1319. inherit properties from base InternalDataCollectionBase
  1320. and use them instead of overriding them, such as, List.
  1321. * System.Data/DataColumn.cs
  1322. * System.Data/DataTable.cs: tweaks to retrieve
  1323. meta data from the database
  1324. * System.Data.SqlClient/PostgresLibrary.cs -
  1325. added method OidToType to convert PostgreSQL oid type
  1326. to System.Type. Renamed method OidTypeToSystem
  1327. to ConvertPgTypeToSystem for converting the data value
  1328. from a PostgreSQL type to a .NET System type.
  1329. * System.Data.SqlClient/SqlCommand.cs: implemented
  1330. method ExecuteReader which returns a SqlDataReader
  1331. for a light forward only read only result set.
  1332. It works on types int4 ==> Int32 and
  1333. varchar ==> String. Other types
  1334. will come later.
  1335. * System.Data.SqlClient/SqlConnection.cs: added comment
  1336. * System.Data.SqlClient/SqlDataReader.cs: implemented
  1337. class. It works, but still lots to do.
  1338. * Test/ReadPostgresData.cs: stuff
  1339. * Test/TestSqlDataReader.cs: updated test for SqlDataReader
  1340. to display meta data and the data
  1341. 2002-05-03 Duncan Mak <[email protected]>
  1342. * TODO: Took out all the Exceptions. They should be all done now.
  1343. * System.Data/ConstraintException.cs:
  1344. * System.Data/DBConcurrencyException.cs:
  1345. * System.Data/DataException.cs:
  1346. * System.Data/DeletedRowInaccessibleException.cs:
  1347. * System.Data/DuplicateNameException.cs:
  1348. * System.Data/EvaluateException.cs:
  1349. * System.Data/InRowChangingEventException.cs:
  1350. * System.Data/InvalidConstraintException.cs:
  1351. * System.Data/InvalidExpressionException.cs:
  1352. * System.Data/MissingPrimaryKeyException.cs:
  1353. * System.Data/NoNullAllowedException.cs:
  1354. * System.Data/ReadOnlyException.cs:
  1355. * System.Data/RowNotInTableException.cs:
  1356. * System.Data/StrongTypingException.cs:
  1357. * System.Data/SyntaxErrorException.cs:
  1358. * System.Data/TypeDataSetGeneratorException.cs:
  1359. * System.Data/VersionNotFoundException.cs: Added to CVS.
  1360. * System.Data.SqlTypes/SqlNullValueException.cs:
  1361. * System.Data.SqlTypes/SqlTruncateException.cs:
  1362. * System.Data.SqlTypes/SqlTypeException.cs: Added to CVS.
  1363. 2002-05-02 Rodrigo Moya <[email protected]>
  1364. * System.Data/DataViewSettingCollection.cs: implemented.
  1365. * System.Data/DataRowView.cs: new stubs.
  1366. * System.Data.SqlTypes/SqlByte.cs:
  1367. * System.Data.SqlTypes/SqlDateTime.cs:
  1368. * System.Data.SqlTypes/SqlDecimal.cs:
  1369. * System.Data.SqlTypes/SqlDouble.cs:
  1370. * System.Data.SqlTypes/SqlGuid.cs:
  1371. * System.Data.SqlTypes/SqlInt16.cs:
  1372. * System.Data.SqlTypes/SqlInt64.cs:
  1373. * System.Data.SqlTypes/SqlMoney.cs:
  1374. * System.Data.SqlTypes/SqlSingle.cs: new stubs, contributed
  1375. by Tim Coleman <[email protected]>
  1376. * System.Data.build: excluded newly-added files.
  1377. 2002-05-02 Daniel Morgan <[email protected]>
  1378. * System.Data.SqlClient/PostgresLibrary.cs: included new
  1379. internal class that will be a helper class in using
  1380. PostgreSQL. PostgresLibrary is used for the
  1381. pinvoke methods to the PostgreSQL Client
  1382. native C library libpq while the class PostgresHelper
  1383. is used for wrapper or helper methods. It currently only
  1384. has one static method OidTypeToSystem in converting
  1385. PostgreSQL types to .NET System.<type>s, such as,
  1386. a PostgreSQL int8 becomes a .NET System.Int64.
  1387. Only a few types have been added, such as, int2,
  1388. int4, int8, varchar, text, bool, and char. Other types
  1389. will come later.
  1390. * System.Data.SqlClient/SqlCommand.cs: implemented
  1391. method ExecuteScalar which allows us to do aggregate
  1392. functions, such as, count, avg, min, max, and sum. We
  1393. also are able to retrieve the result, convert it to the .NET type
  1394. as an object. The user of the returned object must explicitly cast.
  1395. * Test/ReadPostgresData.cs: updated sample
  1396. to help us learn to retrieve data in System.Data.SqlClient
  1397. classes
  1398. 2002-05-01 Daniel Morgan <[email protected]>
  1399. * System.Data.build: added /nowarn: nnnn arguments
  1400. so you will not get a ton of warnings. The warnings
  1401. being excluded are: 1595, 0067, 0109, 0169, and 0649
  1402. 2002-05-01 Daniel Morgan <[email protected]>
  1403. * System.Data.build: modified to exclude more
  1404. files from the build
  1405. 2002-05-01 Rodrigo Moya <[email protected]>
  1406. * System.Data.SqlClient/SqlClientPermission.cs: added missing
  1407. 'using's.
  1408. * System.Data/MergeFailedEventArgs.cs: new class, contributed
  1409. by John Dugaw <[email protected]>.
  1410. * System.Data.build: excluded new files from build.
  1411. 2002-04-29 Daniel Morgan <[email protected]>
  1412. * Test/ReadPostgresData.cs: added - Uses the
  1413. PostgresLibrary to retrieve a recordset.
  1414. This is not meant to be used in Production, but as a
  1415. learning aid in coding
  1416. class System.Data.SqlClient.SqlDataReader.
  1417. This sample does work.
  1418. * Test/TestSqlDataReader.cs: added - used
  1419. to test SqlDataReader (does not work yet)
  1420. Forgot to add to ChangeLog on last commit.
  1421. 2002-04-28 Rodrigo Moya <[email protected]>
  1422. * System.Data/DataViewSetting.cs: new class.
  1423. 2002-04-28 Rodrigo Moya <[email protected]>
  1424. * System.Data/DataViewManager.cs: new class.
  1425. * System.Data.SqlTypes/INullable.cs: properties for interfaces
  1426. don't have implementation.
  1427. * System.Data.SqlTypes/SqlInt32.cs:
  1428. * System.Data.SqlTypes/SqlString.cs:
  1429. * System.Data.SqlTypes/SqlBoolean.cs: removed destructor, since
  1430. these are strctures.
  1431. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: added
  1432. missing 'using's.
  1433. 2002-04-28 Rodrigo Moya <[email protected]>
  1434. * System.Data/DataTableRelationCollection.cs: use 'new' keyword
  1435. for correctly hiding parent class' members.
  1436. (AddRange): use 'override' keyword on overriden method.
  1437. (Clear): likewise.
  1438. (Contains): likewise.
  1439. (IndexOf): likewise.
  1440. (OnCollectionChanged): likewise.
  1441. (OnCollectionChanging): likewise.
  1442. (RemoveCore): likewise.
  1443. * System.Data/DataColumnCollection.cs: use 'new' keyword.
  1444. * System.Data/DataSet.cs: added missing 'using's.
  1445. 2002-04-28 Rodrigo Moya <[email protected]>
  1446. * System.Data/DataSet.cs:
  1447. * System.Data/DataTableCollection.cs:
  1448. * System.Data/DataView.cs: compilation fixes on Linux.
  1449. 2002-04-28 Daniel Morgan <[email protected]>
  1450. * System.Data/DataRelation.cs
  1451. * System.Data/ForeignKeyConstraint.cs
  1452. * System.Data/UniqueConstraint.cs: added more stubs
  1453. * System.Data/DataTableRelationCollection.cs: added back to cvs
  1454. and modified for compile errors. DataRelationCollection is an
  1455. abstract class and there must be a class that implements for
  1456. DataTable/DataSet. DataTableRelationCollection was changed
  1457. to an internal class.
  1458. * System.Data.build: modified - new files added
  1459. also wanted to include files/classes in the build
  1460. so we can get a compilable forward read only result set.
  1461. It compiles now using csc/nant with warnings, but this
  1462. is a start for adding functionality for the result set.
  1463. Classes associated with/and DataSet are still excluded.
  1464. * TODO: modified - updated to do list for System.Data
  1465. * System.Data/Constraint.cs
  1466. * System.Data/ConstraintCollection.cs
  1467. * System.Data/DataRelationCollection.cs
  1468. * System.Data/DataRow.cs
  1469. * System.Data/DataRowChangeEventArgs.cs
  1470. * System.Data/DataRowCollection.cs
  1471. * System.Data/DataTable.cs
  1472. * System.Data/DataTableCollection.cs
  1473. * System.Data/InternalDataCollectionBase.cs
  1474. * System.Data/PropertyCollection.cs: modified -
  1475. changes to compile SqlDataReader/DataTable and
  1476. dependencies
  1477. * System.Data/IDbCommand.cs
  1478. * System.Data.SqlClient/SqlCommand.cs: modified -
  1479. un-commented overloaded methods ExecuteReader
  1480. which returns a SqlDataReader
  1481. 2002-04-28 Rodrigo Moya <[email protected]>
  1482. * System.Data/DataTableCollection.cs: more implementation.
  1483. (Count): added 'override' keyword, as pointer out by Martin.
  1484. * System.Data.Common/DataColumnMappingCollection.cs (Add, AddRange):
  1485. only call Array.Copy when there is really stuff to be copied.
  1486. (CopyTo): don't create the temporary array, it's not needed.
  1487. * System.Data.build: excluded newly added file from build.
  1488. 2002-04-27 Rodrigo Moya <[email protected]>
  1489. * System.Data/DataTableRelationCollection.cs: removed, it's not
  1490. on MS SDK documentation.
  1491. * System.Data/DataTableCollection.cs: new class.
  1492. 2002-04-27 Daniel Morgan <[email protected]>
  1493. * System.Data/DataRowChangeEventArgs.cs
  1494. * System.Data/DataRowCollection.cs
  1495. * System.Data/DataView.cs
  1496. * System.Data/PropertyCollection.cs: added new stubs
  1497. * System.Data.build: modified - added new files to exclude
  1498. from build
  1499. * TODO: modified - removed files from TODO list
  1500. that were stubbed above
  1501. * System.Data/DataColumn.cs
  1502. * System.Data/DataRow.cs: modified - various tweaks
  1503. and added internal method SetTable to set the reference
  1504. to a DataTable
  1505. * System.Data/DataSet.cs: modified - class was not
  1506. completely stubbed.
  1507. * System.Data/DataTable.cs: modified - temporarily commented
  1508. DataSet and DataView references - trying to compile a SqlDataReader,
  1509. DataTable, and dependencies for a forward read-only result set.
  1510. SqlDataAdapter, DataSet, and DataView will come later once we can get
  1511. a forward read only result set working.
  1512. * System.Data/IDataRecord.cs: modified - source code lines should
  1513. not be > 80
  1514. * System.Data/InternalDataCollectionBase.cs: modified - started
  1515. implementing this base class for collection of data rows,
  1516. columns, tables, relations, and constraints
  1517. * System.Data.SqlClient/SqlException.cs: modified -
  1518. call base(message) so a unhandled exception displays
  1519. the message of a SQL error instead of the
  1520. default SystemException message
  1521. * Test/TestSqlException.cs: modified -
  1522. handle the rollback properly for a SqlException on a
  1523. failure to connect
  1524. 2002-04-23 Daniel Morgan <[email protected]>
  1525. * System.Data.build: modified - added new
  1526. files to exclude from build
  1527. * System.Data/Constraint.cs
  1528. * System.Data/ConstraintCollection.cs
  1529. * System.Data/InternalDataCollectionBase.cs: added -
  1530. stubs which are needed to build DataTable.cs
  1531. * TODO: modified - added more classes TODO and
  1532. added more stuff TODO, such as, create script
  1533. to create test database monotestdb for testing
  1534. classes in System.Data
  1535. 2002-04-23 Rodrigo Moya <[email protected]>
  1536. * System.Data.Common/DataAdapter.cs:
  1537. * System.Data.Common/DataColumnMappingCollection.cs:
  1538. * System.Data.Common/DataTableMappingCollection.cs:
  1539. * System.Data.Common/DbDataPermission.cs:
  1540. * System.Data.Common/DbDataPermissionAttribute.cs: some
  1541. compilation errors fixed.
  1542. 2002-04-23 Daniel Morgan <[email protected]>
  1543. * TODO: modified - added classes TODO, and
  1544. a poor attempt at System.Data plan
  1545. 2002-04-23 Daniel Morgan <[email protected]>
  1546. * ChangeLog: modified - put tabs where they belong
  1547. * System.Data.SqlClient/SqlDataReader.cs
  1548. * System.Data/DataColumn.cs: modified - compile errors
  1549. trying to compile SqlDataAdapter and dependencies
  1550. 2002-04-23 Daniel Morgan <[email protected]>
  1551. * System.Data.SqlTypes/SqlBoolean.cs
  1552. * System.Data.SqlTypes/SqlCompareOptions.cs
  1553. * System.Data.SqlTypes/SqlInt32.cs
  1554. * System.Data.SqlTypes/SqlString.cs: added - new stubs
  1555. * System.Data/DataTable.cs
  1556. * System.Data.SqlClient/SqlCommand.cs
  1557. * System.Data.SqlClient/SqlConnection.cs
  1558. * System.Data.SqlClient/SqlError.cs
  1559. * System.Data.SqlClient/SqlTransaction.cs: modified -
  1560. misc. tweaks
  1561. * System.Data.SqlClient/SqlException.cs: modified -
  1562. missing Message on indexer for Message property
  1563. 2002-04-21 Daniel Morgan <[email protected]>
  1564. * System.Data.SqlClient/SqlCommand.cs: modified - to
  1565. compile using mcs. This problem is
  1566. returning a stronger type in csc vs. msc
  1567. * System.Data.SqlClient/SqlConnection.cs: modified - msc
  1568. can not do a using PGconn = IntPtr; and then declare
  1569. with PGconn pgConn = IntPtr.Zero;
  1570. Thiw works under csc though. Had to comment using and
  1571. changed declaration to IntPtr pgConn = IntPtr.Zero;
  1572. Also, got rid of compile warnings for hostaddr and port.
  1573. * System.Data.SqlClient/SqlErrorCollection.cs: modified - got
  1574. rid of compile warnings. Commented MonoTODO attribute because mcs
  1575. doesn't seem to work with C# array property indexer (Item)
  1576. this[int index]
  1577. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  1578. commented MonoTODO attribute for indexer for mcs compiling
  1579. * Test/TestSqlIsolationLevel.cs:
  1580. * Test/TestSqlInsert.cs:
  1581. * Test/TestSqlException.cs: modified -
  1582. removed extra ExecuteNonQuery which caused two inserted rows
  1583. 2002-04-20 Daniel Morgan <[email protected]>
  1584. * System.Data/StateChangeEventArgs.cs - added
  1585. needed to compile System.Data.dll with mcs.
  1586. 2002-04-20 Daniel Morgan <[email protected]>
  1587. * System.Data.OleDb: added directory - for OleDb database
  1588. provider classes
  1589. * System.Data.SqlClient/SqlClientPermission.cs
  1590. * System.Data.SqlClient/SqlClientPermissionAttribute.cs
  1591. * System.Data.SqlClient/SqlCommandBuilder.cs
  1592. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs
  1593. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs
  1594. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs
  1595. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs
  1596. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs
  1597. * Test/TestSqlException.cs
  1598. * Test/TestSqlIsolationLevel.cs: added - more tests
  1599. * System.Data.build: modified - added new files - excludes these too
  1600. * System.Data.SqlClient/PostgresLibrary.cs - modified - comment
  1601. * System.Data.SqlClient/SqlConnection.cs
  1602. * System.Data.SqlClient/SqlCommand.cs
  1603. * System.Data.SqlClient/SqlTransaction.cs
  1604. * System.Data.SqlClient/SqlException.cs
  1605. * System.Data.SqlClient/SqlErrorCollection.cs
  1606. * System.Data.SqlClient/SqlError.cs: modified - transaction and
  1607. exception/error handling. SqlConnection(connectionString)
  1608. constructor should not automatically connect.
  1609. * System.Data.SqlClient/SqlDataReader.cs
  1610. * System.Data.SqlClient/SqlDataAdapter.cs
  1611. * System.Data.SqlClient/SqlParameter.cs
  1612. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  1613. added using System.ComponentModel;
  1614. * Test/TestSqlInsert.cs: modified - to use transaction
  1615. 2002-04-17 Rodrigo Moya <[email protected]>
  1616. * System.Data/DataRow.cs: new skeletons.
  1617. * System.Data.Common/DataAdapter.cs:
  1618. * System.Data.Common/DataColumnMapping.cs:
  1619. * System.Data.Common/DataColumnMappingCollection.cs:
  1620. * System.Data.Common/DataTableMapping.cs:
  1621. * System.Data.Common/DataTableMappingCollection.cs:
  1622. * System.Data.Common/DbDataAdapter.cs:
  1623. * System.Data.Common/RowUpdatedEventArgs.cs:
  1624. * System.Data.SqlClient/SqlDataAdapter.cs:
  1625. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: compilation
  1626. fixes for Linux.
  1627. * System.Data.Common/DbDataRecord.cs:
  1628. * System.Data.Common/DbEnumerator.cs: removed MS implementation
  1629. internal classes.
  1630. 2002-04-17 Daniel Morgan <[email protected]>
  1631. * Test/TestSqlInsert.cs: modified - do
  1632. a SQL DELETE before SQL INSERT of row so you can use this
  1633. test over and over.
  1634. * System.Data.SqlClient/SqlTransaction.cs: modified - default
  1635. IsolationLevel for PostgreSQL is ReadCommitted. However,
  1636. PostgreSQL allows Serializable as well.
  1637. (Thanks to Gonzalo for that!)
  1638. * System.Data.SqlClient/SqlConnection.cs: modified
  1639. * System.Data.SqlClient/SqlCommand.cs: modified
  1640. * System.Data.SqlClient/SqlTransaction.cs: modified - got transactions
  1641. working; however, we still need to implement SQL errors
  1642. and exceptions to properly handle transactions. Also, added
  1643. status and error message support from the PostgreSQL database.
  1644. Currently, this does a Console.WriteLine() to display the
  1645. status and error messages, but this is a TODO
  1646. for SQL errors and exceptions.
  1647. * System.Data/TODOAttribute.cs: added - needed MonoTODO
  1648. attribute for System.Data.dll assembly
  1649. * System.Data/IDbCommand.cs: modified - commented
  1650. overloaded method ExecuteReader
  1651. so System.Data.SqlClient.SqlCommand can compile
  1652. * System.Data/IDbCommand.cs: modified
  1653. * System.Data/IDbConnection.cs: modified - added using System;
  1654. * System.Data/IDataParameter.cs
  1655. * System.Data.build: modified - build classes
  1656. in System.Data.SqlClient and exclude others in System.Data
  1657. * System.Data.SqlClient/PostgresLibrary.cs: modified - change
  1658. parameter data type from IntPtr to enum ExecStatusType
  1659. * ChangeLog: modified - corrected previous entries in log
  1660. 2002-04-16 Rodrigo Moya <[email protected]>
  1661. * System.Data.Common/DataColumnMappingCollection.cs: added basic
  1662. implementation. Still missing some stuff.
  1663. 2002-04-16 Daniel Morgan <[email protected]>
  1664. * System.Data.SqlClient/SqlConnection.cs: modified - got
  1665. to compile, run, and connect to PostgreSQL database
  1666. * System.Data.SqlClient/SqlCommand.cs: modified - got
  1667. to compile, run, and execute a SQL INSERT command
  1668. which successfully inserted a row
  1669. into the PostgreSQL database
  1670. * System.Data.SqlClient/SqlTransaction.cs: modified
  1671. * System.Data.SqlClient/SqlParameter.cs: modified
  1672. * System.Data.SqlClient/SqlParameterCollection.cs: modified
  1673. * System.Data.SqlClient/SqlError.cs: modified
  1674. * System.Data.SqlClient/SqlErrorCollection.cs: modified
  1675. * System.Data.SqlClient/SqlException.cs: modified
  1676. * System.Data.SqlClient/PostgresLibrary.cs: modified - to compile
  1677. * System.Data.SqlClient/SqlAdapter: modified
  1678. * System.Data.SqlClient/SqlReader: modified - add more stubs
  1679. 2002-04-16 Daniel Morgan <[email protected]>
  1680. * Test/TestSqlInsert.cs: added
  1681. 2002-04-15 Daniel Morgan <[email protected]>
  1682. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: added - using in
  1683. class SqlConnecition
  1684. * System.Data.SqlClient/SqlErrorCollection.cs: added
  1685. * System.Data.SqlClient/SqlErrors.cs: removed - no such class SqlErrors
  1686. 2002-04-15 Christopher Podurgiel <[email protected]>
  1687. * System.Data.IDbDataParameter: Added Interface to IDataParameter.
  1688. * System.Data.IDbTransaction: Added Interface to IDisposable.
  1689. * System.Data.IDbCommand: Fixed Capitalization of class name.
  1690. * System.Data.IDbConnection: Fixed Capitalization of class name.
  1691. 2002-04-15 Rodrigo Moya <[email protected]>
  1692. * System.Data.Common/DbDataPermissionAttribute.cs:
  1693. * System.Data.Common/DataAdapter.cs:
  1694. * System.Data.Common/DataColumnMapping.cs:
  1695. * System.Data.Common/DbDataPermission.cs: added some implementation.
  1696. 2002-04-15 Rodrigo Moya <[email protected]>
  1697. * System.Data.SqlClient/SqlConnection.cs: fixed constructor chaining
  1698. syntax, as pointed out by Levent Camlibel.
  1699. 2002-04-14 Rodrigo Moya <[email protected]>
  1700. * System.Data.SqlTypes/SqlBinary.cs:
  1701. * System.Data.SqlTypes/INullable.cs: new skeletons.
  1702. 2002-04-14 Daniel Morgan <[email protected]>
  1703. * System.Data.SqlClient/PostgresLibrary.cs: new internal class, which
  1704. contains all calls the the PostgreSQL client library, to be used
  1705. everywhere in System.Data.SqlClient.
  1706. 2002-03-30 Rodrigo Moya <[email protected]>
  1707. * System.Data.SqlClient/SqlConnection.cs: implemented basic
  1708. constructors.
  1709. * System.Data.SqlTypes/SqlNullValueException.cs: new skeletons.
  1710. 2002-03-29 Rodrigo Moya <[email protected]>
  1711. * System.Data.Common/DbDataRecord.cs:
  1712. * System.Data.Common/DbEnumerator.cs:
  1713. * System.Data.Common/RowUpdatedEventArgs.cs:
  1714. * System.Data.Common/RowUpdatingEventArgs.cs:
  1715. * System.Data.Common/DbDataPermissionAttribute.cs: new skeletons.
  1716. 2002-03-28 Rodrigo Moya <[email protected]>
  1717. * System.Data.Common/DataTableMappingCollection.cs:
  1718. * System.Data.Common/DbDataAdapter.cs:
  1719. * System.Data.Common/DbDataPermission.cs:
  1720. * System.Data.Common/DataTableMapping.cs: new skeletons.
  1721. * System.Data.SqlClient/SqlDataAdapter.cs:
  1722. * System.Data.SqlClient/SqlDataReader.cs:
  1723. * System.Data.SqlClient/SqlErrors.cs:
  1724. * System.Data.SqlClient/SqlError.cs:
  1725. * System.Data.SqlClient/SqlException.cs:
  1726. * System.Data.SqlClient/SqlParameter.cs:
  1727. * System.Data.SqlClient/SqlParameterCollection.cs:
  1728. * System.Data.SqlClient/SqlTransaction.cs:
  1729. * System.Data.SqlClient/SqlCommand.cs: fixed skeletons.
  1730. 2002-03-27 Rodrigo Moya <[email protected]>
  1731. * System.Data.Common/DataColumnMapping.cs:
  1732. * System.Data.Common/DataColumnMappingCollection.cs:
  1733. * System.Data.Common/DataAdapter.cs: created skeletons.
  1734. * System.Data.build: exclude new directories from build.
  1735. 2002-03-27 Rodrigo Moya <[email protected]>
  1736. * System.Data.SqlClient/SqlTransaction.cs: started implementation.
  1737. * System.Data.SqlClient/SqlConnection.cs (BeginTransaction):
  1738. implemented (2 methods).
  1739. 2002-03-24 Duncan Mak <[email protected]>
  1740. * System.Data.build: Excluded System.Data.SqlClient from the build.
  1741. The stubs are incomplete and they are stopping the build.
  1742. * System.Data.SqlClient/SqlCommand.cs: Replaced 'implements' with ':'.
  1743. 2002-03-24 Rodrigo Moya <[email protected]>
  1744. * System.Data.SqlClient/*: added skeletons for the SQL managed
  1745. provider for ADO.Net, to be based initially in PostgreSQL.
  1746. 2002-03-15 Christopher Podurgiel <[email protected]>
  1747. Changed the Namespace on some Enums from mono.System.Data to System.Data
  1748. 2002-03-01 Christopher Podurgiel <[email protected]>
  1749. * DataColumnCollection.cs : When an existing DataColumn is added, will now Assign a
  1750. default name if the ColumnName is null.
  1751. * DataSet.cs : Added
  1752. * DataTable.cs : Added
  1753. * DataRelationCollection.cs : Added
  1754. * DataTableRelationCollection.cs : Added
  1755. * DataColumn : Added
  1756. 2002-02-11 Christopher Podurgiel <[email protected]>
  1757. * DataColumnChangeEventArgs.cs : Added
  1758. * DataColumnCollection.cs : Added
  1759. 2002-02-10 Christopher Podurgiel <[email protected]>
  1760. * Removed *.cs from System.Data as the correct files are in mcs/class/System.Data/System.Data
  1761. * Updated all Enums, Interfaces, and Delegates in System.Data