grammar updates
[mono.git] / man / sqlsharp.1
index 5353280fdfb5584188e35fe129be08a6b1df1dd2..bb58b1571cc97aabdf4f3ca38cdd95a02f52524f 100755 (executable)
@@ -342,16 +342,30 @@ ption defaulting to true.
 .SH PROVIDERS
 .nf
 
-PROVIDER    NAME          NAMESPACE                  ASSEMBLY
+PROVIDER   NAME          NAMESPACE                  ASSEMBLY
 
-OleDb       OLE DB        System.Data.OleDb          System.Data 
-SqlClient   MS SQL 7/2000 System.Data.SqlClient      System.Data
-Odbc        ODBC          System.Data.Odbc           System.Data
-MySql       MySQL         Mono.Data.MySql            Mono.Data.MySql
-Sqlite      SQL Lite      Mono.Data.SqliteClient     Mono.Data.SqliteClient
-Sybase      Sybase        Mono.Data.SybaseClient     Mono.Data.SybaseClient
-Tds         TDS Generic   Mono.Data.TdsClient        Mono.Data.TdsClient
-PostgreSql  PostgreSQL    Mono.Data.PostgreSqlClient Mono.Data.PostgreSqlClient
+Internal
+--------
+
+OleDb      OLE DB        System.Data.OleDb          System.Data 
+SqlClient  MS SQL 7/2000 System.Data.SqlClient      System.Data
+Odbc       ODBC          System.Data.Odbc           System.Data
+
+External to System.Data
+-----------------------
+MySql      MySQL         Mono.Data.MySql            Mono.Data.MySql
+Sqlite     SQL Lite      Mono.Data.SqliteClient     Mono.Data.SqliteClient
+Sybase     Sybase        Mono.Data.SybaseClient     Mono.Data.SybaseClient
+Tds        TDS Generic   Mono.Data.TdsClient        Mono.Data.TdsClient
+PostgreSql M PostgreSQL  Mono.Data.PostgreSqlClient Mono.Data.PostgreSqlClient
+DB2        IBM DB2       Mono.Data.DB2Client        Mono.Data.DB2Client
+Oracle     Oracle 8i     System.Data.OracleClient   System.Data.OracleClient
+
+External to Mono
+----------------
+
+Npgsql     NetPostgreSQL Npgsql                     Npgsql
+MySQLNet   ByteFX MySQL  ByteFX.Data.MySQL          ByteFX.Data
 
 .fi
 .SH CONNECTION STRING SAMPLES
@@ -374,7 +388,7 @@ or Mono.Data.TdsClient provider:
                
 PostgreSQL via Mono.Data.PostgreSqlClient provider:
 
-       host=localhost;dbname=test;user=postgres;pass=fun2db
+       host=localhost;dbname=test;user=postgres;password=fun2db
 
                          or
 
@@ -407,10 +421,32 @@ which connects to a PostgreSQL database:
 
        Provider=PostgreSQL;Addr=127.0.0.1;Database=rodrigo
 
+               
+Oracle via System.Data.OracleClient
+
+       Data Source=testdb;User ID=scott;Password=tiger
+
+               
+IBM DB2 Universal Database via Mono.Data.DB2Client
+
+       DSN=sample;User ID=db2admin;Password=mysecret   
+
+               
+Npgsql (.NET PostgreSQL) from 
+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/
+
+       Server=localhost;Database=test;User ID=mysql;Password=
+
 
 .fi
-.SH DEBUGGING SUPPORT
-No debugging support.
+.SH TRACING SUPPORT
+No support for tracing right now.
 .SH AUTHORS
 The Mono SQL# Tool was written 
 .nf