ChangeLog 119 KB

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