Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

157 lines
4.5 KiB
Plaintext

2008-08-27 Daniel Morgan <monodanmorg@yahoo.com>
* SqlSharpCli.cs: fixes for using DbConnectionStringBuilder,
do not allow changing of provider or opening when the
connection is already open
2008-08-27 Daniel Morgan <monodanmorg@yahoo.com>
* SqlSharpcli.cs: use foreach to get keys
in DbConnectionStringBuilder
* ChangeLog: fix previous entry of mine
2008-08-27 Daniel Morgan <monodanmorg@yahoo.com>
* SqlSharpcli.cs: start using ADO.NET 2.0 features
such as provider factories and connection string builders
but still be backwards compatible with prior ADO.NET providers.
Added new commands:
\bcs for building your connection string for you by prompting
\cs short for \connectionstring
\p short for \provider
\listp or \listproviders to list DbProviderFactories
listed in the machine.config file.
Building with gmcs now which means the NET_2_0 profile.
2005-12-25 Daniel Morgan <danielmorgan@verizon.net>
* SqlSharpCli.cs: make the MySQL Connector/Net the default mysql provider.
If people still need to use ByteFX, they can use bytefx. Update assembly
version for Firebird SQL.
* README: update MySQL provider info
2004-12-27 Alp Toker <alp@atoker.com>
* 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 <danielmorgan@verizon.net>
* SqlSharpCli.cs: change formatting style from vs.net default
to mono style, display results better aligned
2004-10-21 Daniel Morgan <danielmorgan@verizon.net>
* 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 <rharinath@novell.com>
* Makefile (HAS_TEST): Remove.
(run-test-local): Disable for now. Move rules to ...
(run-sqlsharp-test): ... this.
2003-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
* SqlSharpCli.cs: changes by Daniel Morgan to make this build with MS
runtime 1.0 and 1.1 .
2003-02-16 Daniel Morgan <danmorg@sc.rr.com>
* 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 <danmorg@sc.rr.com>
* SqlSharpCli.cs: fixes contributed by
Francisco Figueiredo Jr. fxjrlists a-t yahoo.com.br
2003-01-20 Daniel Morgan <danmorg@sc.rr.com>
* README: updated notes on connection strings and providers
* SqlSharpCli.cs: fixes for other providers:
OracleClient, DB2Client, Npgsql, MySqlNet
2002-12-10 Daniel Morgan <danmorg@sc.rr.com>
* Makefile
* SqlSharpCli.build: change target
from SqlSharpCli.exe
to sqlsharp.exe
* README: mention how to run SQL#
2002-12-06 Duncan Mak <duncan@ximian.com>
* Makefile (clean): Remove *.dbg files.
2002-11-30 Daniel Morgan <danmorg@sc.rr.com>
* README: updated to include directions on
connecting to a database
2002-11-30 Daniel Morgan <danmorg@sc.rr.com>
* README: updated by including help for all the
SQL# commands with examples
2002-11-30 Daniel Morgan <danmorg@sc.rr.com>
* 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 <danmorg@sc.rr.com>
* 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 <danmorg@sc.rr.com>
* SqlSharpCli.cs: just write to the console
the Message from the exception, not the entire trace.
2002-10-25 Daniel Morgan <danmorg@sc.rr.com>
* SqlSharpCli.cs: added support for
SqlClient and TdsClient
* SqlSharpCli.build: added target of "clean"
2002-10-16 Daniel Morgan <danmorg@sc.rr.com>
* 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 <danmorg@sc.rr.com>
* 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