2
0

ChangeLog 120 KB

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