ChangeLog 115 KB

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