ChangeLog 114 KB

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