ChangeLog 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. 2004-12-27 Alp Toker <[email protected]>
  2. * SqlSharpCli.cs: Math and Mono.Math clash. Refer to System.Math directly to
  3. unbreak the build. Another approach would be to move the using System
  4. statement within the namespace block. Both have caveats.
  5. 2004-12-26 Daniel Morgan <[email protected]>
  6. * SqlSharpCli.cs: change formatting style from vs.net default
  7. to mono style, display results better aligned
  8. 2004-10-21 Daniel Morgan <[email protected]>
  9. * SqlSharpCli.cs: removed obsolete providers (Mono.Data.MySql,
  10. Mono.Data.PostgreSqlClient, Mono.Data.DB2Client),
  11. added provider for FirebirdSql.Data.Firebird, fixed
  12. loading of external providers so they work with
  13. Mono having a GAC
  14. 2004-06-09 Raja R Harinath <[email protected]>
  15. * Makefile (HAS_TEST): Remove.
  16. (run-test-local): Disable for now. Move rules to ...
  17. (run-sqlsharp-test): ... this.
  18. 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
  19. * SqlSharpCli.cs: changes by Daniel Morgan to make this build with MS
  20. runtime 1.0 and 1.1 .
  21. 2003-02-16 Daniel Morgan <[email protected]>
  22. * SqlSharpCli.cs: fix typos and when the
  23. provider is set to oracle, it should default
  24. to not using the simple reader
  25. 2003-01-26 Daniel Morgan <[email protected]>
  26. * SqlSharpCli.cs: fixes contributed by
  27. Francisco Figueiredo Jr. fxjrlists a-t yahoo.com.br
  28. 2003-01-20 Daniel Morgan <[email protected]>
  29. * README: updated notes on connection strings and providers
  30. * SqlSharpCli.cs: fixes for other providers:
  31. OracleClient, DB2Client, Npgsql, MySqlNet
  32. 2002-12-10 Daniel Morgan <[email protected]>
  33. * Makefile
  34. * SqlSharpCli.build: change target
  35. from SqlSharpCli.exe
  36. to sqlsharp.exe
  37. * README: mention how to run SQL#
  38. 2002-12-06 Duncan Mak <[email protected]>
  39. * Makefile (clean): Remove *.dbg files.
  40. 2002-11-30 Daniel Morgan <[email protected]>
  41. * README: updated to include directions on
  42. connecting to a database
  43. 2002-11-30 Daniel Morgan <[email protected]>
  44. * README: updated by including help for all the
  45. SQL# commands with examples
  46. 2002-11-30 Daniel Morgan <[email protected]>
  47. * SqlSharpCli.cs: allow the ODBC provider
  48. to execute a query and save results an XML file
  49. via the \exexml command
  50. 2002-11-11 Daniel Morgan <[email protected]>
  51. * SqlSharpCli.cs: added new SQL# command \exexml
  52. to execute a query and put results in an xml file via a
  53. generic DbDataAdapter and a DataSet. Added
  54. Mono.Data.SybaseClient as a provider to use
  55. via \provider sybase which is easier than SQL# command
  56. \loadextprovider Mono.Data.SybaseClient Mono.DataSybaseClient.SybaseConnection
  57. 2002-10-26 Daniel Morgan <[email protected]>
  58. * SqlSharpCli.cs: just write to the console
  59. the Message from the exception, not the entire trace.
  60. 2002-10-25 Daniel Morgan <[email protected]>
  61. * SqlSharpCli.cs: added support for
  62. SqlClient and TdsClient
  63. * SqlSharpCli.build: added target of "clean"
  64. 2002-10-16 Daniel Morgan <[email protected]>
  65. * SqlSharpCli.cs: added support for new place
  66. where the PostgreSQL provider is an external
  67. provider now. Commented support for SqlClient and
  68. cause an error and exception when trying to change to or open a
  69. connection to the SqlClient provider.
  70. 2002-10-16 Daniel Morgan <[email protected]>
  71. * SqlSharpCli.cs: import from
  72. mcs/class/System.Data/Test
  73. by Miguel to
  74. mcs/tools/SqlSharp
  75. * unix.args
  76. * Makefile
  77. * SqlSharpCli.build: add build files
  78. * README: add file about SqlSharp
  79. * ChangeLog: add file for log of changes