ChangeLog 116 KB

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