ChangeLog 119 KB

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