1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
Mono SQL Query - Command Line Interface
=======================================
Running SQL Query on Mono:
mono sqlsharp.exe
Use this tool to test connection strings and enter SQL queries
to different ADO.NET providers in Mono.
Basically, there are five commands a user should know:
\provider, \connectionstring, \open, \quit, and \help
To connect to a database, you need to do the following:
1. set your data provider via \provider
Example:
SQL# \provider mysql
2. set your connection string via \connectionstring
Example:
SQL# \connectionstring Server=localhost;Database=test;User ID=someuser;Password=somepass
3. open a connection to the database via \open
Example:
SQL# \open
Here are the SQL# Commands taken from the help command: \h
SQL# Commands are case insensitive, so \Q and \q work the same.
CONNECTION AND PROVIDER COMMANDS
================================
\ConnectionString to set the ConnectionString
Example connection strings for various providers:
Microsoft SQL Server via System.Data.SqlClient or Mono.Data.TdsClient provider:
SQL# \ConnectionString Server=DANPC;Database=pubs;User ID=danmorg;Password=freetds
PostgreSQL via Npgsql provider:
SQL# \ConnectionString Server=localhost;Database=test;User ID=postgres;Password=fun2db
MySQL via ByteFX.Data.MySqlClient provider:
SQL# \ConnectionString Server=localhost;Database=test;User ID=mysql;Password=
MySQL via MySql.Data provider:
SQL# \ConnectionString Server=localhost;Database=test;User ID=mysql;Password=mypass;Pooling=false
ODBC via System.Data.Odbc provider using a DSN named "MSSQLDSN" I set up
in the Windows control panel's ODBC Data Sources which connects
to Microsoft SQL Server 2000:
SQL# \ConnectionString DSN=MSSQLDSN;UID=danmorg;PWD=freetds
SQL Lite via Mono.Data.SqliteClient provider which connects to the
database file SqliteTest.db; if not found, the file is created:
SQL# \ConnectionString URI=file:SqliteTest.db
OLE DB via System.Data.OleDb provider which connects to a PostgreSQL database:
SQL# \ConnectionString Provider=PostgreSQL;Addr=127.0.0.1;Database=rodrigo
Oracle via System.Data.OracleClient
SQL# \ConnectionString Data Source=testdb;User ID=scott;Password=tiger
FirebirdSql via FirebirdSql.Data.Firebird (not included with Mono)
SQL# \ConnectionString Database=C:\FIREBIRD\EXAMPLES\EMPLOYEE.FDB;User=SYSDBA;Password=masterkey;Dialect=3;Server=localhost
\Provider to set the Provider:
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
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
Oracle Oracle 8i System.Data.OracleClient System.Data.OracleClient
PostgreSql NET Postgres Npgsql Npgsql
ByteFX ByteFX MySQL ByteFX.Data.MySqlClient ByteFX.Data
Firebird Firebird FirebirdSql.Data.Firebird FirebirdSql.Data.Firebird
MySql MySQL AB MySql.Data.MySqlClient MySql.Data
Example: to set the provider for MySQL:
SQL# \provider mysql
Note: if you need to load an external provider in SQL#,
see the SQL# command \loadextprovider
\loadextprovider ASSEMBLY CLASS to load an external provider
use the complete name of its assembly and
its Connection class. No spaces in the assembly name.
Example: to load the MySQL provider MySql.Data.dll from the GAC:
SQL# \loadextprovider MySql.Data,Version=1.0.7.30073,Culture=neutral,PublicKeyToken=8e323390df8d9ed4 MySql.Data.MySqlCliet.MySqlConnection
\Open to open the connection
Example:
SQL# \open
\Close to close the connection
Example:
SQL# \close
\defaults to show default variables, such as, Provider and ConnectionString.
Example:
SQL# \defaults
\Q to quit
Example:
SQL# \q
SQL EXECUTION COMMANDS
======================
\e to execute SQL query (SELECT)
Example: to execute a query
SQL# SELECT * FROM EMPLOYEE
SQL# \e
Note: to get \e to automatically work after entering a query, put a
semicolon ; at the end of the query.
Example: to enter and exectue query at the same time
SQL# SELECT * FROM EMPLOYEE;
\exenonquery to execute an SQL non query (not a SELECT)
Example: to insert a row into a table:
SQL# INSERT INTO SOMETABLE (COL1, COL2) VALUES('ABC','DEF')
SQL# \exenonquery
Note: this can be used for those providers that are new and do not have
the ability to execute queries yet.
\exescalar to execute SQL to get a single row and single column.
Example: to execute a Maxium aggregate
SQL# SELECT MAX(grade) FROM class
SQL# \exescalar
\exexml FILENAME to execute SQL and save output to XML file
Example:
SQL# SELECT fname, lname, hire_date FROM employee
SQL# \exexml employee.xml
Note: this depends on DataAdapter, DataTable, and DataSet
to be working properly
FILE COMMANDS
=============
\f FILENAME to read a batch of SQL# commands from file
Example:
SQL# \f batch.sql#
Note: the SQL# commands are interpreted as they are read. If there is
any SQL statements, they are executed.
\o FILENAME to write result of commands executed to file.
Example:
SQL# \o result.txt
\load FILENAME to load from file SQL commands into SQL buffer.
Example:
SQL# \load commands.sql
\save FILENAME to save SQL commands from SQL buffer to file.
Example:
SQL# \save commands.sql
GENERAL PURPOSE COMMANDS
========================
\h to show help (all commands).
Example:
SQL# \h
\s {TRUE, FALSE} to silent messages.
Example 1:
SQL# \s true
Example 2:
SQL# \s false
\r to reset or clear the query buffer.
Example:
SQL# \r
\print - show what's in the SQL buffer now.
Example:
SQL# \print
VARIABLES WHICH CAN BE USED AS PARAMETERS
=========================================
\set NAME VALUE to set an internal variable.
Example:
SQL# \set sFirstName John
\unset NAME to remove an internal variable.
Example:
SQL# \unset sFirstName
\variable NAME to display the value of an internal variable.
Example:
SQL# \variable sFirstName
PROVIDER SUPPORT OPTIONS
========================
\UseParameters (TRUE,FALSE) to use parameters when executing SQL which
use the variables that were set.
If this option is true, the SQL
contains parameters, and for each parameter
which does not have a SQL# variable set, the
user will be prompted to enter the value
for that parameter.
Example:
SQL# \useparameter true
Default: false
\UseSimpleReader (TRUE,FALSE) to use simple reader when displaying results.
Example:
SQL# \usesimplereader true
Default: false. Mostly, this is dependent on the provider. If the provider
does not have enough of IDataReader implemented to have
the normal reader working, then the simple reader can be used.
|