ChangeLog 114 KB

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