| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- 2004-12-27 Alp Toker <[email protected]>
- * SqlSharpCli.cs: Math and Mono.Math clash. Refer to System.Math directly to
- unbreak the build. Another approach would be to move the using System
- statement within the namespace block. Both have caveats.
- 2004-12-26 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: change formatting style from vs.net default
- to mono style, display results better aligned
- 2004-10-21 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: removed obsolete providers (Mono.Data.MySql,
- Mono.Data.PostgreSqlClient, Mono.Data.DB2Client),
- added provider for FirebirdSql.Data.Firebird, fixed
- loading of external providers so they work with
- Mono having a GAC
- 2004-06-09 Raja R Harinath <[email protected]>
- * Makefile (HAS_TEST): Remove.
- (run-test-local): Disable for now. Move rules to ...
- (run-sqlsharp-test): ... this.
- 2003-09-28 Gonzalo Paniagua Javier <[email protected]>
- * SqlSharpCli.cs: changes by Daniel Morgan to make this build with MS
- runtime 1.0 and 1.1 .
- 2003-02-16 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: fix typos and when the
- provider is set to oracle, it should default
- to not using the simple reader
- 2003-01-26 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: fixes contributed by
- Francisco Figueiredo Jr. fxjrlists a-t yahoo.com.br
- 2003-01-20 Daniel Morgan <[email protected]>
- * README: updated notes on connection strings and providers
- * SqlSharpCli.cs: fixes for other providers:
- OracleClient, DB2Client, Npgsql, MySqlNet
- 2002-12-10 Daniel Morgan <[email protected]>
- * Makefile
- * SqlSharpCli.build: change target
- from SqlSharpCli.exe
- to sqlsharp.exe
-
- * README: mention how to run SQL#
-
- 2002-12-06 Duncan Mak <[email protected]>
- * Makefile (clean): Remove *.dbg files.
- 2002-11-30 Daniel Morgan <[email protected]>
- * README: updated to include directions on
- connecting to a database
- 2002-11-30 Daniel Morgan <[email protected]>
- * README: updated by including help for all the
- SQL# commands with examples
- 2002-11-30 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: allow the ODBC provider
- to execute a query and save results an XML file
- via the \exexml command
- 2002-11-11 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: added new SQL# command \exexml
- to execute a query and put results in an xml file via a
- generic DbDataAdapter and a DataSet. Added
- Mono.Data.SybaseClient as a provider to use
- via \provider sybase which is easier than SQL# command
- \loadextprovider Mono.Data.SybaseClient Mono.DataSybaseClient.SybaseConnection
-
- 2002-10-26 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: just write to the console
- the Message from the exception, not the entire trace.
- 2002-10-25 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: added support for
- SqlClient and TdsClient
-
- * SqlSharpCli.build: added target of "clean"
- 2002-10-16 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: added support for new place
- where the PostgreSQL provider is an external
- provider now. Commented support for SqlClient and
- cause an error and exception when trying to change to or open a
- connection to the SqlClient provider.
- 2002-10-16 Daniel Morgan <[email protected]>
- * SqlSharpCli.cs: import from
- mcs/class/System.Data/Test
- by Miguel to
- mcs/tools/SqlSharp
-
- * unix.args
- * Makefile
- * SqlSharpCli.build: add build files
-
- * README: add file about SqlSharp
-
- * ChangeLog: add file for log of changes
|