ChangeLog 110 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162
  1. 2005-05-30 BorisKirzner <[email protected]>
  2. * System.Data.SqlClient.jvm
  3. * System.Data.Configuration.jvm
  4. * System.Data.ProviderBase.jvm
  5. * System.Data.SqlTypes.jvm
  6. * System.Data.OleDb.jvm
  7. Added copyrigth information to all sources.
  8. 2005-05-30 BorisKirzner <[email protected]>
  9. * System.Data : new folders added :
  10. - System.Data.SqlClient.jvm
  11. - System.Data.Configuration.jvm
  12. - System.Data.SqlTypes.jvm
  13. - System.Data.OleDb.jvm
  14. * System.Data.vmwcsproj : TARGET_JVM project file added
  15. * System.Data.sln : TARGET_JVM solution file added
  16. * System.Data.SqlClient.jvm/SqlDataReader.cs
  17. * System.Data.SqlClient.jvm/SqlParameterCollection.cs
  18. * System.Data.SqlClient.jvm/SqlRowUpdatedEventArgs.cs
  19. * System.Data.SqlClient.jvm/SqlException.cs
  20. * System.Data.SqlClient.jvm/SqlConnection.cs
  21. * System.Data.SqlClient.jvm/SqlInfoMessageEventHandler.cs
  22. * System.Data.SqlClient.jvm/SqlStringManager.cs
  23. * System.Data.SqlClient.jvm/SqlRowUpdatingEventHandler.cs
  24. * System.Data.SqlClient.jvm/SqlErrorCollection.cs
  25. * System.Data.SqlClient.jvm/SqlParameterConverter.cs
  26. * System.Data.SqlClient.jvm/MetaType.cs
  27. * System.Data.SqlClient.jvm/SqlDataAdapter.cs
  28. * System.Data.SqlClient.jvm/SqlConnection.resx
  29. * System.Data.SqlClient.jvm/SqlClientPermissionAttribute.cs
  30. * System.Data.SqlClient.jvm/SqlRowUpdatedEventHandler.cs
  31. * System.Data.SqlClient.jvm/SqlCommand.cs
  32. * System.Data.SqlClient.jvm/SqlInfoMessageEventArgs.cs
  33. * System.Data.SqlClient.jvm/SqlConvert.cs
  34. * System.Data.SqlClient.jvm/SqlParameter.cs
  35. * System.Data.SqlClient.jvm/SqlRowUpdatingEventArgs.cs
  36. * System.Data.SqlClient.jvm/SqlCollation.cs
  37. * System.Data.SqlClient.jvm/ISqlNotificationReceiver.cs
  38. * System.Data.SqlClient.jvm/SqlCommandBuilder.cs
  39. * System.Data.SqlClient.jvm/SqlTransaction.cs
  40. * System.Data.SqlClient.jvm/SqlClientPermission.cs
  41. * System.Data.SqlClient.jvm/SqlXmlTextReader.cs
  42. * System.Data.SqlClient.jvm/SqlError.cs
  43. * System.Data.SqlClient.jvm/SqlConnectionPool.cs
  44. * System.Data.SqlClient.jvm/SqlCommand.resx
  45. * System.Data.SqlClient.jvm/SqlResultSet.cs
  46. * System.Data.Configuration.jvm/ObjectNameResolutionSectionHandler.cs
  47. * System.Data.Configuration.jvm/GlobalConfig.cs
  48. * System.Data.Configuration.jvm/ObjectNameResolversCollection.cs
  49. * System.Data.Configuration.jvm/ObjectNameResolver.cs
  50. * System.Data.SqlTypes.jvm/SqlDateTime.cs
  51. * System.Data.SqlTypes.jvm/SqlTime.cs
  52. * System.Data.SqlTypes.jvm/SqlDecimal.cs
  53. * System.Data.SqlTypes.jvm/SqlInt32.cs
  54. * System.Data.SqlTypes.jvm/SqlTypeException.cs
  55. * System.Data.SqlTypes.jvm/SqlChars.cs
  56. * System.Data.SqlTypes.jvm/SqlInt16.cs
  57. * System.Data.SqlTypes.jvm/SqlCompareOptions.cs
  58. * System.Data.SqlTypes.jvm/SqlByte.cs
  59. * System.Data.SqlTypes.jvm/SqlInt64.cs
  60. * System.Data.SqlTypes.jvm/SqlTruncateException.cs
  61. * System.Data.SqlTypes.jvm/SqlString.cs
  62. * System.Data.SqlTypes.jvm/SqlUtcDateTime.cs
  63. * System.Data.SqlTypes.jvm/SqlDouble.cs
  64. * System.Data.SqlTypes.jvm/SqlStreamChars.cs
  65. * System.Data.SqlTypes.jvm/SqlDate.cs
  66. * System.Data.SqlTypes.jvm/SqlBoolean.cs
  67. * System.Data.SqlTypes.jvm/SqlSingle.cs
  68. * System.Data.SqlTypes.jvm/SqlXmlReader.cs
  69. * System.Data.SqlTypes.jvm/SqlBinary.cs
  70. * System.Data.SqlTypes.jvm/SqlBytes.cs
  71. * System.Data.SqlTypes.jvm/SqlNullValueException.cs
  72. * System.Data.SqlTypes.jvm/SqlMoney.cs
  73. * System.Data.SqlTypes.jvm/INullable.cs
  74. * System.Data.SqlTypes.jvm/SqlGuid.cs
  75. * System.Data.ProviderBase.jvm/OleDbStrings.resx
  76. * System.Data.ProviderBase.jvm/AbstractDataReader.cs
  77. * System.Data.ProviderBase.jvm/ParameterMetadataWrapper.cs
  78. * System.Data.ProviderBase.jvm/AbstractDbError.cs
  79. * System.Data.ProviderBase.jvm/SqlClientStrings.resx
  80. * System.Data.ProviderBase.jvm/AbstractDbParameterCollection.cs
  81. * System.Data.ProviderBase.jvm/AbstractDbException.cs
  82. * System.Data.ProviderBase.jvm/AbstractDBConnection.cs
  83. * System.Data.ProviderBase.jvm/AbstractDbErrorCollection.cs
  84. * System.Data.ProviderBase.jvm/DbStringManager.cs
  85. * System.Data.ProviderBase.jvm/AbstractDbCommand.cs
  86. * System.Data.ProviderBase.jvm/AbstractDBCommand.cs
  87. * System.Data.ProviderBase.jvm/AbstractTransaction.cs
  88. * System.Data.ProviderBase.jvm/AbstractDBParameter.cs
  89. * System.Data.ProviderBase.jvm/AbstractDbParameter.cs
  90. * System.Data.ProviderBase.jvm/regex.cs
  91. * System.Data.OleDb.jvm/OleDbErrorCollection.cs
  92. * System.Data.OleDb.jvm/OleDbSchemaGuid.cs
  93. * System.Data.OleDb.jvm/OleDbDataAdapter.cs
  94. * System.Data.OleDb.jvm/OleDbPermissionAttribute.cs
  95. * System.Data.OleDb.jvm/libgda.cs
  96. * System.Data.OleDb.jvm/OleDbRowUpdatedEventHandler.cs
  97. * System.Data.OleDb.jvm/OleDbCommand.cs
  98. * System.Data.OleDb.jvm/OleDbInfoMessageEventArgs.cs
  99. * System.Data.OleDb.jvm/OleDbConvert.cs
  100. * System.Data.OleDb.jvm/OleDbParameter.cs
  101. * System.Data.OleDb.jvm/OleDbType.cs
  102. * System.Data.OleDb.jvm/OleDbOracleDataReader.cs
  103. * System.Data.OleDb.jvm/OleDbRowUpdatingEventArgs.cs
  104. * System.Data.OleDb.jvm/OleDbCommandBuilder.cs
  105. * System.Data.OleDb.jvm/OleDbTransaction.cs
  106. * System.Data.OleDb.jvm/OleDbConnectionFactory.cs
  107. * System.Data.OleDb.jvm/OleDbPermission.cs
  108. * System.Data.OleDb.jvm/OleDbError.cs
  109. * System.Data.OleDb.jvm/OleDbLiteral.cs
  110. * System.Data.OleDb.jvm/OleDbDataReader.cs
  111. * System.Data.OleDb.jvm/OleDbParameterCollection.cs
  112. * System.Data.OleDb.jvm/OleDbRowUpdatedEventArgs.cs
  113. * System.Data.OleDb.jvm/OleDbException.cs
  114. * System.Data.OleDb.jvm/OleDbConnection.cs
  115. * System.Data.OleDb.jvm/OleDbInfoMessageEventHandler.cs
  116. * System.Data.OleDb.jvm/OleDbStringManager.cs
  117. * System.Data.OleDb.jvm/OleDbRowUpdatingEventHandler.cs
  118. New classes added (used in TARGET_JVM only)
  119. 2005-05-29 BorisKirzner <[email protected]>
  120. * System.Data.dll.sources: Added ExceptionHelper.cs
  121. 2005-05-29 Eyal Alaluf <[email protected]>
  122. * System.Data_tests.dll.sources: Unified Mainsoft ConstraintCollection tests into one test in Test/System.Data
  123. 2005-05-25 Umadevi S <[email protected]>
  124. * System.Data.dll.sources : Added DbException.cs, SqlClientMetaDataCollectionNames.cs
  125. 2005-05-20 Umadevi S <[email protected]>
  126. * System.Data.dll.sources: Added DbProviderSpecificTypePropertyAttribute.cs
  127. 2005-05-20 Umadevi S <[email protected]>
  128. * System.Data.dll.sources :Added SqlNotificationEventArgs.cs,OnChangeEventHandler.cs
  129. 2005-05-19 Umadevi S <[email protected]>
  130. * System.Data.dll.sources: Added SqlBulkCopyOptions.cs,SqlBulkCopyColumnMapping.cs,
  131. SqlNotificationAuthType.cs,SqlNotificationTransports.cs,
  132. SqlRowsCopiedEventArgs.cs, SqlRowsCopiedEventHandler.cs
  133. 2005-05-16 Konstantin Triger <[email protected]>
  134. * Test/System.Data/DataSetTest.cs: performing correct cleanup
  135. * System.Data_test.dll.sources: Including Mainsoft tests
  136. 2005-05-04 Sureshkumar T <[email protected]>
  137. * System.Data.dll.sources: Added DataTableClearEventArgs.cs and
  138. DataTableClearEventHandler.cs.
  139. 2005-04-27 Sureshkumar T <[email protected]>
  140. * System.Data_test.dll.sources: Added DataTableReaderTest.cs
  141. 2005-04-22 Sureshkumar T <[email protected]>
  142. * System.Data_test.dll.sources: Added DataTableLoadRowTest.cs.
  143. 2005-01-05 Konstantin Triger <[email protected]>
  144. * DbCommandOptionalFeatures.cs, DbConnectionString.cs, DbConnectionOptions.cs: revert to r43344
  145. 2005-01-05 Konstantin Triger <[email protected]>
  146. * DbDataAdapter.cs: Rostore the Dispose logic
  147. 2005-04-28 Konstantin Triger <[email protected]> Sureshkumar T <[email protected]>
  148. * DataView.cs: Nullify an index when Closed
  149. 2005-04-27 Konstantin Triger <[email protected]>
  150. * DataRow.cs: Removed unneeded check of RowState
  151. 2005-04-27 Konstantin Triger <[email protected]>
  152. * ConstraintCollection: throw DuplicateException only if names match exactly with Table's locale
  153. 2005-04-08 Raja R Harinath <[email protected]>
  154. * Makefile (EXTRA_DISTFILES): Add app_test_2.0.config.
  155. 2005-04-07 Sureshkumar T <[email protected]>
  156. * System.Data.dll.sources: In System.Data.SqlClient
  157. Added SqlAsyncState.cs & SqlAsyncResult.cs
  158. 2005-04-04 Sureshkumar T <[email protected]>
  159. * System.Data_test.dll.sources: Added
  160. Test/System.Data.Common/DbConnectionStringBuilderTest.cs
  161. * System.Data.dll.sources: Added
  162. System.Data.Common/DbConnectionStringBuilder.cs
  163. 2005-03-10 Sureshkumar T <[email protected]>
  164. * System.Data.dll.sources: Added
  165. System.Data.Odbc/OdbcConnectionFactory.cs.
  166. System.Data.Odbc/OdbcFactory.cs.
  167. 2005-03-10 Sureshkumar T <[email protected]>
  168. * System.Data.dll.sources: Added
  169. System.Data.Odbc/OdbcTypeConverter.cs
  170. 2005-03-02 Sureshkumar T <[email protected]>
  171. * System.Data.dll.sources: Added
  172. System.Data.SqlClient/SqlConnectionFactory.cs.
  173. 2005-03-01 Sureshkumar T <[email protected]>
  174. * System.Data.dll.sources: Added System.Data.Common/
  175. ConnectionStringsSectionHandler.cs.
  176. * app_test_2.0.config: Changed the configuration handler for
  177. seciton "connectionStrings".
  178. 2005-02-22 Sureshkumar T <[email protected]>
  179. * System.Data_test.dll.sources: Added
  180. System.Data.Common/ConnectionStringsSectionTest.cs
  181. 2005-02-22 Sureshkumar T <[email protected]>
  182. * Makefile: added dependancy for test-lib to create
  183. $(test-lib).config. These configuration entries are used currently
  184. by Test/System.Data.Common/DbProviderFactories-
  185. ConigurationHalderTest.cs tests. Future tests can also add
  186. configuration information in configuration file
  187. app_test.2.0.config. This is for 2.0 profile only.
  188. * System.Data_test.dll.sources:
  189. Added System.Data.Common/DbProviderFactoriesConfigurationHandlerTest.cs.
  190. * System.Data.dll.sources:
  191. Added System.Data.SqlClient/SqlClientFactory.cs
  192. Added System.Data.SqlClient/SqlDataSourceEnumerator.cs
  193. 2005-02-15 Atsushi Enomoto <[email protected]>
  194. * System.Data.dll.sources : added XmlSchemaWriter.cs.
  195. 2005-02-02 Atsushi Enomoto <[email protected]>
  196. * System.Data_test.dll.sources : added DataViewManagerTest.cs.
  197. 2005-01-24 Atsushi Enomoto <[email protected]>
  198. * System.Data_test.dll.sources : added DataRowViewTest.cs.
  199. 2004-11-25 Raja R Harinath <[email protected]>
  200. * Makefile (BUILT_SOURCES): New. Build Mono.Data.SqlExpressions/Parser.cs.
  201. (EXTRA_DISTFILES): Add Mono.Data.SqlExpressions/Parser.jay.
  202. * System.Data.dll.sources: Don't mention Mono.Data.SqlExpressions/Parser.cs.
  203. 2004-11-10 Martin Baulig <[email protected]>
  204. * System.Data.Sql/ISqlCommand.cs,
  205. System.Data.Sql/ISqlConnection.cs,
  206. System.Data.Sql/ISqlExecutionContext.cs,
  207. System.Data.Sql/ISqlParameterCollection.cs,
  208. System.Data.Sql/ISqlTransaction.cs: Added `new' modifiers where needed.
  209. 2004-10-06 Umadevi S <[email protected]>
  210. * System.Data.dll.sources : Added ISqlNotificationReceiver, SqlNotifcationType,
  211. SqlNotificationInfo, SqlNotificationSource
  212. 2004-09-15 Sebastien Pouliot <[email protected]>
  213. * System.Data_test.dll.sources: Added OdbcPermission, OleDbPermission
  214. and SqlClientPermission unit tests to the build.
  215. 2004-09-14 Sebastien Pouliot <[email protected]>
  216. * System.Data_test.dll.sources: Added DBDataPermission unit tests to
  217. the build.
  218. 2004-09-14 Umadevi S <[email protected]>
  219. * Added System.Data.SqlTypes/SqlNotFilledException.cs,System.Data.SqlTypes/
  220. SqlAlreadyFilledException.cs to System.Data.dll.sources
  221. 2004-09-13 Sebastien Pouliot <[email protected]>
  222. * Makefile: Added /nowarn:618 when compiling unit test assembly to
  223. remove nunit obsolete warnings.
  224. * System.Data.dll.sources: Added System.Data.Common.DbConnectionOptions
  225. (NET_2_0) and System.Data.Common/PermissionHelper to the build.
  226. * System.Data_test.dll.sources: Added {DBData|Odbc|OleDb|SqlClient}
  227. PermissionAttribute unit tests to the build.
  228. 2004-08-25 Nick Drochak <[email protected]>
  229. * Makefile: Cut down the the build noise.
  230. 2004-08-19 Gert Driesen <[email protected]>
  231. * Added System.Data.SqlClient/SqlConnectionTest.cs to
  232. System.Data_test.dll.sources
  233. 2004-07-14 Umadevi S <[email protected]>
  234. * Added System.Data.SqlTypes/StorageState.cs to System.data.dll.sources
  235. 2004-07-09 Umadevi S <[email protected]>
  236. * Added System.Data.Sql/IUdtSerializationContext.cs and System.Data.Sql/SqlFacetAttribute.cs to system.data.dll.sources
  237. 2004-06-02 Umadevi S <[email protected]>
  238. * added System.Data/DataTableTypeConverter to system.data.dll.sources
  239. 2004-05-27 Umadevi S <[email protected]>
  240. * added files DataTableMappingCollectionTest and DataColumnMappingCollectionTest to system.data_test.dll.sources
  241. 2004-05-26 Umadevi S <[email protected]>
  242. * Added files DataTableCollectionTest and DataRelationCollectionTest to the system.data_test.dll.sources
  243. 2004-05-20 Umadevi S <[email protected]>
  244. * Fixed bug 58406- implemented the hasrow method, test program used
  245. to test with the bug report
  246. 2004-05-19 Boris Kirzner <[email protected]>
  247. * System.Data.dll.sources : Added DataContainer.cs
  248. 2004-05-19 Boris Kirzner <[email protected]>
  249. * System.Data.dll.sources : Added RecordCache.cs
  250. 2004-05-14 Umadevi S <[email protected]>
  251. * System.Data.dll.sources : Added SQLDebugging.cs
  252. 2004-05-14 Umadevi S <[email protected]>
  253. * System.Data.dll.sources : Added OdbcParameterConverter.cs
  254. 2004-05-14 Umadevi S <[email protected]>
  255. * System.Data.dll.sources : Added OdbcCategoryAttribute.cs OdbcDescriptionAttribute.cs
  256. 2004-05-14 Umadevi S <[email protected]>
  257. * System.Data.dll.sources : Added OdbcCommandBuilder.cs
  258. 2004-05-14 Umadevi S <[email protected]>
  259. * System.Data.dll.sources : Added OdbcInfoMessageEventArgs.cs, OdbcInfoMessageEventHandler.cs
  260. 2004-05-14 Umadevi S <[email protected]>
  261. * System.Data.dll.sources : Added OdbcPermission.cs,OdbcPermissionAttribute.cs
  262. 2004-05-13 Umadevi S <[email protected]>
  263. * System.Data.dll.sources : added OleDbParameterConverter.cs
  264. 2004-05013 Umadevi S <[email protected]>
  265. * System.Data.dll.sources : added RelationshipConverter.cs
  266. 2004-05-07 Atsushi Enomoto <[email protected]>
  267. * System.Data.dll.sources : added XmlDataInferenceLoader.cs and
  268. XmlDataReader.cs.
  269. 2004-04-26 Jackson Harper <[email protected]>
  270. * Makefile: output to profile directory.
  271. 2004-04-26 Atsushi Enomoto <[email protected]>
  272. * System.Data.dll.sources : added CustomDataClassGenerator.cs.
  273. 2004-04-19 Atsushi Enomoto <[email protected]>
  274. * System.Data_test.dll.sources : added DataSetInferXmlSchemaTest.cs.
  275. 2004-04-19 Atsushi Enomoto <[email protected]>
  276. * System.Data.dll.sources : Added XmlSchemaDataImporter.cs
  277. 2004-04-15 Atsushi Enomoto <[email protected]>
  278. * System.Data_test.dll.sources :
  279. added DataSetReadXmlSchemaTest.cs and DataSetAssertion.cs.
  280. 2004-04-14 Atsushi Enomoto <[email protected]>
  281. * System.Data_test.dll.sources : added DataSetReadXmlTest.cs.
  282. 2004-04-13 Atsushi Enomoto <[email protected]>
  283. * System.Data_test.dll.sources : added XmlDataDocumentTest2.cs.
  284. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  285. * System.Data.dll.sources: removed SqlConnectionPool.cs.
  286. 2004-03-29 Juraj Skripsky <[email protected]>
  287. * System.Data.dll.sources : added classes in Mono.Data.SqlExpressions
  288. * Makefile : add jay-target for Mono.Data.SqlExpressions/Parser.cs
  289. 2004-03-12 Andreas Nahr <[email protected]>
  290. * System.Data.dll.sources : added classes
  291. 2004-03-04 Eran Domb <[email protected]>
  292. * System.Data.dll.sources : added Node.cs, ComparerFactory.cs.
  293. 2004-03-03 Atsushi Enomoto <[email protected]>
  294. * System.Data.dll.sources : added Index.cs.
  295. 2004-01-21 Atsushi Enomoto <[email protected]>
  296. * System.Data_test.dll.sources : Added TypedDataSetGeneratorTest.cs.
  297. 2004-01-20 Atsushi Enomoto <[email protected]>
  298. * System.Data.dll.sources: Added missing TypedDataSetGenerator.cs.
  299. 2003-12-28 Tim Coleman <[email protected]>
  300. * System.Data.dll.sources:
  301. Add new .NET 1.2 sources.
  302. 2003-12-21 Tim Coleman <[email protected]>
  303. * System.Data.dll.sources:
  304. Add new .NET 1.2 sources.
  305. 2003-12-19 Tim Coleman <[email protected]>
  306. * System.Data.dll.sources:
  307. Add new .NET 1.2 sources.
  308. 2003-12-16 Tim Coleman <[email protected]>
  309. * System.Data.dll.sources:
  310. Add new .NET 1.2 sources.
  311. 2003-11-26 Tim Coleman <[email protected]>
  312. * System.Data.dll.sources:
  313. Add many new System.Data classes for NET_2_0 build.
  314. 2003-11-25 Tim Coleman <[email protected]>
  315. * System.Data.dll.sources:
  316. Add System.Data/IDataSources.cs to build
  317. 2003-07-18 Andreas Nahr <[email protected]>
  318. * System.Data.dll.sources: Assembly/Locale.cs added, Assembly/AssemblyInfo.cs added
  319. 2003-07-18 Peter Williams <[email protected]>
  320. * Makefile (EXTRA_DISTFILES): NUnit.Prefs is not
  321. a distable file.
  322. 2003-07-16 Peter Williams <[email protected]>
  323. * Makefile: Flip around for the new default build
  324. profile.
  325. 2003-06-16 Tim Coleman <[email protected]>
  326. * System.Data.Common/DbDataAdapter.cs:
  327. Add the DataTable to the result set even if it contains
  328. no rows. Based on report by Krieg Andreas.
  329. 2003-03-17 Daniel Morgan <[email protected]>
  330. * System.Data.build: on windows build, ignore
  331. warnings CS0219: "The variable xxx is assigned but its value is
  332. never used" and CS0168: "The variable xxx
  333. is declared but never used"
  334. * System.Data/DataRow.cs: flush
  335. * System.Data/DataSet.cs: start implementation on Clear(),
  336. and WriteXml() should write the start element <?xml ... ?> at the top
  337. of the document
  338. * System.Data/DataTable.cs: TODO/FIXME notes. Start implementation
  339. of Compute() - still not working
  340. 2003-03-16 Daniel Morgan <[email protected]>
  341. * System.Data/DataRowView.cs: in the constructor pass
  342. DataRow in instead of int index of the DataRow
  343. in DataTable.Rows
  344. * System.Data/DataTable.cs: implement sorting
  345. for method Select(filterExpression,sort)
  346. * System.Data/DataView.cs: more implementation -
  347. Now, If Sort, RowFilter, or RowStateFilter is set, an
  348. enumerated DataRowViews will be a view with those
  349. properties applied. Still need to implement event handling
  350. though.
  351. 2003-03-13 Tim Coleman <[email protected]>
  352. * System.Data.SqlClient/SqlCommandBuilder.cs:
  353. Change "where" variable name to "whereClause" at the
  354. request of Rhys Weatherley <[email protected]>
  355. 2003-03-10 Daniel Morgan <[email protected]>
  356. * System.Data.SqlClient/SqlDataReader.cs: when
  357. the data reader is closed, this SqlDataReader referenced
  358. in SqlConnection needs to be null
  359. * System.Data.Common/DbDataAdapter.cs: for SelectCommands executed that
  360. have no result set, such as, DDL like CREATE TABLE or DML like INSERT,
  361. the data reader needs to be immediately closed, and 0 returned
  362. as the number of rows added or refreshed
  363. 2003-02-18 Daniel Morgan <[email protected]>
  364. * DataTableRelationCollection.cs: removed file
  365. because its internally in file DataRelationCollection.cs
  366. 2003-02-18 Alan Tam <[email protected]>
  367. * DataRelation.cs: Added storage required to hold the relations.
  368. Checking of constraints are not implemented yet.
  369. * DataRelationCollection.cs: Implemented DataSetRelationCollection
  370. and DataTableRelationCollection, both as inner class of the abstract class
  371. DataRelationCollection (like Microsoft although not documented in ECMA).
  372. * DataRow.cs: Implemented GetChildRows in a extremely slow way.
  373. Need to implement caching like Microsoft later.
  374. * DataSet.cs: Uncomment DataRelation related members. Uncomment
  375. code for Nested XML. Implemented WriteTable(XmlWriter, DataRow[],
  376. XmlWriteMode) for use of Nested XML. Fixed a wrong modifier in
  377. GetSerializationData.
  378. * DataTable.cs: Uncomment DataRelation related members.
  379. 2003-02-11 Tim Coleman <[email protected]>
  380. * System.Data.SqlClient/SqlConnection.cs:
  381. Close the data reader properly, and be sure
  382. to close the data reader when the connection
  383. is closed.
  384. 2003-02-10 Nick Drochak <[email protected]>
  385. * System.Data.build: Keep the standalone tests out of the dll.
  386. 2003-02-09 Rodrigo Moya <[email protected]>
  387. * System.Data.OleDb/OleDbConnection.cs:
  388. * System.Data.OleDb/libgda.cs: upgraded to libgda 0.10.
  389. 2003-01-30 Ville Palo <[email protected]>
  390. * list: Added new file ExpressionElement.cs
  391. 2003-01-26 Daniel Morgan <[email protected]>
  392. * System.Data/DataColumn.cs: fix to not check for DataType being set
  393. * System.Data/DataRow.cs: misc fixes
  394. * Test/SqlTest.cs: accept connection parameters from
  395. command line instead of being hard coded
  396. * Test/System.Data_test.build: exclude building SqlTest.cs
  397. * Test/System.Data/DataRowTest.cs
  398. * Test/System.Data/DataColumnTest.cs: added new tests and numbered
  399. all the tests so they can be easily identified
  400. * Test/System.Data/DataRelationTest.cs: commented code that calls
  401. DataSet's BeginEdit() and EndEdit() which causes a compile error
  402. 2003-01-24 Daniel Morgan <[email protected]>
  403. * System.Data/DataColumn.cs: fixes to be like .NET -
  404. when setting AllowDBNull to false, determine if there is
  405. any data that has DBNull.Value, implement AutoIncrement, do not
  406. allow changing the DataType of the column if data has already been
  407. set, check if the DataType is supported,
  408. * System.Data/DataColumnCollection.cs: handle default ColumnName
  409. like .NET
  410. * System.Data/DataRow.cs: fixes to be like .NET - a
  411. data column gets initialized to all DBNull.Values not null,
  412. implement AutoIncrement, when setting ItemArray if the item array being
  413. set has less items than the number of columns in the table set those last
  414. columns to DBNull.Value, after setting ItemArray values do an EndEdit(),
  415. both a null and DBNull.Value get set to a DBNull.Value, only use DefaultValue
  416. and AutoIncrement if the value is set to null while DBNull.Value only gets set
  417. to DBNull.Value
  418. 2003-01-17 Daniel Morgan <[email protected]>
  419. * System.Data.SqlClient.SqlConnection.cs: add connection
  420. parameter UID which is the same thing as User ID
  421. 2003-01-13 Ville Palo <[email protected]>
  422. * System.Xml/XmlDataDocument.cs: lots of bugfixes and more implemented
  423. methods.
  424. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  425. * list: added System.Data/DataTablePropertyDescriptor.cs
  426. 2002-12-27 Ville Palo <[email protected]>
  427. * list: Added System.Data/XmlDataLoader.cs
  428. 2002-12-16 Ville Palo <[email protected]>
  429. * System.Xml/XmlDataDocument.cs: Now rollback works. It means all
  430. types of transactions works, i guess ;)
  431. 2002-12-14 Ville Palo <[email protected]>
  432. * System.Xml/XmlDataDocument.cs: Adding row via XmlDataDocument to
  433. DataSet's datatable is now possible.
  434. 2002-12-11 Ville Palo <[email protected]>
  435. * System.Xml/XmlDataDocument.cs: Implemented GetRowFromElement() and
  436. GetElementFromRowElement () -methods. Somefixed and little clean up.
  437. 2002-12-10 Gonzalo Paniagua Javier <[email protected]>
  438. * System.Data.SqlClient/SqlCommand.cs:
  439. (CloseReader): don't get the output parameters here.
  440. (GetOutputParameters): don't skip the stream. The parameters will be
  441. there.
  442. * System.Data.SqlClient/SqlConnection.cs: don't try to execute
  443. 'sp_reset_connection'.
  444. * System.Data.SqlClient/SqlDataReader.cs: get the output parameters
  445. after the end of the results.
  446. 2002-12-04 Ville Palo <[email protected]>
  447. * System.Xml/XmlDataDocument.cs: Now this works in both ways,
  448. DataSet <--> XmlDataDocument.cs at some level at least.
  449. 2002-12-02 Ville Palo <[email protected]>
  450. * System.Xml/XmlDataDocument.cs : some fixes and some imlemented
  451. methods.
  452. 2002-12-01 Tim Coleman <[email protected]>
  453. * System.Data.SqlClient/SqlDataReader.cs:
  454. Change to reflect TdsSchemaInfo -> TdsDataColumnCollection
  455. shift.
  456. 2002-12-01 Ville Palo <[email protected]>
  457. * list: Added XmlDataDocument.cs
  458. * System.Xml/XmlDataDocument.cs: more implementation.
  459. 2002-11-30 Daniel Morgan <[email protected]>
  460. * System.Data.Odbc/OdbcDataReader.cs: implemented GetValues() method
  461. needed by OdbcDataAdapter
  462. * System.Data.Odbc/OdbcDataAdapter.cs
  463. * System.Data.Odbc/OdbcRowUpdatedEventArgs.cs
  464. * System.Data.Odbc/OdbcRowUpdatedEventHandler.cs
  465. * System.Data.Odbc/OdbcRowUpdatingEventArgs.cs
  466. * System.Data.Odbc/OdbcRowUpdatingEventHandler.cs: added files for an
  467. ODBC Data Adapter
  468. * list: added new files to linux build
  469. in namespace System.Data.Odbc for the ODBC Data Adapter
  470. * System.Xml/XmlDataDocument.cs: commented method
  471. protected internal override XPathNavigator CreateNavigator(XmlNode node)
  472. because it would not compile on .NET Framework. Added
  473. a FIXME comment there
  474. 2002-11-29 Ville Palo <[email protected]>
  475. * System.Xml/XmlDataDocument.cs: Started to implement.
  476. 2002-11-26 Tim Coleman <[email protected]>
  477. * System.Data.SqlClient/SqlCommand.cs:
  478. * System.Data.SqlClient/SqlConnection.cs:
  479. * System.Data.SqlClient/SqlDataReader.cs:
  480. * System.Data.SqlClient/SqlParameter.cs:
  481. * System.Data.SqlClient/SqlParameterCollection.cs:
  482. * System.Data.SqlClient/SqlTransaction.cs:
  483. Many changes around restructuring of parameter
  484. information so that the Sybase provider supports
  485. PREPAREs too.
  486. 2002-11-25 Ville Palo <[email protected]>
  487. * System.Data/DataSet.cs : Started to implement ReadXmlSchema -method
  488. 2002-11-21 Tim Coleman <[email protected]>
  489. * System.Data.build:
  490. * System.Data.SqlClient/SqlCommand.cs:
  491. * System.Data.SqlClient/SqlConnection.cs:
  492. * System.Data.SqlClient/SqlConnectionPool.cs:
  493. * System.Data.SqlClient/SqlDataReader.cs:
  494. * System.Data.SqlClient/SqlException.cs:
  495. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  496. * System.Data.SqlClient/SqlParameter.cs:
  497. * System.Data.SqlClient/SqlTransaction.cs:
  498. * System.Data.SqlClient/SqlXmlTextReader.cs:
  499. * System.Data.SqlTypes/SqlDecimal.cs:
  500. Modify to accept new Mono.Data.Tds.Protocol
  501. namespace in Mono.Data.Tds assembly, replacing
  502. Mono.Data.TdsClient.Internal
  503. 2002-11-20 Ville Palo <[email protected]>
  504. * System.Data.SqlTypes/SqlDecimal.cs: Ported some divide-stuff from
  505. decimal.c file. Does not work correctly yet.
  506. 2002-11-18 Tim Coleman <[email protected]>
  507. * System.Data.SqlClient/SqlConnection.cs:
  508. BeginTransaction bug.
  509. * System.Data.SqlClient/SqlParameter.cs:
  510. Add some comments to describe what is going on.
  511. * System.Data.SqlClient/SqlCommand.cs:
  512. Add a TODO.
  513. * System.Data.SqlClient/SqlDataReader.cs:
  514. Add support to get SQL Types
  515. 2002-11-16 Daniel Morgan <[email protected]>
  516. * System.Data/DataView.cs: fix bug
  517. with DataViewEnumerator causing InvalidOperationException
  518. on the last item
  519. 2002-11-15 Tim Coleman <[email protected]>
  520. * System.Data.Common/DbDataPermission.cs:
  521. * System.Data.SqlClient/SqlClientPermission.cs:
  522. Make these agree on the class status page.
  523. * System.Data.SqlClient/SqlCommand.cs:
  524. - Fix up handling of GUID and [Var]Binary, and Image types
  525. * System.Data.SqlClient/SqlParameter.cs:
  526. - Provide support for conversion between Type,
  527. DbType, SqlDbType, and the SQL server type names.
  528. - Fix up handling of GUID and [Var]Binary types
  529. * System.Data.SqlClient/SqlParameterCollection.cs:
  530. Correct all of the Add methods.
  531. * Test/SqlTest.cs:
  532. - Add more types to test: unique identifier, binary,
  533. image, smalldatetime, money, smallmoney, timestamp
  534. 2002-11-14 Daniel Morgan <[email protected]>
  535. * System.Data/DataColumnPropertyDescriptor.cs
  536. * System.Data/DataRowView.cs
  537. * System.Data/DataView.cs
  538. * System.Data.Common/DbDataRecord.cs: a little bit more
  539. implementation for data binding purposes
  540. * Test/PostgresTest.cs
  541. * Test/TestSqlDataAdapter.cs
  542. * Test/TestSqlException.cs
  543. * TestSqlParameters.cs: fixed test for PostgreSQL's new home
  544. at Mono.Data.PostgreSqlClient
  545. 2002-11-14 Tim Coleman <[email protected]>
  546. * System.Data.SqlClient/SqlCommand.cs:
  547. Slight reformatting of Bit values and sql statements
  548. * System.Data.SqlClient/SqlDataReader.cs:
  549. Implement RecordsAffected
  550. Complete SchemaTable
  551. * System.Data.SqlClient/SqlParameter.cs:
  552. Propertly support Char/NChar
  553. * System.Data.SqlClient/SqlXmlTextReader.cs:
  554. Add Close () to the Dispose () method
  555. 2002-11-13 Tim Coleman <[email protected]>
  556. * Test/SqlTest.cs:
  557. New class added for testing SqlClient
  558. * System.Data.SqlClient/SqlCommand.cs:
  559. Add handling for SqlDbType.Bit
  560. * System.Data.SqlClient/SqlConnection.cs:
  561. Implement Dispose () methods.
  562. Change ConnectionString setter
  563. * System.Data.SqlClient/SqlDataReader.cs:
  564. Implement Dispose () methods.
  565. Set RecordsAffected to -1 by default. Need to
  566. set this correctly in the future.
  567. * System.Data.SqlClient/SqlCommandBuilder.cs:
  568. * System.Data.SqlClient/SqlDataAdapter.cs:
  569. * System.Data.SqlClient/SqlTransaction.cs:
  570. * System.Data.SqlClient/SqlXmlTextReader.cs:
  571. Implement Dispose () methods.
  572. 2002-11-12 Tim Coleman <[email protected]>
  573. * list:
  574. Remove Mono.Data.TdsClient.Internal/TdsContext.cs
  575. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  576. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  577. Complete these classes
  578. * System.Data.Common/DbDataAdapter.cs:
  579. Experimental support for FillSchema ()
  580. 2002-11-11 Tim Coleman <[email protected]>
  581. * System.Data/ResDescriptionAttribute.cs:
  582. * list
  583. New internal class added
  584. * System.Data/Constraint.cs:
  585. * System.Data/ConstraintCollection.cs:
  586. * System.Data/DBConcurrencyException.cs:
  587. * System.Data/DataColumn.cs:
  588. * System.Data/DataColumnCollection.cs:
  589. * System.Data/DataRelation.cs:
  590. * System.Data/DataRelationCollection.cs:
  591. * System.Data/DataRow.cs:
  592. * System.Data/DataRowBuilder.cs:
  593. * System.Data/DataRowBuilder.cs:
  594. * System.Data/DataRowCollection.cs:
  595. * System.Data/DataSet.cs:
  596. * System.Data/DataTable.cs:
  597. * System.Data/DataTableCollection.cs:
  598. * System.Data/DataView.cs:
  599. * System.Data/DataViewManager.cs:
  600. * System.Data/DataViewSetting.cs:
  601. * System.Data/DataViewSettingCollection.cs:
  602. * System.Data/ForeignKeyConstraint.cs:
  603. * System.Data/ForeignKeyConstraint.cs:
  604. * System.Data/InternalDataCollectionBase.cs:
  605. * System.Data/MergeFailedEventArgs.cs:
  606. * System.Data/StrongTypingException.cs:
  607. * System.Data/TypeDataSetGeneratorException.cs:
  608. * System.Data/UniqueConstraint.cs:
  609. * System.Data.Common/DataAdapter.cs:
  610. * System.Data.Common/DataColumnMapping.cs:
  611. * System.Data.Common/DataColumnMappingCollection.cs:
  612. * System.Data.Common/DataTableMapping.cs:
  613. * System.Data.Common/DataTableMappingCollection.cs:
  614. * System.Data.Common/DbDataAdapter.cs:
  615. * System.Data.Common/DbDataPermission.cs:
  616. * System.Data.Common/DbDataPermissionAttribute.cs:
  617. * System.Data.Common/DbEnumerator.cs:
  618. * System.Data.SqlClient/SqlCommand.cs:
  619. * System.Data.SqlClient/SqlCommandBuilder.cs:
  620. * System.Data.SqlClient/SqlConnection.cs:
  621. * System.Data.SqlClient/SqlDataAdapter.cs:
  622. * System.Data.SqlClient/SqlParameter.cs:
  623. Add missing attributes, methods, properties based on information
  624. from System.Data class status page on go-mono.com.
  625. 2002-11-10 Ville Palo <[email protected]>
  626. * System.Data.SqlTypes/SqlString.cs: Now all methods are implemented
  627. 2002-11-09 Tim Coleman <[email protected]>
  628. * list:
  629. * System.Data/DataCategoryAttribute.cs:
  630. Add new attribute based on corcompare
  631. 2002-11-09 Rodrigo Moya <[email protected]>
  632. * System.Data.OleDb/OleDbDataAdapter.cs: cleaned up implementation,
  633. based on the PgSql/SqlClient data adapter classes.
  634. 2002-11-09 Tim Coleman <[email protected]>
  635. * list:
  636. Add new internal tds classes
  637. * System.Data.Common/DbDataAdapter.cs:
  638. * System.Data.SqlClient/SqlDataAdapter.cs:
  639. Change event calling system
  640. * System.Data.SqlClient/SqlClientPermission.cs:
  641. * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
  642. * System.Data.SqlClient/SqlDataReader.cs:
  643. Add comments
  644. * System.Data.SqlClient/SqlCommand.cs:
  645. Some changes to make consistent with .NET based on Sql server traces
  646. Implement command timeout
  647. * System.Data.SqlClient/SqlCommandBuilder.cs:
  648. Make sure that we only build a command if key info found
  649. * System.Data.SqlClient/SqlConnection.cs:
  650. Change event calling system
  651. Some changes to make consistent with .NET based on Sql server traces
  652. Implement connection timeout
  653. * System.Data.SqlClient/SqlConnectionPool.cs:
  654. Implement connection timeout
  655. * System.Data.SqlClient/SqlError.cs:
  656. Implement ToString ()
  657. * System.Data.SqlClient/SqlException.cs:
  658. Mucho implementation and cleanup
  659. * System.Data.SqlClient/SqlParameter.cs:
  660. Implement Clone ()
  661. * System.Data.SqlClient/SqlParameterCollection.cs:
  662. Code cleanup
  663. * System.Data.SqlClient/SqlTransaction.cs:
  664. Move some of the transaction creation to SqlConnection to be consistent
  665. with .NET SQL traces
  666. 2002-11-08 Tim Coleman <[email protected]>
  667. * System.Data/DataRow.cs:
  668. * System.Data/DataTable.cs:
  669. Some fix-ups related to the DbDataAdapter to make it work.
  670. * System.Data.Common/DbDataAdapter.cs:
  671. Fix the Fill () and Update () methods. These now work
  672. fairly well. Need mucho testing.
  673. * System.Data.SqlClient/SqlCommandBuilder.cs:
  674. Support table mappings and parameter source versions now.
  675. * System.Data.SqlClient/SqlConnection.cs:
  676. * System.Data.SqlClient/SqlTransaction.cs:
  677. Add set accessor for transaction so that SqlTransaction.Commit ()
  678. will remove itself from the connection.
  679. * System.Data.SqlClient/SqlDataAdapter.cs:
  680. Update/Insert/Delete command should be null by default.
  681. * System.Data.SqlClient/SqlException.cs:
  682. Remove a TODO attribute
  683. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  684. Properly handle the SqlCommand object
  685. 2002-11-08 Ville Palo <[email protected]>
  686. * System.Data.SqlTypes/SqlDateTime.cs: Now the all methods are
  687. implemented.
  688. 2002-11-08 Gonzalo Paniagua Javier <[email protected]>
  689. * System.Data.SqlTypes/SqlDecimal.cs: fixed build. Someone should check
  690. my comments and do something more appropiate.
  691. 2002-11-07 Ville Palo <[email protected]>
  692. * System.Data.SqlTypes/SqlBinary.cs:
  693. * System.Data.SqlTypes/SqlBoolean.cs:
  694. * System.Data.SqlTypes/SqlByte.cs:
  695. * System.Data.SqlTypes/SqlDateTime.cs:
  696. * System.Data.SqlTypes/SqlDecimal.cs:
  697. * System.Data.SqlTypes/SqlDouble.cs:
  698. * System.Data.SqlTypes/SqlDecimal.cs:
  699. * System.Data.SqlTypes/SqlGuid.cs:
  700. * System.Data.SqlTypes/SqlInt16.cs:
  701. * System.Data.SqlTypes/SqlInt32.cs:
  702. * System.Data.SqlTypes/SqlInt64.cs:
  703. * System.Data.SqlTypes/SqlMoney.cs:
  704. * System.Data.SqlTypes/SqlSingle.cs:
  705. * System.Data.SqlTypes/SqlString.cs: Implemented more methods and
  706. fixed some. SqlBoolean Equals (object value) -method improvements to
  707. all classes.
  708. 2002-11-07 Tim Coleman <[email protected]>
  709. * System.Data.Common/DbDataAdapter.cs:
  710. Remove NotImplementedException in Dispose
  711. * System.Data.Common/FieldNameLookup.cs:
  712. Should be sealed
  713. * System.Data.SqlClient/SqlCommand.cs:
  714. Fix CommandText accessor (stack overflow)
  715. Implement DeriveParameters method
  716. * System.Data.SqlClient/SqlCommandBuilder.cs:
  717. Implement this class
  718. * System.Data.SqlClient/SqlConnection.cs:
  719. Change application name to "Mono SqlClient Data Provider"
  720. * System.Data.SqlClient/SqlDataReader.cs:
  721. Add new schema information
  722. * System.Data.SqlClient/SqlError.cs:
  723. * System.Data.SqlClient/SqlErrorCollection.cs:
  724. Remove internal methods, TODO attributes
  725. * System.Data.SqlClient/SqlParameter.cs:
  726. Add new internal constructor for DeriveParameters use
  727. * System.Data.SqlClient/SqlParameterConverter.cs:
  728. Add missing methods based on class status
  729. 2002-11-07 Nick Drochak <[email protected]>
  730. * list: add System.Data/ColumnDataPropertyDescriptor.cs
  731. 2002-11-04 Tim Coleman <[email protected]>
  732. * list:
  733. Add Mono.Data.TdsClient.Internal.TdsInternalError
  734. Add Mono.Data.TdsClient.Internal.TdsInternalErrorCollection
  735. Add Mono.Data.TdsClient.Internal.TdsInternalErrorMessageEventHandler
  736. Add Mono.Data.TdsClient.Internal.TdsInternalErrorMessageEventArgs
  737. Add Mono.Data.TdsClient.Internal.TdsInternalInfoMessageEventHandler
  738. Add Mono.Data.TdsClient.Internal.TdsInternalInfoMessageEventArgs
  739. Remove Mono.Data.TdsClient.Internal.TdsPacketErrorResult
  740. Remove Mono.Data.TdsClient.Internal.TdsPacketErrorResultCollection
  741. Remove Mono.Data.TdsClient.Internal.TdsPacketMessageResult
  742. * System.Data.Common/RowUpdatedEventArgs.cs:
  743. * System.Data.Common/RowUpdatingEventArgs.cs:
  744. Implement
  745. * System.Data.SqlClient/SqlCommand.cs:
  746. * System.Data.SqlClient/SqlDataReader.cs:
  747. Remove checks for errors. These are now handled by events
  748. * System.Data.SqlClient/SqlConnection.cs:
  749. * System.Data.SqlClient/SqlError.cs:
  750. * System.Data.SqlClient/SqlException.cs:
  751. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  752. Add event handlers and triggers for errors, messages, state change
  753. * System.Data.SqlClient/SqlParameter.cs:
  754. Re-add refreshproperties
  755. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  756. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs:
  757. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  758. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs:
  759. Implement
  760. 2002-11-04 Tim Coleman <[email protected]>
  761. * list:
  762. Add Mono.Data.TdsClient.Internal.TdsBigDecimal
  763. Add System.Data.SqlClient.SqlParameterConverter
  764. Add System.Data.DataSysDescriptionAttribute
  765. * System.Data/DataSysDescriptionAttribute.cs:
  766. New class added
  767. * System.Data.Common/DbDataPermission.cs:
  768. Add CreateInstance method
  769. * System.Data.SqlClient/SqlClientPermission.cs:
  770. * System.Data.SqlClient/SqlError.cs:
  771. Add Serializable attribute
  772. * System.Data.SqlClient/SqlCommand.cs:
  773. * System.Data.SqlClient/SqlConnection.cs:
  774. * System.Data.SqlClient/SqlDataAdapter.cs:
  775. * System.Data.SqlClient/SqlParameter.cs:
  776. Add some missing property attributes
  777. * System.Data.SqlClient/SqlCommandBuilder.cs:
  778. Add some missing property attributes
  779. Implement properties
  780. * System.Data.SqlClient/SqlDataReader.cs:
  781. Implement missing methods
  782. * System.Data.SqlClient/SqlErrorCollection.cs:
  783. Implement the properties
  784. * System.Data.SqlClient/SqlException.cs:
  785. Remove extra property accessors
  786. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  787. Add internal constructor
  788. * System.Data.SqlClient/SqlParameterCollection.cs:
  789. Add internal constructor
  790. Add property attributes
  791. * System.Data.SqlClient/SqlParameterConverter.cs:
  792. New internal class added
  793. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  794. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  795. Remove destructor
  796. * System.Data.SqlTypes/SqlDecimal.cs:
  797. Add implicit conversion from TdsBigDecimal to SqlDecimal
  798. * System.Data.SqlTypes/SqlString.cs:
  799. * System.Data.SqlTypes/SqlInt16.cs:
  800. * System.Data.SqlTypes/SqlDateTime.cs:
  801. Change code to remove compiler warnings
  802. 2002-11-04 Stuart Caborn <[email protected]>
  803. * list: added System.Data/XmlConstants.cs to
  804. Linux build
  805. * System.Data/XmlConstants.cs: added -
  806. * System.Data/DataTable.cs
  807. * System.Data/DataSet.cs
  808. * System.Data/DataColumn.cs
  809. * System.Data/DataColumnCollection.cs
  810. * System.Data/DataRelation.cs: modified -
  811. Began initial implementation of WriteXml
  812. and WriteXmlSchema. There is no support for DiffGrams
  813. yet. In WriteSchema mode, relationships are missing,
  814. all types are xs:string and the namespacing is not
  815. working properly. Added support for Ordinals in the
  816. DataColumnCollection and added support for
  817. namespaces and prefixes.
  818. 2002-11-03 Ville Palo <[email protected]>
  819. * System.Data.SqlTypes/SqlBinary.cs: Finished and no errors generated
  820. by NUnitConsole_mono.exe
  821. 2002-11-03 Tim Coleman ([email protected])
  822. * System.Data.SqlClient/SqlCommand.cs:
  823. Use SET NO_BROWSETABLE ON when CommandBehavior is KeyInfo
  824. * System.Data.SqlClient/SqlDataReader.cs:
  825. Get more schema info if available
  826. * list:
  827. Add Mono.Data.TdsClient.Internal.TdsColumnStatus
  828. 2002-11-02 Tim Coleman ([email protected])
  829. * System.Data.SqlClient/SqlCommand.cs:
  830. Change to use sp_executesql to run regular text queries.
  831. Now, sp_executesql for text, sp_execute for prepared,
  832. and execute for SPs means everything runs a procedure.
  833. * System.Data.SqlClient/SqlParameter.cs:
  834. Allow client to set parameter name in Prepare ()
  835. * System.Data.SqlClient/SqlParameterCollection.cs:
  836. Implement some methods
  837. * System.Data.SqlClient/SqlDataReader.cs:
  838. Since everything is an SP now, we know that when
  839. we see DoneProc, that we are really done.
  840. 2002-11-01 Tim Coleman ([email protected]) :
  841. * System.Data.Common/DbEnumerator.cs :
  842. Throw correct exception on Reset ()
  843. Add ColumnSize to schema table.
  844. * System.Data.SqlClient/SqlDataReader.cs :
  845. Add ColumnSize to schema table.
  846. * System.Data.SqlClient/SqlCommand.cs :
  847. Change the way that preparing is handled.
  848. Now uses sp_prepare on the server instead of temp
  849. stored procedures because it's the Right Thing[tm] to do.
  850. * System.Data.SqlClient/SqlConnection.cs :
  851. Store data readers here rather than in command
  852. * System.Data.SqlClient/SqlDataReader.cs :
  853. More implementation, including binary types
  854. * System.Data.SqlClient/SqlParameter.cs :
  855. Lowercase type name
  856. 2002-10-31 Tim Coleman ([email protected])
  857. * System.Data.Common/DbDataAdapter.cs :
  858. Fix handling of nulls
  859. * System.Data.Common/DbDataRecord.cs :
  860. Change GetFieldType ()
  861. * System.Data.Common/DbEnumerator.cs :
  862. Add new schema information
  863. * System.Data.Common/FieldNameLookup.cs :
  864. Change definition of schema
  865. * System.Data.Common/SchemaInfo.cs :
  866. Add more information
  867. * System.Data.SqlClient/SqlDataReader.cs :
  868. get more schema table data
  869. * list :
  870. Add Mono.Data.TdsClient.Internal.TdsSchemaInfo
  871. 2002-10-31 Ville Palo <[email protected]>
  872. * SqlBinary.cs:
  873. * SqlBoolean.cs:
  874. * SqlByte.cs:
  875. * SqlDecimal.cs:
  876. * SqlDouble.cs:
  877. * SqlInt16.cs:
  878. * SqlInt64.cs:
  879. * SqlString.cs: Some bugfixes and some TODOs but so much
  880. work to do.
  881. 2002-10-30 Tim Coleman ([email protected])
  882. * System.Data.Common/FieldNameLookup.cs:
  883. * System.Data.Common/SchemaInfo.cs:
  884. * System.Data.SqlClient/SqlXmlTextReader.cs:
  885. New classes added
  886. * list :
  887. Class list changed in build
  888. * System.Data.SqlClient/SqlCommand.cs:
  889. Added support for command behaviors
  890. Refactored a bunch of code
  891. Implement ExecuteScalar
  892. Implement ExecuteXmlReader
  893. * System.Data.SqlClient/SqlConnection.cs:
  894. Moved CheckForErrors here
  895. * System.Data.SqlClient/SqlDataAdapter.cs:
  896. Code reformatting
  897. * System.Data.SqlClient/SqlDataReader.cs:
  898. Implement GetEnumerator
  899. Fix NextResult, Read
  900. Add SqlDataReaderEnumerator private class
  901. * System.Data.SqlClient/SqlParameter.cs:
  902. Move some of the Prepare code from SqlCommand to here
  903. * System.Data.SqlClient/SqlTransaction.cs:
  904. Move error checking to SqlConnection
  905. 2002-10-29 Tim Coleman ([email protected])
  906. * System.Data.SqlClient/SqlCommand.cs:
  907. Added code to handle parameters for queries
  908. * System.Data.SqlClient/SqlConnection.cs:
  909. Properly handle resetting SqlConnections
  910. * System.Data.SqlClient/SqlDataReader.cs:
  911. Properly handle the case where no results are returned
  912. * System.Data.SqlClient/SqlParameter.cs:
  913. Default direction to Input
  914. * System.Data.SqlClient/SqlParameterCollection.cs:
  915. Implement GetEnumerator
  916. 2002-10-29 Rodrigo Moya <[email protected]>
  917. * makefile.gnu: added Test directory.
  918. 2002-10-29 Ville Palo <[email protected]>
  919. * System.Data.SqlTypes/SqlGuid.cs: Fixed some bugs and finished
  920. couple of MonoTODOs.
  921. 2002-10-28 Tim Coleman ([email protected])
  922. * System.Data.SqlClient/SqlCommand.cs:
  923. Add some error handling
  924. * System.Data.SqlClient/SqlDataReader.cs:
  925. Add some error handling
  926. Add precision/scale to schema table
  927. * System.Data.SqlClient/SqlException.cs:
  928. Generate a SqlException from TDS error
  929. collection
  930. * System.Data.SqlClient/SqlTransaction.cs:
  931. Add some error handling
  932. 2002-10-28 Ville Palo <[email protected]>
  933. * System.Data.SqlTypes/SqlBinary.cs:
  934. * System.Data.SqlTypes/SqlBoolean.cs:
  935. * System.Data.SqlTypes/SqlByte.cs:
  936. * System.Data.SqlTypes/SqlDateTime.cs:
  937. * System.Data.SqlTypes/SqlDecimal.cs:
  938. * System.Data.SqlTypes/SqlDouble.cs:
  939. * System.Data.SqlTypes/SqlDecimal.cs:
  940. * System.Data.SqlTypes/SqlDouble.cs:
  941. * System.Data.SqlTypes/SqlGuid.cs:
  942. * System.Data.SqlTypes/SqlInt16.cs:
  943. * System.Data.SqlTypes/SqlInt32.cs:
  944. * System.Data.SqlTypes/SqlInt64.cs:
  945. * System.Data.SqlTypes/Money.cs:
  946. * System.Data.SqlTypes/SqlSingle.cs:
  947. * System.Data.SqlTypes/SqlString.cs:
  948. * System.Data.SqlTypes/SqlSingle.cs: Fixed internal loop bugs and
  949. some other minor fixes.
  950. 2002-10-27 Rodrigo Moya <[email protected]>
  951. * System.Data.OleDb/OleDbDataAdapter.cs (Fill, FillSchema,
  952. GetFillParameters, Update): added overloaded methods.
  953. * System.Data.OleDb/OleDbCommand.cs:
  954. * System.Data.OleDb/OleDbDataReader.cs:
  955. * System.Data.OleDb/OleDbConnection.cs: removed limitation of one
  956. data adapter at a time. Mono's version can open as many as you want,
  957. for free.
  958. 2002-10-25 Tim Coleman ([email protected])
  959. * System.Data.SqlClient/SqlConnectionPool.cs:
  960. New class added
  961. * System.Data.SqlClient/SqlClientPermission.cs:
  962. * System.Data.SqlClient/SqlClientPermissionAttribute.cs:
  963. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs:
  964. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs:
  965. * System.Data.SqlClient/SqlParameter.cs:
  966. * System.Data.SqlClient/SqlParameterCollection.cs:
  967. Code reformatting
  968. * System.Data.SqlClient/SqlCommand.cs:
  969. * System.Data.SqlClient/SqlConnection.cs:
  970. * System.Data.SqlClient/SqlException.cs:
  971. * System.Data.SqlClient/SqlTransaction.cs:
  972. New code based on work in TDS Client
  973. * list:
  974. New files added for SqlClient, and TdsClient.Internal
  975. * System.Data.build:
  976. Added reference to System.EnterpriseServices.dll
  977. Still leave SqlClient out of build until danmorg
  978. can fix.
  979. 2002-10-23 Ville Palo <[email protected]>
  980. * System.Data.SqlTypes/SqlDouble.cs:
  981. * System.Data.SqlTypes/SqlSingle.cs: Finished
  982. 2002-10-23 Ville Palo <[email protected]>
  983. * System.Data.SqlTypes/SqlByte.cs:
  984. * System.Data.SqlTypes/SqlBoolean.cs:
  985. * System.Data.SqlTypes/SqlInt16.cs:
  986. * System.Data.SqlTypes/SqlInt32.cs:
  987. * System.Data.SqlTypes/SqlInt64.cs: Finished.
  988. 2002-10-21 Rodrigo Moya <[email protected]>
  989. * list: removed libodbchelper.cs file, which has been removed.
  990. 2002-10-16 Tim Coleamn <[email protected]>
  991. * list:
  992. * System.Data.build:
  993. Exclude compiling of System.Data.SqlClient in
  994. preparation for overhauls of that system.
  995. 2002-10-16 Daniel Morgan <[email protected]>
  996. * ParmUtil.cs
  997. * PostgresLibrary.cs
  998. * PostgresTypes.cs
  999. * SqlClientPermission.cs
  1000. * SqlClientPermissionAttribute.cs
  1001. * SqlCommand.cs
  1002. * SqlCommandBuilder.cs
  1003. * SqlConnection.cs
  1004. * SqlDataAdapter.cs
  1005. * SqlDataReader.cs
  1006. * SqlError.cs
  1007. * SqlErrorCollection.cs
  1008. * SqlException.cs
  1009. * SqlInfoMessageEventArgs.cs
  1010. * SqlInfoMessageEventHandler.cs
  1011. * SqlParameter.cs
  1012. * SqlParameterCollection.cs
  1013. * SqlRowUpdatedEventArgs.cs
  1014. * SqlRowUpdatedEventHandler.cs
  1015. * SqlRowUpdatingEventArgs.cs
  1016. * SqlRowUpdatingEventHandler.cs
  1017. * SqlTransaction.cs: thanks to Miguel de Icaza, he
  1018. copied files on the mono cvs server
  1019. from mcs/class/System.Data/System.Data.SqlClient
  1020. for the PostgreSQL provider
  1021. to mcs/class/Mono.Data.PostgreSqlClient.
  1022. This frees up
  1023. mcs/class/System.Data/System.Data.SqlClient for
  1024. the Microsoft SQL Server provider.
  1025. Any Mono.Data.PostgreSqlClient/Sql*.cs files
  1026. were copied on the cvs server
  1027. to Mono.Data.PostgreSqlClient/PgSql*.cs files
  1028. and the old Mono.Data.PostgreSqlClient/Sql*.cs
  1029. files were removed. Copying, renaming, and removing
  1030. was done on the cvs server so we could keep
  1031. the cvs change history.
  1032. 2002-10-15 Daniel Morgan <[email protected]>
  1033. * System.Data.OleDb/libgda.cs: added more functions
  1034. to platfrom invoke into shared library libgda
  1035. * System.Data.OleDb/OleDbDataReader.cs: implemented
  1036. GetSchemaTable() and GetFieldType()
  1037. 2002-10-13 Daniel Morgan <[email protected]>
  1038. * System.Data/DataRow.cs: don't throw exception
  1039. if DBNull is false. Had to do comment this line
  1040. to allow a typeof(Type).
  1041. * System.Data.SqlClient/SqlCommand.cs: the "DataType"
  1042. DataColumn and DataRows in a DataTable for a schema should
  1043. be typeof Type, not string. This is to make it
  1044. compatible with MS.NET
  1045. * System.Data.SqlClient/SqlConnection.cs: the
  1046. isolation level should be set before
  1047. beginning the transaction
  1048. * Test/SqlSharpCli.cs: change string to Type for
  1049. "DataType" from a DataRow in a DataTable
  1050. that contains a schema.
  1051. 2002-10-14 Rodrigo Moya <[email protected]>
  1052. * list: added missing Odbc files.
  1053. 2002-10-09 Rodrigo Moya <[email protected]>
  1054. * list: added System.Data.Odbc files.
  1055. 2002-10-09 Brian Ritchie <[email protected]>
  1056. * System.Data.Odbc/*: added first version of ODBC managed provider.
  1057. 2002-10-07 Gonzalo Paniagua Javier <[email protected]>
  1058. * System.Data/ConstraintCollection.cs:
  1059. * System.Data/DataColumnCollection.cs:
  1060. * System.Data/DataRowCollection.cs:
  1061. * System.Data/DataTableCollection.cs:
  1062. * System.Data/InternalDataCollectionBase.cs: made List internal to fix
  1063. the build with csc. It must be a mcs bug. I will try to get a test case.
  1064. 2002-10-06 Luis Fernandez <[email protected]>
  1065. * System.Data/Constraint.cs (AssertConstraint): added overloaded
  1066. method.
  1067. * System.Data/DataColumnCollection.cs: added constraints when needed.
  1068. * System.Data/DataRow.cs: validate UniqueConstraint's.
  1069. * System.Data/DataRowCollection.cs (ValidateDataRowInternal): new
  1070. internal method to validate a given DataRow with respect to the
  1071. DataRowCollection.
  1072. * System.Data/ForeignKeyConstraint.cs (AssertConstraint): stubs for
  1073. new overloaded method.
  1074. * System.Data/UniqueConstraint.cs: added implementation.
  1075. (AseertConstraint): implemented new overloaded method.
  1076. 2002-10-01 Rodrigo Moya <[email protected]>
  1077. * System.Data.OleDb/OleDbConnection.cs (Open): commented code from
  1078. last commit, which wasn't supposed to be in CVS yet.
  1079. 2002-10-01 Luis Fernandez <[email protected]>
  1080. * System.Data/DataColumn.cs:
  1081. * System.Data/DataRow.cs:
  1082. * System.Data/DataRowCollection.cs:
  1083. * System.Data/DataTable.cs: some fixes and implementation.
  1084. 2002-09-28 Vladimir Vukicevic <[email protected]>
  1085. * System.Data.OleDb/OleDbConnection.cs: Close
  1086. reader properly in call to ExecuteScalar().
  1087. 2002-09-07 Rodrigo Moya <[email protected]>
  1088. * System.Data.OleDb/OleDbConnection.cs (Open): changed to use OleDb
  1089. connection strings, which are then converted to GDA connection
  1090. strings, instead of using directly GDA data source names.
  1091. * System.Data.OleDb/libgda.cs: added more needed functions.
  1092. 2002-09-06 Franklin Wise <[email protected]>
  1093. * System.Data/DataColumn.cs: More flushing out.
  1094. * System.Data/ForeignKeyConstraint.cs: Implemented GetHashCode()
  1095. * System.Data/UniqueKeyConstraint.cs: Implemented GetHashCode()
  1096. * Tests: See Changelog for System.Data/Test
  1097. 2002-09-04 Franklin Wise <[email protected]>
  1098. * Tests: See Changelog for System.Data/Test
  1099. * New Files:
  1100. System.Data/DataColumnCollectionTest.cs
  1101. System.Data/DataRowCollectionTest.cs
  1102. System.Data/DataRowTest.cs
  1103. * System.Data/DataColumn.cs: Flushing out validation, type conversion for
  1104. autoincrement. Added lots of TODO's.
  1105. * System.Data/DataColumnCollection.cs: Wrote out add logic as a comment.
  1106. Tagged implementation with FIXME tags. Lot's more validation
  1107. and setup needs to be done, much of which is now tagged as todo's
  1108. or FIXME's
  1109. * System.Data/DataRow.cs: Lot's of fixme's added.
  1110. * System.Data/DataRowCollection.cs: TODO's added.
  1111. * System.Data/DataTable.cs: Implemented PrimaryKey.
  1112. * System.Data/UniqueConstraint.cs: Implemented related PrimaryKey
  1113. helpers.
  1114. 2002-08-25 Rodrigo Moya <[email protected]>
  1115. * System.Data.OleDb/OleDbTransaction.cs (OleDbTransaction): manage
  1116. correctly the isolation level.
  1117. (IsolationLevel): likewise.
  1118. (~OleDbTransaction): implemented.
  1119. * System.Data.OleDb/libgda.cs: added more needed stuff.
  1120. 2002-08-22 Daniel Morgan <[email protected]>
  1121. * System.Data.SqlClient/SqlParameter.cs: flush
  1122. * System.Data.SqlClient/SqlParameterCollection.cs: fixes
  1123. for the Item property, IndexOf, and Contains.
  1124. * Test/SqlSharpCli.cs: added input parameters support.
  1125. when a query is executed, if a parameter name matches
  1126. a SQL# internal variable name, it uses that value for the parameter; otherwise,
  1127. the user is prompted for the parameter value. Currently, it only supports
  1128. string parameters.
  1129. 2002-08-21 Rodrigo Moya <[email protected]>
  1130. * System.Data.OleDb/libgda.cs: adapted to changes in libgda (get_vtype
  1131. and get_type for GdaValue).
  1132. * System.Data.OleDb/OleDbDataReader.cs: adapted to changes in
  1133. libgda.cs.
  1134. 2002-08-20 Rodrigo Moya <[email protected]>
  1135. * System.Data.OleDb/OleDbConnection.cs (DataReader): new internal
  1136. property.
  1137. (Close): set the dataReader to null.
  1138. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader): set the
  1139. connection's DataReader property to this object.
  1140. (Close): set it to null here.
  1141. (Depth, IsDbNull): implemented.
  1142. (this): implemented the Item property with a string indexer.
  1143. * System.Data.OleDb/OleDbCommand.cs (ExecuteNonQuery, ExecuteReader,
  1144. ExecuteScalar): do nothing if there's already an open data reader.
  1145. * System.Data.OleDb/libgda.cs: more API functions.
  1146. * System.Data.OleDb/TestOleDb.cs (TestDataReader): close the data
  1147. reader before continuing.
  1148. 2002-08-20 Franklin Wise <[email protected]>
  1149. * System.Data/System.Data.build: added nowarn:0679
  1150. * System.Data/System.DataTable: cleaned up class, added MonoTODO tags
  1151. setup to begin implementing. Implemented ctor().
  1152. * Tests: See System.Data\Test\ChangeLog
  1153. 2002-08-19 Rodrigo Moya <[email protected]>
  1154. * System.Data.OleDb/OleDbSchemaGuid.cs: initialize static members.
  1155. 2002-08-19 Franklin Wise <[email protected]>
  1156. * Tests: See System.Data\Test\ChangeLog
  1157. * System.Data/UniqueConstraint.cs: More validation.
  1158. * System.Data/ForeignKeyConstraint.cs: Added more validation rules.
  1159. Another LAMESPEC tag. Implemented more of Add/Remove Setup/Cleanup
  1160. logic.
  1161. * System.Data/DataTable.cs: Added more MonoTODO tags
  1162. * class/System.Data/.cvsignore: added tmp & Temp
  1163. * System.Data/Constraint.cs: Changed abstract helpers to virtual and
  1164. internal.
  1165. * System.Data/ConstraintCollection.cs: Commented out unused line.
  1166. 2002-08-18 Rodrigo Moya <[email protected]>
  1167. * System.Data.OleDb/OleDbConnection.cs (ChangeDatabase): implemented.
  1168. * System.Data.OleDb/OleDbException.cs (OleDbException): added internal
  1169. constructor.
  1170. (ErrorCode, Message, Source, Errors): implemented.
  1171. * System.Data.OleDb/OleDbError.cs: implemented the full class.
  1172. * System.Data.OleDb/libgda.cs: added more libgda functions.
  1173. * System.Data.OleDb/TestOleDb.cs (TestOleDb): display properties for
  1174. the opened connection.
  1175. 2002-08-18 Rodrigo Moya <[email protected]>
  1176. * System.Data.OleDb/OleDbConnection.cs (ServerVersion): implemented.
  1177. * System.Data.OleDb/OleDbDataReader.cs (Close): clear the results
  1178. ArrayList after releasing the items.
  1179. (GetName, GetDateTime, GetDouble, GetSingle, GetInt16, GetInt32,
  1180. GetOrdinal, GetString): implemented.
  1181. (GetDataTypeName): made it get the type from the data model, not from
  1182. the current value, which could not have been retrieved yet.
  1183. (GetValue): call the Get* method corresponding with the data type of
  1184. the requested column.
  1185. * System.Data.OleDb/libgda.cs: added more libgda functions.
  1186. (GdaTimestamp, GdaDate, GdaTime): new marshalled structures.
  1187. * System.Data.OleDb/TestOleDb.cs (TestDateReader): display column
  1188. titles via OleDbDataReader.GetName ().
  1189. (TestOleDb): create temporary table with a date field.
  1190. (InsertRow): set current date for the date field.
  1191. 2002-08-18 Rodrigo Moya <[email protected]>
  1192. * System.Data.OleDb/OleDbDataReader.cs (this[]): made it just call
  1193. GetValue, which will take care of all the work needed.
  1194. (Close): implemented basic stuff.
  1195. (~OleDbDataReader): implemented.
  1196. * System.Data.OleDb/libgda.cs: added more needed functions.
  1197. 2002-08-16 Rodrigo Moya <[email protected]>
  1198. * System.Data.OleDb/TestOleDb.cs: made it work with a temporary table
  1199. we create.
  1200. (TestTransaction): added test for transactions.
  1201. 2002-08-16 Rodrigo Moya <[email protected]>
  1202. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  1203. * System.Data.OleDb/OleDbDataReader.cs (GetBoolean): throw exceptions
  1204. when there are errors.
  1205. (GetByte, GetChar, GetDataTypeName, GetValue, Read): implemented.
  1206. * System.Data.OleDb/TestOleDb.cs: added more testing code for data
  1207. readers.
  1208. 2002-08-15 Rodrigo Moya <[email protected]>
  1209. * System.Data.OleDb/libgda.cs: added new needed libgda functions.
  1210. * System.Data.OleDb/OleDbParameterCollection.cs (GdaParameterList):
  1211. create an empty GdaParameterList.
  1212. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): check values
  1213. for NULL before passing them to Marshal.PtrToStructure, which issues
  1214. an exception if the value is NULL.
  1215. 2002-08-15 Rodrigo Moya <[email protected]>
  1216. * System.Data/UniqueConstraint.cs (UniqueConstraint): commented
  1217. unreachable code to avoid compiler warning.
  1218. * System.Data.OleDb/libgda.cs (GdaList): added new internal class.
  1219. * System.Data.OleDb/OleDbConnection.cs (DataSource): implemented.
  1220. (OpenReader): removed internal method.
  1221. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader): split correctly
  1222. the list of returned data models.
  1223. 2002-08-15 Franklin Wise <[email protected]>
  1224. * System.Data/Constraint.cs: Added helper virtual functions
  1225. * System.Data/ConstraintCollection.cs: Improved constraint removal,
  1226. validation. Removed specific knowledge of subclasses of
  1227. Constraint.
  1228. * System.Data/DataColumn.cs: Added static helper function to compare
  1229. if two DataColumn arrays are the same.
  1230. * System.Data/ForeignKeyConstraint.cs: Continued to flush out.
  1231. * System.Data/UniqueConstraint.cs: Implemented. Still some constraint
  1232. validation to do.
  1233. 2002-08-13 Franklin Wise <[email protected]>
  1234. * System.Data/DataRow.cs: Added several fixme tags.
  1235. 2002-08-13 Rodrigo Moya <[email protected]>
  1236. * System.Data.SqlClient/SqlDataAdapter.cs (DeleteCommand,
  1237. InsertCommand, SelectCommand, UpdateCommand): removed 'new' keyword
  1238. to avoid compiler warnings.
  1239. 2002-08-12 Franklin Wise <[email protected]>
  1240. * System.Data/Constraint.cs: Implemented
  1241. * System.Data/UniqueConstraint.cs: GetHashCode() &
  1242. special case Ctor. Still need to be implemented. LAMESPEC tags
  1243. added.
  1244. * System.Data/ConstraintCollection.cs: Clear() &
  1245. AddRange() need to be finished. Several LAMESPEC tags.
  1246. * Allow Constraint collection to be created in DataTable.
  1247. * System.Data/ForeignKeyConstraint: Added a couple of
  1248. helper functions.
  1249. * System.Data/DataColumnCollection New/Added DataColumns now have
  1250. Table property set.
  1251. 2002-08-11 Rodrigo Moya <[email protected]>
  1252. * System.Data.OleDb/libgda.cs: added some GdaValue functions.
  1253. * System.Data.OleDb/OleDbCommand.cs (OpenReader): removed this
  1254. internal method, since we don't need it.
  1255. (ExecuteReader): call SetupGdaCommand before executing the command
  1256. via libgda functions.
  1257. (ExecuteScalar): implemented.
  1258. * System.Data.OleDb/OleDbDateReader.cs (OleDbDataReader): removed call
  1259. to OleDbCommand.OpenReader.
  1260. (GetBoolean): implemented.
  1261. 2002-08-08 Franklin Wise <[email protected]>
  1262. * System.Data/IDbComand.cs: IDbCommand now inherits IDisposable
  1263. * System.Data/IDbConnection.cs: IDbConnection now inherits IDisposable
  1264. * System.Data.SqlTypes/SqlCompareOptions.cs: Enum now set to correct
  1265. values.
  1266. 2002-08-06 Gonzalo Paniagua Javier <[email protected]>
  1267. * System.Data.OleDb/OleDbConnection.cs: little fixes to make it work
  1268. and don't show a warning in Open.
  1269. * System.Data.OleDb/TestOleDb.cs: added Close.
  1270. 2002-08-05 Rodrigo Moya <[email protected]>
  1271. * System.Data.OleDb/OleDbConnection.cs (ConnectionString,
  1272. ConnectionTimeout, ServerVersion, GdaConnection):
  1273. corrected style.
  1274. (OleDbConnection): call libgda.gda_init on constructor.
  1275. * System.Data.OleDb/libgda.cs (libgda): removed static constructor,
  1276. which wasn't been called.
  1277. * System.Data.OleDb/TestOleDb.cs (TestOleDb): updated to really
  1278. make some tests.
  1279. 2002-08-04 Rodrigo Moya <[email protected]>
  1280. * list: added missing System.Data.OleDb and
  1281. System.Data.Common files.
  1282. * System.Data.OleDb/ChangeLog: removed and merged with
  1283. System.Data's ChangeLog.
  1284. * System.Data.OleDb/OleDbDataAdapter.cs:
  1285. * System.Data.OleDb/OleDbPermission.cs: compilation fixes.
  1286. 2002-07-30 Rodrigo Moya <[email protected]>
  1287. * System.Data.OleDb/OleDbDataReader.cs (FieldCount): implemented.
  1288. (IsClosed, Item, RecordsAffected): implemented some properties.
  1289. * libgda.cs: added GdaDataModel methods.
  1290. 2002-07-29 Rodrigo Moya <[email protected]>
  1291. * System.Data.OleDb/OleDbDataReader.cs (OleDbDataReader constructor): changed to receive
  1292. a second argument (ArrayList results).
  1293. (NextResult): implemented.
  1294. * System.Data.OleDb/OleDbCommand.cs: don't store the ArrayList of results, since we'll
  1295. pass that to the OleDbDataReader.
  1296. (OleDbCommand constructor): don't create the ArrayList of results.
  1297. (GdaResults): removed property.
  1298. (ExecuteReader): create a temporary ArrayList and pass that to the
  1299. OleDbDataReader constructor.
  1300. 2002-07-28 Rodrigo Moya <[email protected]>
  1301. * System.Data.OleDb/OleDbCommand.cs (ExecuteReader):
  1302. (CreateParameter): implemented IDbCommand methods.
  1303. (CommandText): don't create many GdaCommand's, only one is needed.
  1304. (ExecuteNonQuery): set up the internal GDA command object.
  1305. (ExecuteReader): use correctly the unique GDA command object.
  1306. * System.Data.OleDb/libgda.cs: added new libgda calls.
  1307. 2002-07-27 Rodrigo Moya <[email protected]>
  1308. * System.Data.OleDb/OleDbConnection.cs (CreateCommand):
  1309. (BeginTransaction): implemented IDbConnection methods.
  1310. 2002-07-12 Rodrigo Moya <[email protected]>
  1311. * list: added System.Data.OleDb files to file list.
  1312. 2002-07-11 Rodrigo Moya <[email protected]>
  1313. * System.Data.OleDb/libgda.cs: added new libgda functions and some enumerations.
  1314. * System.Data.OleDb/OleDbParameter.cs (IsNullable): removed explicit implementation
  1315. of the set method for this property.
  1316. * System.Data.OleDb/OleDbDataAdapter.cs (MissingMappingAction): implemented.
  1317. (MissingSchemaAction): implemented.
  1318. 2002-07-10 Tim Coleman <[email protected]>
  1319. * System.Data.OleDb/OleDbCommandBuilder.cs: Added new methods, properties
  1320. * System.Data.OleDb/OleDbConnection.cs: Modified constructor
  1321. * System.Data.OleDb/OleDbError.cs: Added stubbs
  1322. * System.Data.OleDb/OleDbException.cs: Added stubbs
  1323. * System.Data.OleDb/OleDbInfoMessageEventArgs.cs: Added stubbs
  1324. * System.Data.OleDb/OleDbInfoMessageEventHandler.cs: style change
  1325. * System.Data.OleDb/OleDbParameter.cs: Added conversion from type to OleDbType
  1326. * System.Data.OleDb/OleDbPermission.cs: Added stubbs
  1327. * System.Data.OleDb/OleDbSchemaGuid.cs: Added stubbs
  1328. * System.Data.OleDb/OleDbTransaction.cs: New constructors, changes to methods to
  1329. support transaction nesting
  1330. * System.Data.OleDb/libgda.cs: Added my name to this file
  1331. 2002-07-09 Tim Coleman <[email protected]>
  1332. * System.Data.OleDb/OleDbCommand.cs: Style changes, added new methods
  1333. * System.Data.OleDb/OleDbConnection.cs: Style changes, added new methods
  1334. * System.Data.OleDb/OleDbDataAdapter.cs: Implementation
  1335. * System.Data.OleDb/OleDbDataReader.cs: Added stubbs
  1336. * System.Data.OleDb/OleDbErrorCollection.cs: Added stubbs, some implementation
  1337. * System.Data.OleDb/OleDbParameter.cs: Style changes, added new methods
  1338. * System.Data.OleDb/OleDbParameterCollection.cs: Style changes, added new methods
  1339. * System.Data.OleDb/OleDbPermissionAttribute.cs: Style changes, added new methods
  1340. * System.Data.OleDb/OleDbRowUpdatedEventArgs.cs: Added stubbs
  1341. * System.Data.OleDb/OleDbRowUpdatingEventArgs.cs: Added stubbs
  1342. * System.Data.OleDb/OleDbTransaction.cs: Style changes, added new methods
  1343. * System.Data.OleDb/OleDbType.cs: Fixed two typos
  1344. * System.Data.OleDb/libgda.cs: Style changes, added new methods
  1345. 2002-07-09 Tim Coleman <[email protected]>
  1346. * System.Data.build: remove restriction on System.Data.OleDb build
  1347. 2002-06-03 Rodrigo Moya <[email protected]>
  1348. * System.Data.OleDb/OleDbParameterCollection.cs (GetEnumerator, SyncRoot,
  1349. IsSynchronized): implemented.
  1350. 2002-06-02 Rodrigo Moya <[email protected]>
  1351. * System.Data.OleDb/OleDbTransaction.cs (Dispose): added missing method.
  1352. * System.Data.OleDb/OleDbCommand.cs (Clone): added missing methods.
  1353. (Parameters, Transaction, Connection): made these overload
  1354. IDbCommand's ones.
  1355. * System.Data.OleDb/OleDbParameterCollection.cs (IndexOf, Remove, RemoveAt):
  1356. call m_list methods, not own ones.
  1357. * System.Data.OleDb/OleDbParameter.cs: more implementation.
  1358. 2002-06-02 Rodrigo Moya <[email protected]>
  1359. * System.Data.OleDb/OleDbTransaction.cs (Connection, IsolationLevel, Begin,
  1360. Commit, Rollback): implemented.
  1361. (GdaConnection): added new internal property.
  1362. * System.Data.OleDb/OleDbParameter.cs:
  1363. * System.Data.OleDb/OleDbParameterCollection.cs: implemented some methods and
  1364. properties.
  1365. * System.Data.OleDb/libgda.cs: added yet more libgda API functions.
  1366. 2002-06-01 Rodrigo Moya <[email protected]>
  1367. * System.Data.OleDb/libgda.cs: added new libgda API functions.
  1368. * System.Data.OleDb/OleDbConnection.cs (Provider): implemented.
  1369. (BeginTransaction): made it overload IDbConnection methods.
  1370. (ChangeDatabase): new stub, needs some work on libgda for being
  1371. implemented.
  1372. (Clone): new stub.
  1373. (Close): implemented.
  1374. (CreateCommand): implemented.
  1375. (GetOleDbSchemaTable): new stub, until I understand what to do here.
  1376. (Open): implemented basic stuff, which is just supporting connection
  1377. strings that represent a GDA data source name. More to come.
  1378. (InfoMessage, StateChange): added events.
  1379. * System.Data.OleDb/TestOleDb.cs: test program for System.Data.OleDb.
  1380. 2002-05-29 Rodrigo Moya <[email protected]>
  1381. * System.Data.OleDb/libgda.cs: added static constructor.
  1382. (GdaClient): new static property to get the underlying GdaClient
  1383. object.
  1384. * System.Data.OleDb/OleDbConnection.cs: removed GDA initialization, which belongs to
  1385. the static 'libgda' class.
  1386. 2002-05-29 Rodrigo Moya <[email protected]>
  1387. * System.Data.OleDb/libgda.cs: static class for libgda API calls.
  1388. * System.Data.OleDb/OleDbConnection.cs: implemented constructors.
  1389. (ConnectionString, Connectiontimeout, Database, State):
  1390. implemented class properties.
  1391. (BeginTransaction): implemented.
  1392. * System.Data.OleDb/OleDbTransaction.cs: implemented protected constructors.
  1393. * System.Data.OleDb/TestGDA.cs: simple test for libgda API.
  1394. 2002-05-27 Rodrigo Moya <[email protected]>
  1395. * System.Data.OleDb/*: started System.Data.OleDb provider, based on libgda.
  1396. 2002-06-06 Rodrigo Moya <[email protected]>
  1397. * list: added missing PostgresTypes.cs file.
  1398. 2002-06-02 Francisco Jr. <[email protected]>
  1399. * System.Data.SqlClient/SqlParameterCollection.cs: implemented missing
  1400. methods.
  1401. 2002-05-30 Daniel Morgan <[email protected]>
  1402. * System.Data.SqlClient/SqlConnection.cs: modifed -
  1403. start to implement the interfaces properly and
  1404. properly doing a Close(), Dispose(), and
  1405. releasing resources
  1406. * Test/SqlSharpCli.cs: modified -
  1407. add support for MySQL in Mono.Data.MySql
  1408. and OleDb support in System.Data.OleDb. However,
  1409. the OleDb support is commented right now.
  1410. When the program starts up, a shorter help menu should
  1411. display the most important commands: help and quit
  1412. 2002-05-28 Rodrigo Moya <[email protected]>
  1413. * System.Data.build: exclude System.Data.OleDb files.
  1414. 2002-05-27 Daniel Morgan <[email protected]>
  1415. * System.Data.SqlClient/SqlCommand.cs: typo
  1416. should be CommandBehavior.KeyInfo
  1417. * Test/SqlSharpCli.cs: refactored and added a few more
  1418. features.
  1419. 2002-05-27 Tim Coleman <[email protected]>
  1420. * list: update to compile properly (add missing
  1421. files and switch path delimiter from '\' to '/').
  1422. 2002-05-26 Daniel Morgan <[email protected]>
  1423. * System.Data/DataRow.cs
  1424. * System.Data.Common/DbDataAdapter.cs: fix to
  1425. get Test/TestSqlDataAdapter.cs to work again
  1426. * Test/TestSqlDataAdapter.cs: removed comment
  1427. about SqlDataReader:NextResult() not being implemented; it
  1428. bas been implemented
  1429. 2002-05-26 Daniel Morgan <[email protected]>
  1430. * System.Data/DataRow.cs: modified
  1431. support setting of DBNull.Value
  1432. using the Item indexer this[DataColumn]
  1433. * System.Data.SqlClient/SqlCommand.cs: modified
  1434. tweaks to show TODO's for other CommandBehavior.
  1435. Set AllowDBNull column to true for IsKey row
  1436. in schema DataTable.
  1437. * System.Data.SqlClient/SqlConnection.cs: modified
  1438. if transaction is in progress when a Close() is called,
  1439. do a transaction Rollback.
  1440. 2002-05-26 Daniel Morgan <[email protected]>
  1441. * Test/SqlSharpCli.cs: added file
  1442. My new toy. SQL# is a command-line tool to enter
  1443. SQL commands and queries using Mono System.Data.
  1444. It also serves as a test for Mono System.Data.
  1445. * System.Data.SqlClient/SqlCommand.cs: modified
  1446. - ExecuteNonQuery(), ExecuteScalar(), and ExecuteReader()
  1447. should handle the results from SQL Commands and Queries.
  1448. - Internal class SqlResult should not create schema Table
  1449. for the result from a SQL Command. Also, set the RecordsRetrieved
  1450. property for SqlDataReader.
  1451. - Closing the SqlDataReader should Close() the SqlConnection for
  1452. a CommandBehavior.CloseConnection.
  1453. - Set defaults for SqlResult
  1454. * System.Data.SqlClient/SqlConnection.cs: modified -
  1455. when SqlDataReader is Close()
  1456. should Close() the SqlConnection for
  1457. a CommandBehavior.CloseConnection. Changed internal Property
  1458. from OpenReader get/set to IsReaderOpen get and created
  1459. internal methods OpenReader()/CloseReader() for SqlCommand to call.
  1460. SqlConnection needs to be prevented from doing while SqlDataReader
  1461. is being used.
  1462. * System.Data.SqlClient/SqlDataReader.cs: modified -
  1463. call SqlCommand's OpenReader() internal method. get
  1464. RecordsRetrieved from SqlResult. set/reset default
  1465. values for SqlDataReader.
  1466. * Test/PostgresTest.cs
  1467. * Test/TestExecuteScalar.cs
  1468. * Test/TestSqlDataReader.cs: modified
  1469. for the Execute...() methods in SqlCommand
  1470. to test SQL Queries and Commands
  1471. * Test/System.Data_test.build: modified
  1472. exclude new file Test/SqlSharpCli.cs from
  1473. test build
  1474. 2002-05-24 Tim Coleman <[email protected]>
  1475. * System.Data.Common/DbDataAdapter.cs: remove IDbCommands, except
  1476. for get accessors. These should be implemented in derived classes. See
  1477. SqlDataAdapter for clues.
  1478. * System.Data.SqlClient/SqlDataAdapter.cs: implement IDbDataAdapter
  1479. * System.Data.Common/DataAdapter.cs:
  1480. * System.Data.Common/DataTableMappingCollection.cs:
  1481. * System.Data.Common/DataTableMapping.cs:
  1482. * System.Data.Common/DataColumnMappingCollection.cs:
  1483. * System.Data.Common/DataColumnMapping.cs:
  1484. Properly (I hope!) implement all of the appropriate interfaces
  1485. for these classes.
  1486. 2002-05-23 Tim Coleman <[email protected]>
  1487. * System.Data.SqlClient/SqlCommand.cs: include
  1488. the BaseColumnName in the schema table. Was missed before.
  1489. * System.Data.Common/DbDataAdapter.cs: Use DataTable
  1490. mappings so that the DataSet and DataTable are more closely tied.
  1491. Get schema information from the DataTable using GetSchemaTable ()
  1492. Various other little fixes
  1493. * System.Data.Common/DataColumnMappingCollection.cs:
  1494. * System.Data.Common/DataTableMapping.cs:
  1495. * System.Data.Common/DataTableMappingCollection.cs: Some
  1496. implementation, enough to be used by DbDataAdapter.
  1497. 2002-05-23 Daniel Morgan <[email protected]>
  1498. * System.Data.SqlClient/SqlCommand.cs: set
  1499. the "ProviderType" to the PostgreSQL type oid
  1500. * System.Data.SqlClient/SqlDataReader.cs: fix
  1501. for various properties and methods that
  1502. return meta data: Item indexers this[name] and this[index],
  1503. GetFieldType, GetName, and GetOrdinal. SqlDataAdapter
  1504. should work again.
  1505. 2002-05-22 Daniel Morgan <[email protected]>
  1506. * System.Data/DataRow.cs: change suggested
  1507. by tim: in Item indexer, do an EndEdit()
  1508. * System.Data.SqlClient/SqlCommand.cs: more
  1509. fixes to SqlResult. After setting each item in
  1510. the DataRow, do an AcceptChanges() to commit
  1511. the changes in the DataRow. For DataType, use a Type
  1512. of System.String since System.Type nor System.Object
  1513. seems to work.
  1514. * Test/TestSqlDataReader.cs
  1515. * Test/PostgresTest.cs: updated to to be on
  1516. the way schema table is suppose to work
  1517. 2002-05-22 Daniel Morgan <[email protected]>
  1518. * System.Data.SqlClient/SqlCommand.cs: more work on
  1519. building the schema table
  1520. 2002-05-22 Tim Coleman <[email protected]>
  1521. * System.Data.SqlClient/SqlCommand.cs: preliminary work
  1522. on getting the schema table correctly built.
  1523. 2002-05-21 Daniel Morgan <[email protected]>
  1524. * System.Data.SqlClient/ParmUtil.cs: added file - to
  1525. provide utility for conversion of input parameters
  1526. * System.Data.SqlClient/PostgresTypes.cs: added file -
  1527. moved the PostgreHelper class to here. May eventually
  1528. move the internal class PostgresTypes that's inside the
  1529. SqlConnection to here as well.
  1530. Handling of PostgreSQL <-> .NET types need to be though
  1531. out more. Also, the PostgreHelper has a method to convert
  1532. from .NET types to a string which can be put into used in
  1533. an SQL statement to execute against a PostgreSQL database.
  1534. This is the beginnings of parameters support. It currently
  1535. only supports input parameters. Still need to do output,
  1536. input/output, and return parameters.
  1537. * Test/TestSqlParameters.cs: new test to test the input
  1538. parameters in System.Data.SqlClient against a
  1539. PostgreSQL db.
  1540. * System.Data.SqlClient/PostgresLibrary.cs: moved
  1541. PostgresHelper class to file PostgresTypes.cs. Also
  1542. moved struct PostgresType there too.
  1543. * System.Data.SqlClient/SqlCommand.cs: added input
  1544. parameters support
  1545. * System.Data.SqlClient/SqlParameter.cs: got
  1546. SqlParameter to work
  1547. * System.Data.SqlClient/SqlParameterCollection.cs: got
  1548. SqlParameterCollection to work
  1549. * Test/System.Data_test.build: added files to exclude
  1550. from test build
  1551. * System.Data.SqlClient/SqlConnection.cs: release resources
  1552. no longer used
  1553. 2002-05-18 Daniel Morgan <[email protected]>
  1554. * System.Xml: added directory for classes with namespace
  1555. System.Xml to go into the System.Data.dll assembly
  1556. * System.Xml/XmlDataDocument: added file
  1557. for stubbed concrete class XmlDataDocument which
  1558. inherits from XmlDocument. Its purpose is to provide
  1559. a W3C XML DOM Document for relational data and interacting
  1560. with a DataSet
  1561. 2002-05-18 Daniel Morgan <[email protected]>
  1562. * System.Data.SqlClient/SqlCommand.cs: handle CommandTypes
  1563. Text, TableDirect, and StoredProcedure
  1564. * Test/PostgresTest.cs: changed call to version()
  1565. stored procedure to use the CommandType of StoredProcedure
  1566. * Test/TestSqlDataReader.cs: test all the CommandTypes
  1567. 2002-05-18 Daniel Morgan <[email protected]>
  1568. * System.Data.build: took out all excluded
  1569. files except the ones in the Test directory
  1570. because all files compile now. It does not
  1571. mean they all work or have implementations
  1572. though.
  1573. * System.Data/DataRelationCollection.cs
  1574. * System.Data/DataTableRelationCollection.cs
  1575. * System.Data/InternalDataCollectionBase.cs
  1576. * System.Data.Common/DbDataPermission.cs
  1577. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs
  1578. * System.Data.SqlClient/SqlClientPermission.cs
  1579. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: changes
  1580. to get all System.Data* files to compile.
  1581. * System.Data.SqlClient/SqlCommand.cs: started coding
  1582. to prevent SqlConnection and SqlCommand from doing
  1583. anyting while fetching data using SqlDataReader. Also,
  1584. started coding to undo this prevention once the
  1585. SqlDataReader is closed.
  1586. * System.Data.SqlClient/SqlConnection.cs: get database server
  1587. version. Started coding to prevent connection from
  1588. doing anything while fetching data and undo once the reader
  1589. is closed. Include events SqlInfoMessage and StateChange.
  1590. * System.Data.SqlClient/SqlDataReader.cs: start coding to
  1591. prevent connection and command from doing anything while
  1592. fetching data, and undo when closed.
  1593. * Test/PostgresTest.cs: added test to get ServerVersion
  1594. property from SqlConnection
  1595. 2002-05-18 Tim Coleman <[email protected]>
  1596. * System.Data/DataRow.cs: More implementation,
  1597. as well as boundary checks and small semantic
  1598. repairs
  1599. 2002-05-18 Tim Coleman <[email protected]>
  1600. * System.Data/DataRow.cs: Try to reduce memory
  1601. usage by only creating the original and proposed
  1602. arrays as required in BeginEdit, and then destroying
  1603. proposed during EndEdit, and original during AcceptChanges.
  1604. * System.Data.Common/DbDataAdapter.cs: Make the
  1605. startRecord and maxRecords parameters work correctly.
  1606. 2002-05-18 Tim Coleman <[email protected]>
  1607. * System.Data/DataRow.cs: Move the null check in
  1608. ItemArray set to above the Invalid Cast check, so
  1609. that we don't get null reference exceptions.
  1610. 2002-05-17 Daniel Morgan <[email protected]>
  1611. * System.Data.SqlClient/PostgresLibrary.cs: handle
  1612. data value from database being NULL
  1613. * System.Data.SqlClient/SqlCommand.cs: for ExecuteReader,
  1614. allow multiple result sets. Added new internal class
  1615. SqlResult to pass result set data from SqlCommand
  1616. to SqlDataReader.
  1617. * System.Data.SqlClient/SqlDataReader.cs: allow
  1618. multiple result sets.
  1619. * System.Data.SqlClient/SqlConnection.cs: moved
  1620. things around. Implement IDisposable.
  1621. * Test/TestSqlDataReader.cs: test for execution
  1622. of multiple result sets and display the results
  1623. of these multiple results sets
  1624. * Test/TestSqlDataAdapter.cs: tweaks
  1625. 2002-05-17 Tim Coleman <[email protected]>
  1626. * System.Data.Common/DbDataAdapter.cs:
  1627. - More implementation of Fill methods
  1628. - Get rid of isDirty flag, because we can just check
  1629. if the table exists
  1630. - Do *not* remove DataTables before Filling them
  1631. - Implicitly open the connection before doing a Fill
  1632. if it does not exist.
  1633. * System.Data.SqlClient/SqlDataAdapter.cs:
  1634. - Minor fixup
  1635. * System.Data/DataTableCollection.cs:
  1636. - Add DataSet to internal, undocumented constructor
  1637. - When a table is created, set its DataSet property
  1638. - Default table name for creation is "Table1" (see .NET)
  1639. - Inherit the ArrayList list from InternalDataCollecitonBase
  1640. and maintain a hashtable between table names and
  1641. DataTables
  1642. * System.Data/DataTable.cs:
  1643. - Add internal dataSet field. This is used by
  1644. DataTableCollection when the DataTable is constructed.
  1645. * System.Data/DataSet.cs:
  1646. - Pass a reference to the DataSet when constructing the
  1647. DataTableCollection.
  1648. 2002-05-16 Tim Coleman <[email protected]>
  1649. * System.Data.Common/DbDataAdapter.cs:
  1650. Use table.Rows.Add (itemArray) instead of
  1651. table.Rows.Add (thisRow) to provide better
  1652. abstraction.
  1653. * System.Data/DataRowCollection.cs:
  1654. Some implementation of this class.
  1655. * System.Data/InternalDataCollectionBase.cs:
  1656. Some implementation. Most notably, this now
  1657. has an enumerator so we can use foreach (DataRow row in table.Rows)
  1658. in the test classes.
  1659. * System.Data/DataTable.cs:
  1660. Since DataRowCollection now accepts a DataTable in
  1661. its internal constructor, we must pass one in.
  1662. 2002-05-16 Daniel Morgan <[email protected]>
  1663. * Test/TestSqlDataAdapter.cs: added new test
  1664. for SqlDataAdapter, DataSet, DataTableCollection, DataTable,
  1665. DataRowCollection, and DataRow. It tests retrieving data
  1666. based on a SQL SELECT query. This test is based on Tim Coleman's
  1667. test he sent to me.
  1668. 2002-05-16 Tim Coleman <[email protected]>
  1669. * System.Data.Common/DbDataAdapter.cs:
  1670. Use table.Rows.Add (thisRow) instead of
  1671. table.ImportRow (thisRow)
  1672. * System.Data/DataRowCollection.cs:
  1673. Construct the ArrayList before using it
  1674. 2002-05-16 Tim Coleman <[email protected]>
  1675. * System.Data/DataTable.cs:
  1676. Construct the DataRowCollection in the DataTable
  1677. constructor. Otherwise, it's a null reference.
  1678. 2002-05-16 Tim Coleman <[email protected]>
  1679. * System.Data.SqlClient/SqlDataReader.cs:
  1680. Modify GetValues to use Array.Copy() to copy
  1681. the results from fields to values, rather than
  1682. an assignment, which results in loss of data.
  1683. 2002-05-16 Tim Coleman <[email protected]>
  1684. * System.Data/DataRow.cs:
  1685. More implementation and documentation. It should
  1686. work more like expected, although there is no way
  1687. to demonstrate this well yet. DataTable requires
  1688. more work.
  1689. 2002-05-15 Tim Coleman <[email protected]>
  1690. * System.Data/DataRow.cs:
  1691. Minor tweaks as I determine exactly how to
  1692. implement this class.
  1693. 2002-05-14 Duncan Mak <[email protected]>
  1694. * System.Data/DataTable.cs (NewRow): Added missing paren to fix build.
  1695. 2002-05-14 Tim Coleman
  1696. * System.Data/DataRow.cs:
  1697. * System.Data/DataRowBuilder.cs:
  1698. * System.Data/DataTable.cs:
  1699. More implementation of these classes. DataRow
  1700. can now (possibly) do some useful things.
  1701. Still not sure what DataRowBuilder is all about,
  1702. other than passing a DataTable in.
  1703. 2002-05-14 Tim Coleman
  1704. * System.Data/DataRowBuilder.cs:
  1705. Add stubb for this internal class.
  1706. 2002-05-13 Tim Coleman
  1707. * System.Data.Common/DbDataAdapter.cs:
  1708. The maxRecords check was not correct.
  1709. 2002-05-13 Tim Coleman
  1710. * System.Data/DataTableCollection.cs:
  1711. Fix an issue when adding a DataTable and size == 0.
  1712. Now explicitly checks if size > 0 before doing Array.Copy ()
  1713. * System.Data.Common/DbDataAdapter.cs:
  1714. Move closer to a working implementation.
  1715. Make the IDbCommand fields protected so that they can
  1716. be inherited.
  1717. * System.Data.SqlClient/SqlDataAdapter.cs:
  1718. This should inherit the IDbCommands instead of having its
  1719. own. An explicit cast is used to force conversion between
  1720. IDbCommand and SqlCommand
  1721. 2002-05-13 Tim Coleman
  1722. * System.Data.Common/DataTableMappingCollection.cs:
  1723. Some implementation to allow progress with DbDataAdapter
  1724. 2002-05-13 Tim Coleman
  1725. * System.Data.Common/DbDataAdapter.cs:
  1726. Modify to not break compile.
  1727. 2002-05-13 Tim Coleman
  1728. * System.Data.build:
  1729. include SqlDataAdapter, SqlRowUpdatedEventArgs,
  1730. SqlRowUpdatingEventArgs, SqlRowUpdatedEventHandler,
  1731. SqlRowUpdatingEventHandler in the build.
  1732. 2002-05-13 Tim Coleman
  1733. * System.Data.Common/DbDataAdapter.cs:
  1734. More implementation.
  1735. * System.Data.Common/DataAdapter.cs:
  1736. Correction of some of the stubbing, as well as a
  1737. little bit more implementation
  1738. 2002-05-11 Tim Coleman
  1739. * System.Data.SqlClient/SqlDataAdapter.cs:
  1740. * System.Data.Common/DbDataAdapter.cs:
  1741. Moved methods that weren't supposed to
  1742. be in SqlDataAdapter out. They should be implemented
  1743. in DbDataAdapter.
  1744. 2002-05-11 Tim Coleman
  1745. * System.Data.SqlClient/SqlDataAdapter.cs:
  1746. some implementation of this class. Note
  1747. that none of the functionality has been
  1748. tested yet, but I felt it should be checked
  1749. in at this point as it compiles.
  1750. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs:
  1751. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs:
  1752. Modified so that they will compile properly.
  1753. Needed to include SqlDataAdapter in the build.
  1754. 2002-05-11 Rodrigo Moya <[email protected]>
  1755. * System.Data/DataTable.cs (Clear): implemented.
  1756. (DataTable): removed repeated code in constructors, and call the
  1757. basic constructor from the others.
  1758. * System.Data/DataColumn.cs: some tweaks.
  1759. * System.Data/DataRow.cs (RowState): implemented.
  1760. (CancelEdit): set rowState property back to Unchanged.
  1761. (RejectChanges): call CancelEdit.
  1762. (Delete): set rowState to Deleted.
  1763. 2002-05-11 Daniel Morgan <[email protected]>
  1764. * System.Data.build: added copy of System.Data.dll to Test directory
  1765. for easy testing. Also, added clean for it too.
  1766. * System.Data.SqlClient/PostgresLibrary.cs: changed setting of boolean
  1767. from PostgreSQL data type to .NET type.
  1768. * System.Data.SqlClient/SqlDataReader.cs: beginnings
  1769. handling of a NULL value from the database
  1770. * Test/PostgresTest.cs: added tests for NULL values retrieved
  1771. from the database
  1772. * Test/ReadPostgresData.cs
  1773. * Test/TestExecuteScalar.cs
  1774. * Test/TestSqlDataReader.cs
  1775. * Test/TestSqlException.cs
  1776. * Test/TestSqlIsolationLevel.cs: updated tests to use databas user
  1777. "postgres". These tests may eventually be removed since they
  1778. are not flexible.
  1779. 2002-05-10 Rodrigo Moya <[email protected]>
  1780. * System.Data.build: removed reference to non-existant
  1781. TestDataColumn.cs file.
  1782. * System.Data/DataSet.cs: added some implementation.
  1783. 2002-05-09 Daniel Morgan <[email protected]>
  1784. * System.Data.SqlClient/PostgresLibrary.cs: got
  1785. PostgreSQL data types time, date, timestamp (DateTime like)
  1786. mapped to .NET System.DateTime working based
  1787. on ISO DateTime formatting "YYYY-MM-DD hh:mi:ss.ms"
  1788. Also mapped pg type boolean to .net Boolean
  1789. * SqlClient/SqlConnection.cs: run SQL command to set
  1790. Date style to ISO
  1791. * Test/PostgresTest.cs: added test for an UPDATE SQL command,
  1792. added tests for aggregates min(), max(), sum(), count(). could
  1793. not get avg() to work due to some formatting error; someone claimed
  1794. that it was my locale settings. added tests for SELECT of columns
  1795. of type boolean, float, double, date, time, and timestamp. They
  1796. have not been fully tested, but its a start.
  1797. 2002-05-09 Tim Coleman <[email protected]>
  1798. * System.Data.SqlTypes/SqlDecimal.cs: Implementations of
  1799. addition, subtraction, and multiplication for the
  1800. SqlDecimal type, as well as modification of some other
  1801. operations. More to come on this one.
  1802. 2002-05-08 Rodrigo Moya <[email protected]>
  1803. * Test/System.Data_test.build: excluded TestDataColumn, which
  1804. should be replaced with a nunit test.
  1805. * Test/TestDataColumn.cs: added basic test for DataColumn.cs.
  1806. 2002-05-07 Tim Coleman <[email protected]>
  1807. * SqlBinary.cs:
  1808. * SqlBoolean.cs:
  1809. * SqlByte.cs:
  1810. * SqlDateTime.cs:
  1811. * SqlDecimal.cs:
  1812. * SqlDouble.cs:
  1813. * SqlGuid.cs:
  1814. * SqlInt16.cs:
  1815. * SqlInt32.cs:
  1816. * SqlInt64.cs:
  1817. * SqlMoney.cs:
  1818. * SqlSingle.cs:
  1819. * SqlString.cs:
  1820. Fix the broken build I made before. Bad
  1821. me.
  1822. 2002-05-07 Tim Coleman <[email protected]>
  1823. * SqlString.cs:
  1824. Fix a symantic error I made in SqlString
  1825. Equals where I copied and pasted wrongly
  1826. 2002-05-07 Tim Coleman <[email protected]>
  1827. * INullable.cs:
  1828. * SqlBinary.cs:
  1829. * SqlBoolean.cs:
  1830. * SqlByte.cs:
  1831. * SqlCompareOptions.cs:
  1832. * SqlDateTime.cs:
  1833. * SqlDecimal.cs:
  1834. * SqlDouble.cs:
  1835. * SqlGuid.cs:
  1836. * SqlInt16.cs:
  1837. * SqlInt32.cs:
  1838. * SqlInt64.cs:
  1839. * SqlMoney.cs:
  1840. * SqlSingle.cs:
  1841. * SqlString.cs:
  1842. Implement CompareTo, Equals, and String conversions
  1843. for many types
  1844. 2002-05-05 Daniel Morgan <[email protected]>
  1845. * Test/PostgresTest.cs: modified to run completely. There
  1846. are many TODOs in System.Data, so not all data types are
  1847. included in the SELECT SQL query. Also, I made it to where
  1848. it would connect
  1849. using "host=localhost;dbname=test;user=postgres"
  1850. instead of my userid and password. When more types are included,
  1851. update this test.
  1852. 2002-05-05 Daniel Morgan <[email protected]>
  1853. * Test/PostgresTest.cs: added - ported
  1854. libgda postgres-test.c originally by
  1855. Gonzalo Paniagua Javier <[email protected]>
  1856. to C#.
  1857. 2002-05-05 Tim Coleman <[email protected]>
  1858. * System.Data.SqlTypes/SqlBinary.cs:
  1859. * System.Data.SqlTypes/SqlBoolean.cs:
  1860. * System.Data.SqlTypes/SqlByte.cs:
  1861. * System.Data.SqlTypes/SqlDateTime.cs:
  1862. * System.Data.SqlTypes/SqlDecimal.cs:
  1863. * System.Data.SqlTypes/SqlDouble.cs:
  1864. * System.Data.SqlTypes/SqlGuid.cs:
  1865. * System.Data.SqlTypes/SqlInt16.cs:
  1866. * System.Data.SqlTypes/SqlInt32.cs:
  1867. * System.Data.SqlTypes/SqlInt64.cs:
  1868. * System.Data.SqlTypes/SqlMoney.cs:
  1869. * System.Data.SqlTypes/SqlSingle.cs:
  1870. * System.Data.SqlTypes/SqlString.cs:
  1871. More implementation, and code clean-up for consistency.
  1872. Also, I had implemented many conversions as explicit
  1873. that should have been implicit. This should remove
  1874. many of the red X's and green pluses from the
  1875. System.Data.SqlTypes namespace.
  1876. 2002-05-05 Miguel de Icaza <[email protected]>
  1877. * System.Data/DataSet.cs: Remove [Serializable] attributes from
  1878. methods, those only apply to structs or classes.
  1879. Stub out ISerializable, ISupportInitialize, and IListSource methods
  1880. * System.Data/DataRowView.cs: Stub out interface methods for
  1881. IEditableObject, ICustomTypeDescriptor and IDataErrorInfo
  1882. * System.Data/DataView.cs: Comment out non-implemented
  1883. interfaces.
  1884. * System.Data/DataViewSettingsCollection.cs: Type cast variables
  1885. to the correct type to make it compile.
  1886. * System.Data/DataViewSettings.cs: remove reference to
  1887. non-existance type ApplyDefaultSort, it is a boolean.
  1888. 2002-05-05 Tim Coleman <[email protected]>
  1889. * System.Data.SqlTypes/SqlBinary.cs:
  1890. * System.Data.SqlTypes/SqlBoolean.cs:
  1891. * System.Data.SqlTypes/SqlByte.cs:
  1892. * System.Data.SqlTypes/SqlDecimal.cs:
  1893. * System.Data.SqlTypes/SqlDouble.cs:
  1894. * System.Data.SqlTypes/SqlGuid.cs:
  1895. * System.Data.SqlTypes/SqlInt16.cs:
  1896. * System.Data.SqlTypes/SqlInt32.cs:
  1897. * System.Data.SqlTypes/SqlInt64.cs:
  1898. * System.Data.SqlTypes/SqlMoney.cs:
  1899. * System.Data.SqlTypes/SqlSingle.cs:
  1900. * System.Data.SqlTypes/SqlString.cs:
  1901. Various fixes, including adding the SqlNullValueException
  1902. when trying to retrieve the value of a null SqlType,
  1903. and when casting values, a Null of type A converts to a
  1904. Null of type B.
  1905. 2002-05-04 Daniel Morgan <[email protected]>
  1906. * System.Data.SqlClient/PostgresLibrary.cs
  1907. * System.Data.SqlClient/SqlCommand.cs
  1908. * System.Data.SqlClient/SqlConnection.cs
  1909. * System.Data.SqlClient/SqlDataReader.cs
  1910. oid should not be hard coded because they
  1911. can change from one version of PostgreSQL
  1912. to the next. Use the typname's instead.
  1913. The PostgreSQL type data retrieves
  1914. at database connection time. Any unimplemented
  1915. types just default to string. These were things
  1916. suggested by Gonzalo.
  1917. * Test/ReadPostgresData.cs - stuff
  1918. * Test/TestSqlDataReader.cs - stuff
  1919. * System.Data.SqlTypes/SqlInt32.cs - added a using
  1920. 2002-05-03 Tim Coleman <[email protected]>
  1921. * System.Data.build: Fix the build so that test depends on build
  1922. 2002-05-03 Tim Coleman <[email protected]>
  1923. * System.Data.SqlTypes/SqlByte.cs:
  1924. * System.Data.SqlTypes/SqlDateTime.cs:
  1925. * System.Data.SqlTypes/SqlDecimal.cs:
  1926. * System.Data.SqlTypes/SqlDouble.cs:
  1927. * System.Data.SqlTypes/SqlGuid.cs:
  1928. * System.Data.SqlTypes/SqlInt16.cs:
  1929. * System.Data.SqlTypes/SqlInt64.cs:
  1930. * System.Data.SqlTypes/SqlMoney.cs:
  1931. * System.Data.SqlTypes/SqlSingle.cs:
  1932. These files were mysteriously excluded from the last
  1933. patch I made and sent to Rodrigo
  1934. * System.Data.build: include the System.Data.SqlTypes in the build
  1935. 2002-05-03 Daniel Morgan <[email protected]>
  1936. * System.Data.build: removed comments
  1937. * System.Data.SqlClient/PostgresLibrary.cs: changed
  1938. the hard-coded PostgreSQL oid type int's to using an
  1939. enum. Also, added PostgreSQL bpchar (character) type.
  1940. * Test/TestSqlDataReader.cs: updated test
  1941. to include new bpchar PostgreSQL type
  1942. 2002-05-03 Rodrigo Moya <[email protected]>
  1943. * System.Data.SqlTypes/SqlBinary.cs:
  1944. * System.Data.SqlTypes/SqlBoolean.cs:
  1945. * System.Data.SqlTypes/SqlInt32.cs:
  1946. * System.Data.SqlTypes/SqlString.cs: more implementation, by
  1947. Tim Coleman <[email protected]>.
  1948. 2002-05-03 Daniel Morgan <[email protected]>
  1949. * Test/TestExecuteScalar.cs: added test for
  1950. method ExecuteScalar in class SqlCommand.
  1951. * System.Data/DataColumnCollection.cs - it should
  1952. inherit properties from base InternalDataCollectionBase
  1953. and use them instead of overriding them, such as, List.
  1954. * System.Data/DataColumn.cs
  1955. * System.Data/DataTable.cs: tweaks to retrieve
  1956. meta data from the database
  1957. * System.Data.SqlClient/PostgresLibrary.cs -
  1958. added method OidToType to convert PostgreSQL oid type
  1959. to System.Type. Renamed method OidTypeToSystem
  1960. to ConvertPgTypeToSystem for converting the data value
  1961. from a PostgreSQL type to a .NET System type.
  1962. * System.Data.SqlClient/SqlCommand.cs: implemented
  1963. method ExecuteReader which returns a SqlDataReader
  1964. for a light forward only read only result set.
  1965. It works on types int4 ==> Int32 and
  1966. varchar ==> String. Other types
  1967. will come later.
  1968. * System.Data.SqlClient/SqlConnection.cs: added comment
  1969. * System.Data.SqlClient/SqlDataReader.cs: implemented
  1970. class. It works, but still lots to do.
  1971. * Test/ReadPostgresData.cs: stuff
  1972. * Test/TestSqlDataReader.cs: updated test for SqlDataReader
  1973. to display meta data and the data
  1974. 2002-05-03 Duncan Mak <[email protected]>
  1975. * TODO: Took out all the Exceptions. They should be all done now.
  1976. * System.Data/ConstraintException.cs:
  1977. * System.Data/DBConcurrencyException.cs:
  1978. * System.Data/DataException.cs:
  1979. * System.Data/DeletedRowInaccessibleException.cs:
  1980. * System.Data/DuplicateNameException.cs:
  1981. * System.Data/EvaluateException.cs:
  1982. * System.Data/InRowChangingEventException.cs:
  1983. * System.Data/InvalidConstraintException.cs:
  1984. * System.Data/InvalidExpressionException.cs:
  1985. * System.Data/MissingPrimaryKeyException.cs:
  1986. * System.Data/NoNullAllowedException.cs:
  1987. * System.Data/ReadOnlyException.cs:
  1988. * System.Data/RowNotInTableException.cs:
  1989. * System.Data/StrongTypingException.cs:
  1990. * System.Data/SyntaxErrorException.cs:
  1991. * System.Data/TypeDataSetGeneratorException.cs:
  1992. * System.Data/VersionNotFoundException.cs: Added to CVS.
  1993. * System.Data.SqlTypes/SqlNullValueException.cs:
  1994. * System.Data.SqlTypes/SqlTruncateException.cs:
  1995. * System.Data.SqlTypes/SqlTypeException.cs: Added to CVS.
  1996. 2002-05-02 Rodrigo Moya <[email protected]>
  1997. * System.Data/DataViewSettingCollection.cs: implemented.
  1998. * System.Data/DataRowView.cs: new stubs.
  1999. * System.Data.SqlTypes/SqlByte.cs:
  2000. * System.Data.SqlTypes/SqlDateTime.cs:
  2001. * System.Data.SqlTypes/SqlDecimal.cs:
  2002. * System.Data.SqlTypes/SqlDouble.cs:
  2003. * System.Data.SqlTypes/SqlGuid.cs:
  2004. * System.Data.SqlTypes/SqlInt16.cs:
  2005. * System.Data.SqlTypes/SqlInt64.cs:
  2006. * System.Data.SqlTypes/SqlMoney.cs:
  2007. * System.Data.SqlTypes/SqlSingle.cs: new stubs, contributed
  2008. by Tim Coleman <[email protected]>
  2009. * System.Data.build: excluded newly-added files.
  2010. 2002-05-02 Daniel Morgan <[email protected]>
  2011. * System.Data.SqlClient/PostgresLibrary.cs: included new
  2012. internal class that will be a helper class in using
  2013. PostgreSQL. PostgresLibrary is used for the
  2014. pinvoke methods to the PostgreSQL Client
  2015. native C library libpq while the class PostgresHelper
  2016. is used for wrapper or helper methods. It currently only
  2017. has one static method OidTypeToSystem in converting
  2018. PostgreSQL types to .NET System.<type>s, such as,
  2019. a PostgreSQL int8 becomes a .NET System.Int64.
  2020. Only a few types have been added, such as, int2,
  2021. int4, int8, varchar, text, bool, and char. Other types
  2022. will come later.
  2023. * System.Data.SqlClient/SqlCommand.cs: implemented
  2024. method ExecuteScalar which allows us to do aggregate
  2025. functions, such as, count, avg, min, max, and sum. We
  2026. also are able to retrieve the result, convert it to the .NET type
  2027. as an object. The user of the returned object must explicitly cast.
  2028. * Test/ReadPostgresData.cs: updated sample
  2029. to help us learn to retrieve data in System.Data.SqlClient
  2030. classes
  2031. 2002-05-01 Daniel Morgan <[email protected]>
  2032. * System.Data.build: added /nowarn: nnnn arguments
  2033. so you will not get a ton of warnings. The warnings
  2034. being excluded are: 1595, 0067, 0109, 0169, and 0649
  2035. 2002-05-01 Daniel Morgan <[email protected]>
  2036. * System.Data.build: modified to exclude more
  2037. files from the build
  2038. 2002-05-01 Rodrigo Moya <[email protected]>
  2039. * System.Data.SqlClient/SqlClientPermission.cs: added missing
  2040. 'using's.
  2041. * System.Data/MergeFailedEventArgs.cs: new class, contributed
  2042. by John Dugaw <[email protected]>.
  2043. * System.Data.build: excluded new files from build.
  2044. 2002-04-29 Daniel Morgan <[email protected]>
  2045. * Test/ReadPostgresData.cs: added - Uses the
  2046. PostgresLibrary to retrieve a recordset.
  2047. This is not meant to be used in Production, but as a
  2048. learning aid in coding
  2049. class System.Data.SqlClient.SqlDataReader.
  2050. This sample does work.
  2051. * Test/TestSqlDataReader.cs: added - used
  2052. to test SqlDataReader (does not work yet)
  2053. Forgot to add to ChangeLog on last commit.
  2054. 2002-04-28 Rodrigo Moya <[email protected]>
  2055. * System.Data/DataViewSetting.cs: new class.
  2056. 2002-04-28 Rodrigo Moya <[email protected]>
  2057. * System.Data/DataViewManager.cs: new class.
  2058. * System.Data.SqlTypes/INullable.cs: properties for interfaces
  2059. don't have implementation.
  2060. * System.Data.SqlTypes/SqlInt32.cs:
  2061. * System.Data.SqlTypes/SqlString.cs:
  2062. * System.Data.SqlTypes/SqlBoolean.cs: removed destructor, since
  2063. these are strctures.
  2064. * System.Data.SqlClient/SqlClientPermissionAttribute.cs: added
  2065. missing 'using's.
  2066. 2002-04-28 Rodrigo Moya <[email protected]>
  2067. * System.Data/DataTableRelationCollection.cs: use 'new' keyword
  2068. for correctly hiding parent class' members.
  2069. (AddRange): use 'override' keyword on overriden method.
  2070. (Clear): likewise.
  2071. (Contains): likewise.
  2072. (IndexOf): likewise.
  2073. (OnCollectionChanged): likewise.
  2074. (OnCollectionChanging): likewise.
  2075. (RemoveCore): likewise.
  2076. * System.Data/DataColumnCollection.cs: use 'new' keyword.
  2077. * System.Data/DataSet.cs: added missing 'using's.
  2078. 2002-04-28 Rodrigo Moya <[email protected]>
  2079. * System.Data/DataSet.cs:
  2080. * System.Data/DataTableCollection.cs:
  2081. * System.Data/DataView.cs: compilation fixes on Linux.
  2082. 2002-04-28 Daniel Morgan <[email protected]>
  2083. * System.Data/DataRelation.cs
  2084. * System.Data/ForeignKeyConstraint.cs
  2085. * System.Data/UniqueConstraint.cs: added more stubs
  2086. * System.Data/DataTableRelationCollection.cs: added back to cvs
  2087. and modified for compile errors. DataRelationCollection is an
  2088. abstract class and there must be a class that implements for
  2089. DataTable/DataSet. DataTableRelationCollection was changed
  2090. to an internal class.
  2091. * System.Data.build: modified - new files added
  2092. also wanted to include files/classes in the build
  2093. so we can get a compilable forward read only result set.
  2094. It compiles now using csc/nant with warnings, but this
  2095. is a start for adding functionality for the result set.
  2096. Classes associated with/and DataSet are still excluded.
  2097. * TODO: modified - updated to do list for System.Data
  2098. * System.Data/Constraint.cs
  2099. * System.Data/ConstraintCollection.cs
  2100. * System.Data/DataRelationCollection.cs
  2101. * System.Data/DataRow.cs
  2102. * System.Data/DataRowChangeEventArgs.cs
  2103. * System.Data/DataRowCollection.cs
  2104. * System.Data/DataTable.cs
  2105. * System.Data/DataTableCollection.cs
  2106. * System.Data/InternalDataCollectionBase.cs
  2107. * System.Data/PropertyCollection.cs: modified -
  2108. changes to compile SqlDataReader/DataTable and
  2109. dependencies
  2110. * System.Data/IDbCommand.cs
  2111. * System.Data.SqlClient/SqlCommand.cs: modified -
  2112. un-commented overloaded methods ExecuteReader
  2113. which returns a SqlDataReader
  2114. 2002-04-28 Rodrigo Moya <[email protected]>
  2115. * System.Data/DataTableCollection.cs: more implementation.
  2116. (Count): added 'override' keyword, as pointer out by Martin.
  2117. * System.Data.Common/DataColumnMappingCollection.cs (Add, AddRange):
  2118. only call Array.Copy when there is really stuff to be copied.
  2119. (CopyTo): don't create the temporary array, it's not needed.
  2120. * System.Data.build: excluded newly added file from build.
  2121. 2002-04-27 Rodrigo Moya <[email protected]>
  2122. * System.Data/DataTableRelationCollection.cs: removed, it's not
  2123. on MS SDK documentation.
  2124. * System.Data/DataTableCollection.cs: new class.
  2125. 2002-04-27 Daniel Morgan <[email protected]>
  2126. * System.Data/DataRowChangeEventArgs.cs
  2127. * System.Data/DataRowCollection.cs
  2128. * System.Data/DataView.cs
  2129. * System.Data/PropertyCollection.cs: added new stubs
  2130. * System.Data.build: modified - added new files to exclude
  2131. from build
  2132. * TODO: modified - removed files from TODO list
  2133. that were stubbed above
  2134. * System.Data/DataColumn.cs
  2135. * System.Data/DataRow.cs: modified - various tweaks
  2136. and added internal method SetTable to set the reference
  2137. to a DataTable
  2138. * System.Data/DataSet.cs: modified - class was not
  2139. completely stubbed.
  2140. * System.Data/DataTable.cs: modified - temporarily commented
  2141. DataSet and DataView references - trying to compile a SqlDataReader,
  2142. DataTable, and dependencies for a forward read-only result set.
  2143. SqlDataAdapter, DataSet, and DataView will come later once we can get
  2144. a forward read only result set working.
  2145. * System.Data/IDataRecord.cs: modified - source code lines should
  2146. not be > 80
  2147. * System.Data/InternalDataCollectionBase.cs: modified - started
  2148. implementing this base class for collection of data rows,
  2149. columns, tables, relations, and constraints
  2150. * System.Data.SqlClient/SqlException.cs: modified -
  2151. call base(message) so a unhandled exception displays
  2152. the message of a SQL error instead of the
  2153. default SystemException message
  2154. * Test/TestSqlException.cs: modified -
  2155. handle the rollback properly for a SqlException on a
  2156. failure to connect
  2157. 2002-04-23 Daniel Morgan <[email protected]>
  2158. * System.Data.build: modified - added new
  2159. files to exclude from build
  2160. * System.Data/Constraint.cs
  2161. * System.Data/ConstraintCollection.cs
  2162. * System.Data/InternalDataCollectionBase.cs: added -
  2163. stubs which are needed to build DataTable.cs
  2164. * TODO: modified - added more classes TODO and
  2165. added more stuff TODO, such as, create script
  2166. to create test database monotestdb for testing
  2167. classes in System.Data
  2168. 2002-04-23 Rodrigo Moya <[email protected]>
  2169. * System.Data.Common/DataAdapter.cs:
  2170. * System.Data.Common/DataColumnMappingCollection.cs:
  2171. * System.Data.Common/DataTableMappingCollection.cs:
  2172. * System.Data.Common/DbDataPermission.cs:
  2173. * System.Data.Common/DbDataPermissionAttribute.cs: some
  2174. compilation errors fixed.
  2175. 2002-04-23 Daniel Morgan <[email protected]>
  2176. * TODO: modified - added classes TODO, and
  2177. a poor attempt at System.Data plan
  2178. 2002-04-23 Daniel Morgan <[email protected]>
  2179. * ChangeLog: modified - put tabs where they belong
  2180. * System.Data.SqlClient/SqlDataReader.cs
  2181. * System.Data/DataColumn.cs: modified - compile errors
  2182. trying to compile SqlDataAdapter and dependencies
  2183. 2002-04-23 Daniel Morgan <[email protected]>
  2184. * System.Data.SqlTypes/SqlBoolean.cs
  2185. * System.Data.SqlTypes/SqlCompareOptions.cs
  2186. * System.Data.SqlTypes/SqlInt32.cs
  2187. * System.Data.SqlTypes/SqlString.cs: added - new stubs
  2188. * System.Data/DataTable.cs
  2189. * System.Data.SqlClient/SqlCommand.cs
  2190. * System.Data.SqlClient/SqlConnection.cs
  2191. * System.Data.SqlClient/SqlError.cs
  2192. * System.Data.SqlClient/SqlTransaction.cs: modified -
  2193. misc. tweaks
  2194. * System.Data.SqlClient/SqlException.cs: modified -
  2195. missing Message on indexer for Message property
  2196. 2002-04-21 Daniel Morgan <[email protected]>
  2197. * System.Data.SqlClient/SqlCommand.cs: modified - to
  2198. compile using mcs. This problem is
  2199. returning a stronger type in csc vs. msc
  2200. * System.Data.SqlClient/SqlConnection.cs: modified - msc
  2201. can not do a using PGconn = IntPtr; and then declare
  2202. with PGconn pgConn = IntPtr.Zero;
  2203. Thiw works under csc though. Had to comment using and
  2204. changed declaration to IntPtr pgConn = IntPtr.Zero;
  2205. Also, got rid of compile warnings for hostaddr and port.
  2206. * System.Data.SqlClient/SqlErrorCollection.cs: modified - got
  2207. rid of compile warnings. Commented MonoTODO attribute because mcs
  2208. doesn't seem to work with C# array property indexer (Item)
  2209. this[int index]
  2210. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  2211. commented MonoTODO attribute for indexer for mcs compiling
  2212. * Test/TestSqlIsolationLevel.cs:
  2213. * Test/TestSqlInsert.cs:
  2214. * Test/TestSqlException.cs: modified -
  2215. removed extra ExecuteNonQuery which caused two inserted rows
  2216. 2002-04-20 Daniel Morgan <[email protected]>
  2217. * System.Data/StateChangeEventArgs.cs - added
  2218. needed to compile System.Data.dll with mcs.
  2219. 2002-04-20 Daniel Morgan <[email protected]>
  2220. * System.Data.OleDb: added directory - for OleDb database
  2221. provider classes
  2222. * System.Data.SqlClient/SqlClientPermission.cs
  2223. * System.Data.SqlClient/SqlClientPermissionAttribute.cs
  2224. * System.Data.SqlClient/SqlCommandBuilder.cs
  2225. * System.Data.SqlClient/SqlInfoMessageEventHandler.cs
  2226. * System.Data.SqlClient/SqlRowUpdatedEventArgs.cs
  2227. * System.Data.SqlClient/SqlRowUpdatedEventHandler.cs
  2228. * System.Data.SqlClient/SqlRowUpdatingEventArgs.cs
  2229. * System.Data.SqlClient/SqlRowUpdatingEventHandler.cs
  2230. * Test/TestSqlException.cs
  2231. * Test/TestSqlIsolationLevel.cs: added - more tests
  2232. * System.Data.build: modified - added new files - excludes these too
  2233. * System.Data.SqlClient/PostgresLibrary.cs - modified - comment
  2234. * System.Data.SqlClient/SqlConnection.cs
  2235. * System.Data.SqlClient/SqlCommand.cs
  2236. * System.Data.SqlClient/SqlTransaction.cs
  2237. * System.Data.SqlClient/SqlException.cs
  2238. * System.Data.SqlClient/SqlErrorCollection.cs
  2239. * System.Data.SqlClient/SqlError.cs: modified - transaction and
  2240. exception/error handling. SqlConnection(connectionString)
  2241. constructor should not automatically connect.
  2242. * System.Data.SqlClient/SqlDataReader.cs
  2243. * System.Data.SqlClient/SqlDataAdapter.cs
  2244. * System.Data.SqlClient/SqlParameter.cs
  2245. * System.Data.SqlClient/SqlParameterCollection.cs: modified -
  2246. added using System.ComponentModel;
  2247. * Test/TestSqlInsert.cs: modified - to use transaction
  2248. 2002-04-17 Rodrigo Moya <[email protected]>
  2249. * System.Data/DataRow.cs: new skeletons.
  2250. * System.Data.Common/DataAdapter.cs:
  2251. * System.Data.Common/DataColumnMapping.cs:
  2252. * System.Data.Common/DataColumnMappingCollection.cs:
  2253. * System.Data.Common/DataTableMapping.cs:
  2254. * System.Data.Common/DataTableMappingCollection.cs:
  2255. * System.Data.Common/DbDataAdapter.cs:
  2256. * System.Data.Common/RowUpdatedEventArgs.cs:
  2257. * System.Data.SqlClient/SqlDataAdapter.cs:
  2258. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: compilation
  2259. fixes for Linux.
  2260. * System.Data.Common/DbDataRecord.cs:
  2261. * System.Data.Common/DbEnumerator.cs: removed MS implementation
  2262. internal classes.
  2263. 2002-04-17 Daniel Morgan <[email protected]>
  2264. * Test/TestSqlInsert.cs: modified - do
  2265. a SQL DELETE before SQL INSERT of row so you can use this
  2266. test over and over.
  2267. * System.Data.SqlClient/SqlTransaction.cs: modified - default
  2268. IsolationLevel for PostgreSQL is ReadCommitted. However,
  2269. PostgreSQL allows Serializable as well.
  2270. (Thanks to Gonzalo for that!)
  2271. * System.Data.SqlClient/SqlConnection.cs: modified
  2272. * System.Data.SqlClient/SqlCommand.cs: modified
  2273. * System.Data.SqlClient/SqlTransaction.cs: modified - got transactions
  2274. working; however, we still need to implement SQL errors
  2275. and exceptions to properly handle transactions. Also, added
  2276. status and error message support from the PostgreSQL database.
  2277. Currently, this does a Console.WriteLine() to display the
  2278. status and error messages, but this is a TODO
  2279. for SQL errors and exceptions.
  2280. * System.Data/TODOAttribute.cs: added - needed MonoTODO
  2281. attribute for System.Data.dll assembly
  2282. * System.Data/IDbCommand.cs: modified - commented
  2283. overloaded method ExecuteReader
  2284. so System.Data.SqlClient.SqlCommand can compile
  2285. * System.Data/IDbCommand.cs: modified
  2286. * System.Data/IDbConnection.cs: modified - added using System;
  2287. * System.Data/IDataParameter.cs
  2288. * System.Data.build: modified - build classes
  2289. in System.Data.SqlClient and exclude others in System.Data
  2290. * System.Data.SqlClient/PostgresLibrary.cs: modified - change
  2291. parameter data type from IntPtr to enum ExecStatusType
  2292. * ChangeLog: modified - corrected previous entries in log
  2293. 2002-04-16 Rodrigo Moya <[email protected]>
  2294. * System.Data.Common/DataColumnMappingCollection.cs: added basic
  2295. implementation. Still missing some stuff.
  2296. 2002-04-16 Daniel Morgan <[email protected]>
  2297. * System.Data.SqlClient/SqlConnection.cs: modified - got
  2298. to compile, run, and connect to PostgreSQL database
  2299. * System.Data.SqlClient/SqlCommand.cs: modified - got
  2300. to compile, run, and execute a SQL INSERT command
  2301. which successfully inserted a row
  2302. into the PostgreSQL database
  2303. * System.Data.SqlClient/SqlTransaction.cs: modified
  2304. * System.Data.SqlClient/SqlParameter.cs: modified
  2305. * System.Data.SqlClient/SqlParameterCollection.cs: modified
  2306. * System.Data.SqlClient/SqlError.cs: modified
  2307. * System.Data.SqlClient/SqlErrorCollection.cs: modified
  2308. * System.Data.SqlClient/SqlException.cs: modified
  2309. * System.Data.SqlClient/PostgresLibrary.cs: modified - to compile
  2310. * System.Data.SqlClient/SqlAdapter: modified
  2311. * System.Data.SqlClient/SqlReader: modified - add more stubs
  2312. 2002-04-16 Daniel Morgan <[email protected]>
  2313. * Test/TestSqlInsert.cs: added
  2314. 2002-04-15 Daniel Morgan <[email protected]>
  2315. * System.Data.SqlClient/SqlInfoMessageEventArgs.cs: added - using in
  2316. class SqlConnecition
  2317. * System.Data.SqlClient/SqlErrorCollection.cs: added
  2318. * System.Data.SqlClient/SqlErrors.cs: removed - no such class SqlErrors
  2319. 2002-04-15 Christopher Podurgiel <[email protected]>
  2320. * System.Data.IDbDataParameter: Added Interface to IDataParameter.
  2321. * System.Data.IDbTransaction: Added Interface to IDisposable.
  2322. * System.Data.IDbCommand: Fixed Capitalization of class name.
  2323. * System.Data.IDbConnection: Fixed Capitalization of class name.
  2324. 2002-04-15 Rodrigo Moya <[email protected]>
  2325. * System.Data.Common/DbDataPermissionAttribute.cs:
  2326. * System.Data.Common/DataAdapter.cs:
  2327. * System.Data.Common/DataColumnMapping.cs:
  2328. * System.Data.Common/DbDataPermission.cs: added some implementation.
  2329. 2002-04-15 Rodrigo Moya <[email protected]>
  2330. * System.Data.SqlClient/SqlConnection.cs: fixed constructor chaining
  2331. syntax, as pointed out by Levent Camlibel.
  2332. 2002-04-14 Rodrigo Moya <[email protected]>
  2333. * System.Data.SqlTypes/SqlBinary.cs:
  2334. * System.Data.SqlTypes/INullable.cs: new skeletons.
  2335. 2002-04-14 Daniel Morgan <[email protected]>
  2336. * System.Data.SqlClient/PostgresLibrary.cs: new internal class, which
  2337. contains all calls the the PostgreSQL client library, to be used
  2338. everywhere in System.Data.SqlClient.
  2339. 2002-03-30 Rodrigo Moya <[email protected]>
  2340. * System.Data.SqlClient/SqlConnection.cs: implemented basic
  2341. constructors.
  2342. * System.Data.SqlTypes/SqlNullValueException.cs: new skeletons.
  2343. 2002-03-29 Rodrigo Moya <[email protected]>
  2344. * System.Data.Common/DbDataRecord.cs:
  2345. * System.Data.Common/DbEnumerator.cs:
  2346. * System.Data.Common/RowUpdatedEventArgs.cs:
  2347. * System.Data.Common/RowUpdatingEventArgs.cs:
  2348. * System.Data.Common/DbDataPermissionAttribute.cs: new skeletons.
  2349. 2002-03-28 Rodrigo Moya <[email protected]>
  2350. * System.Data.Common/DataTableMappingCollection.cs:
  2351. * System.Data.Common/DbDataAdapter.cs:
  2352. * System.Data.Common/DbDataPermission.cs:
  2353. * System.Data.Common/DataTableMapping.cs: new skeletons.
  2354. * System.Data.SqlClient/SqlDataAdapter.cs:
  2355. * System.Data.SqlClient/SqlDataReader.cs:
  2356. * System.Data.SqlClient/SqlErrors.cs:
  2357. * System.Data.SqlClient/SqlError.cs:
  2358. * System.Data.SqlClient/SqlException.cs:
  2359. * System.Data.SqlClient/SqlParameter.cs:
  2360. * System.Data.SqlClient/SqlParameterCollection.cs:
  2361. * System.Data.SqlClient/SqlTransaction.cs:
  2362. * System.Data.SqlClient/SqlCommand.cs: fixed skeletons.
  2363. 2002-03-27 Rodrigo Moya <[email protected]>
  2364. * System.Data.Common/DataColumnMapping.cs:
  2365. * System.Data.Common/DataColumnMappingCollection.cs:
  2366. * System.Data.Common/DataAdapter.cs: created skeletons.
  2367. * System.Data.build: exclude new directories from build.
  2368. 2002-03-27 Rodrigo Moya <[email protected]>
  2369. * System.Data.SqlClient/SqlTransaction.cs: started implementation.
  2370. * System.Data.SqlClient/SqlConnection.cs (BeginTransaction):
  2371. implemented (2 methods).
  2372. 2002-03-24 Duncan Mak <[email protected]>
  2373. * System.Data.build: Excluded System.Data.SqlClient from the build.
  2374. The stubs are incomplete and they are stopping the build.
  2375. * System.Data.SqlClient/SqlCommand.cs: Replaced 'implements' with ':'.
  2376. 2002-03-24 Rodrigo Moya <[email protected]>
  2377. * System.Data.SqlClient/*: added skeletons for the SQL managed
  2378. provider for ADO.Net, to be based initially in PostgreSQL.
  2379. 2002-03-15 Christopher Podurgiel <[email protected]>
  2380. Changed the Namespace on some Enums from mono.System.Data to System.Data
  2381. 2002-03-01 Christopher Podurgiel <[email protected]>
  2382. * DataColumnCollection.cs : When an existing DataColumn is added, will now Assign a
  2383. default name if the ColumnName is null.
  2384. * DataSet.cs : Added
  2385. * DataTable.cs : Added
  2386. * DataRelationCollection.cs : Added
  2387. * DataTableRelationCollection.cs : Added
  2388. * DataColumn : Added
  2389. 2002-02-11 Christopher Podurgiel <[email protected]>
  2390. * DataColumnChangeEventArgs.cs : Added
  2391. * DataColumnCollection.cs : Added
  2392. 2002-02-10 Christopher Podurgiel <[email protected]>
  2393. * Removed *.cs from System.Data as the correct files are in mcs/class/System.Data/System.Data
  2394. * Updated all Enums, Interfaces, and Delegates in System.Data