Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Morgan <monodanmorg@yahoo.com>2005-12-26 03:20:15 +0300
committerDaniel Morgan <monodanmorg@yahoo.com>2005-12-26 03:20:15 +0300
commite3fd1e648cea3896edb530d1c8b30fa142745861 (patch)
treed54aa36fcbd72da6dcb70b9b4c386bfbf16f0ea4 /man/sqlsharp.1
parent0b1f4e07540dc0bb33336b44cafd10e5e2a91276 (diff)
update man page sqlsharp.1 for the mysql provider
svn path=/trunk/mono/; revision=54841
Diffstat (limited to 'man/sqlsharp.1')
-rw-r--r--man/sqlsharp.152
1 files changed, 32 insertions, 20 deletions
diff --git a/man/sqlsharp.1 b/man/sqlsharp.1
index 7a2f4b357d3..9742dd49eab 100644
--- a/man/sqlsharp.1
+++ b/man/sqlsharp.1
@@ -1,4 +1,4 @@
-.TH sqlsharp 1 "21 October 2004"
+.TH sqlsharp 1 "25 December 2005"
.SH NAME
sqlsharp \- Mono SQL Query command-line tool
.SH SYNOPSIS
@@ -344,25 +344,32 @@ ption defaulting to true.
PROVIDER NAME NAMESPACE ASSEMBLY
-Oracle Oracle 8i System.Data.OracleClient System.Data.OracleClient
-PostgreSql NetPostgreSQL Npgsql Npgsql
-MySQL ByteFX MySQL ByteFX.Data.MySqlClient ByteFX.Data
-SqlClient MS SQL 7/2000 System.Data.SqlClient System.Data
-Odbc ODBC System.Data.Odbc System.Data
-Sqlite SQL Lite Mono.Data.SqliteClient Mono.Data.SqliteClient
-Sybase Sybase Mono.Data.SybaseClient Mono.Data.SybaseClient
-OleDb OLE DB System.Data.OleDb System.Data
-Tds TDS Generic Mono.Data.TdsClient Mono.Data.TdsClient
-MSOdbc MS ODBC Microsoft.Data.Odbc Microsoft.Data.Odbc
-Firebird Firebird SQL FirebirdSql.Data.FirebirdSql FirebirdSql.Data.Firebird
+oracle Oracle 8i System.Data.OracleClient System.Data.OracleClient
+postgresql NetPostgreSQL Npgsql Npgsql
+bytefx ByteFX MySQL ByteFX.Data.MySqlClient ByteFX.Data
+sqlclient MS SQL 7/2000 System.Data.SqlClient System.Data
+odbc ODBC System.Data.Odbc System.Data
+sqlite SQL Lite Mono.Data.SqliteClient Mono.Data.SqliteClient
+sybase Sybase Mono.Data.SybaseClient Mono.Data.SybaseClient
+olebb OLE DB System.Data.OleDb System.Data
+tds TDS Generic Mono.Data.TdsClient Mono.Data.TdsClient
+msodbc MS ODBC Microsoft.Data.Odbc Microsoft.Data.Odbc
+firebird Firebird SQL FirebirdSql.Data.FirebirdSql FirebirdSql.Data.Firebird
+mysql MySQL AB MySql.Data.MySqlClient MySql.Data
-NOTES
+NOTES:
-Npgsql maps to PostgreSql above.
-MySqlNet maps to MySql above.
-Odbc is treated as an external provider for .NET 1.1 and above.
-MSODBC is an external provider for compatibility with .NET 1.0
-Firebird is not included with Mono.
+npgsql maps to postgresql above.
+mysqlnet maps to mysql above.
+odbc is treated as an external provider for .NET 1.1 and above.
+msodbc is an external provider for compatibility with .NET 1.0
+
+MySql.Data has replaced the mysql provider. If you still need to use ByteFX.Data, then
+use bytefx.
+
+MySql.Data is not included with Mono. You need to
+download the MySQL Connector/Net from MySQL AB at
+http://dev.mysql.com/downloads/connector/net/1.0.html
.fi
.SH CONNECTION STRING SAMPLES
@@ -416,16 +423,21 @@ http://gborg.postgresql.org/project/npgsql/projdisplay.php
Server=localhost;Database=test;User ID=postgres;Password=fun2db
-MySQLNet (ByteFX MySQL) from
-http://sourceforge.net/projects/mysqlnet/
+ByteFX (ByteFX MySQL) from
Server=localhost;Database=test;User ID=mysql;Password=
+
FirebirdSql via FirebirdSql.Data.Firebird (not included with Mono)
Database=C:\\FIREBIRD\\EXAMPLES\\EMPLOYEE.FDB;User=SYSDBA;Password=masterkey;Dialect=3;Server=localhost
+MySQL (MySQL AB) from http://www.mysql.com/
+
+ Server=localhost;Database=test;User ID=mysql;Password=mypass;Pooling=false
+
+
.fi
.SH TRACING SUPPORT
No support for tracing right now.