ChangeLog 118 KB

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