| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000 |
- //
- // System.Data.SqlClient.SqlConnection.cs
- //
- // Authors:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- // Tim Coleman ([email protected])
- // Phillip Jerkins ([email protected])
- // Diego Caravana ([email protected])
- //
- // Copyright (C) Ximian, Inc 2002
- // Copyright (C) Daniel Morgan 2002, 2003
- // Copyright (C) Tim Coleman, 2002, 2003
- // Copyright (C) Phillip Jerkins, 2003
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using Mono.Data.Tds;
- using Mono.Data.Tds.Protocol;
- using System;
- using System.Collections;
- using System.Collections.Specialized;
- using System.ComponentModel;
- using System.Data;
- using System.Data.Common;
- #if NET_2_0
- using System.Data.ProviderBase;
- #endif // NET_2_0
- using System.EnterpriseServices;
- using System.Globalization;
- using System.Net;
- using System.Net.Sockets;
- using System.Text;
- using System.Xml;
- namespace System.Data.SqlClient {
- [DefaultEvent ("InfoMessage")]
- #if NET_2_0
- public sealed class SqlConnection : DbConnectionBase, IDbConnection, ICloneable
- #else
- public sealed class SqlConnection : Component, IDbConnection, ICloneable
- #endif // NET_2_0
- {
- #region Fields
- bool disposed = false;
- // The set of SQL connection pools
- static TdsConnectionPoolManager sqlConnectionPools = new TdsConnectionPoolManager (TdsVersion.tds70);
- // The current connection pool
- TdsConnectionPool pool;
- // The connection string that identifies this connection
- string connectionString = null;
- // The transaction object for the current transaction
- SqlTransaction transaction = null;
- // Connection parameters
-
- TdsConnectionParameters parms = new TdsConnectionParameters ();
- NameValueCollection connStringParameters = null;
- bool connectionReset;
- bool pooling;
- string dataSource;
- int connectionTimeout;
- int minPoolSize;
- int maxPoolSize;
- int packetSize;
- int port = 1433;
- // The current state
- ConnectionState state = ConnectionState.Closed;
- SqlDataReader dataReader = null;
- XmlReader xmlReader = null;
- // The TDS object
- ITds tds;
- #endregion // Fields
- #region Constructors
- public SqlConnection ()
- : this (String.Empty)
- {
- }
-
- public SqlConnection (string connectionString)
- {
- Init (connectionString);
- }
- #if NET_2_0
- internal SqlConnection (DbConnectionFactory connectionFactory) : base (connectionFactory)
- {
- Init (String.Empty);
- }
- #endif //NET_2_0
- private void Init (string connectionString)
- {
- connectionTimeout = 15; // default timeout
- dataSource = ""; // default datasource
- packetSize = 8192; // default packetsize
- ConnectionString = connectionString;
- }
-
- #endregion // Constructors
- #region Properties
- [DataCategory ("Data")]
- #if !NET_2_0
- [DataSysDescription ("Information used to connect to a DataSource, such as 'Data Source=x;Initial Catalog=x;Integrated Security=SSPI'.")]
- #endif
- [DefaultValue ("")]
- [EditorAttribute ("Microsoft.VSDesigner.Data.SQL.Design.SqlConnectionStringEditor, "+ Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, "+ Consts.AssemblySystem_Drawing )]
- [RecommendedAsConfigurable (true)]
- [RefreshProperties (RefreshProperties.All)]
- [MonoTODO("persist security info, encrypt, enlist and , attachdbfilename keyword not implemented")]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- string ConnectionString {
- get { return connectionString; }
- set {
- if (state == ConnectionState.Open)
- throw new InvalidOperationException ("Not Allowed to change ConnectionString property while Connection state is OPEN");
- SetConnectionString (value);
- }
- }
-
- #if !NET_2_0
- [DataSysDescription ("Current connection timeout value, 'Connect Timeout=X' in the ConnectionString.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
-
- int ConnectionTimeout {
- get { return connectionTimeout; }
- }
- #if !NET_2_0
- [DataSysDescription ("Current SQL Server database, 'Initial Catalog=X' in the connection string.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- string Database {
- get {
- if (State == ConnectionState.Open)
- return tds.Database;
- return parms.Database ;
- }
- }
-
- internal SqlDataReader DataReader {
- get { return dataReader; }
- set { dataReader = value; }
- }
- #if !NET_2_0
- [DataSysDescription ("Current SqlServer that the connection is opened to, 'Data Source=X' in the connection string. ")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- string DataSource {
- get { return dataSource; }
- }
- #if !NET_2_0
- [DataSysDescription ("Network packet size, 'Packet Size=x' in the connection string.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public int PacketSize {
- get {
- if (State == ConnectionState.Open)
- return ((Tds)tds).PacketSize ;
- return packetSize;
- }
- }
- [Browsable (false)]
- #if !NET_2_0
- [DataSysDescription ("Version of the SQL Server accessed by the SqlConnection.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- string ServerVersion {
- get {
- if (state == ConnectionState.Closed)
- throw new InvalidOperationException ("Invalid Operation.The Connection is Closed");
- else
- return tds.ServerVersion;
- }
- }
- [Browsable (false)]
- #if !NET_2_0
- [DataSysDescription ("The ConnectionState indicating whether the connection is open or closed.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- ConnectionState State {
- get { return state; }
- }
- internal ITds Tds {
- get { return tds; }
- }
- internal SqlTransaction Transaction {
- get { return transaction; }
- set { transaction = value; }
- }
- #if !NET_2_0
- [DataSysDescription ("Workstation Id, 'Workstation ID=x' in the connection string.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- public string WorkstationId {
- get { return parms.Hostname; }
- }
- internal XmlReader XmlReader {
- get { return xmlReader; }
- set { xmlReader = value; }
- }
- #endregion // Properties
- #region Events
- [DataCategory ("InfoMessage")]
- #if !NET_2_0
- [DataSysDescription ("Event triggered when messages arrive from the DataSource.")]
- #endif
- public event SqlInfoMessageEventHandler InfoMessage;
- [DataCategory ("StateChange")]
- #if !NET_2_0
- [DataSysDescription ("Event triggered when the connection changes state.")]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- event StateChangeEventHandler StateChange;
-
- #endregion // Events
- #region Delegates
- private void ErrorHandler (object sender, TdsInternalErrorMessageEventArgs e)
- {
- throw new SqlException (e.Class, e.LineNumber, e.Message, e.Number, e.Procedure, e.Server, "Mono SqlClient Data Provider", e.State);
- }
- private void MessageHandler (object sender, TdsInternalInfoMessageEventArgs e)
- {
- OnSqlInfoMessage (CreateSqlInfoMessageEvent (e.Errors));
- }
- #endregion // Delegates
- #region Methods
-
- internal string GetConnStringKeyValue (params string [] keys)
- {
- if (connStringParameters == null || connStringParameters.Count == 0)
- return "";
- foreach (string key in keys) {
- string value = connStringParameters [key];
- if (value != null)
- return value;
- }
-
- return "";
- }
-
- public new SqlTransaction BeginTransaction ()
- {
- return BeginTransaction (IsolationLevel.ReadCommitted, String.Empty);
- }
- public new SqlTransaction BeginTransaction (IsolationLevel iso)
- {
- return BeginTransaction (iso, String.Empty);
- }
- public SqlTransaction BeginTransaction (string transactionName)
- {
- return BeginTransaction (IsolationLevel.ReadCommitted, transactionName);
- }
- public SqlTransaction BeginTransaction (IsolationLevel iso, string transactionName)
- {
- if (state == ConnectionState.Closed)
- throw new InvalidOperationException ("The connection is not open.");
- if (transaction != null)
- throw new InvalidOperationException ("SqlConnection does not support parallel transactions.");
- if (iso == IsolationLevel.Chaos)
- throw new ArgumentException ("Invalid IsolationLevel parameter: must be ReadCommitted, ReadUncommitted, RepeatableRead, or Serializable.");
- string isolevel = String.Empty;
- switch (iso) {
- case IsolationLevel.ReadCommitted:
- isolevel = "READ COMMITTED";
- break;
- case IsolationLevel.ReadUncommitted:
- isolevel = "READ UNCOMMITTED";
- break;
- case IsolationLevel.RepeatableRead:
- isolevel = "REPEATABLE READ";
- break;
- case IsolationLevel.Serializable:
- isolevel = "SERIALIZABLE";
- break;
- }
- tds.Execute (String.Format ("SET TRANSACTION ISOLATION LEVEL {0};BEGIN TRANSACTION {1}", isolevel, transactionName));
-
- transaction = new SqlTransaction (this, iso);
- return transaction;
- }
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- void ChangeDatabase (string database)
- {
- if (!IsValidDatabaseName (database))
- throw new ArgumentException (String.Format ("The database name {0} is not valid.", database));
- if (state != ConnectionState.Open)
- throw new InvalidOperationException ("The connection is not open.");
- tds.Execute (String.Format ("use [{0}]", database));
- }
- private void ChangeState (ConnectionState currentState)
- {
- ConnectionState originalState = state;
- state = currentState;
- OnStateChange (CreateStateChangeEvent (originalState, currentState));
- }
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- void Close ()
- {
- if (transaction != null && transaction.IsOpen)
- transaction.Rollback ();
- if (dataReader != null || xmlReader != null) {
- if(tds != null) tds.SkipToEnd ();
- dataReader = null;
- xmlReader = null;
- }
- if (pooling) {
- if(pool != null) pool.ReleaseConnection (tds);
- }else
- if(tds != null) tds.Disconnect ();
- if(tds != null) {
- tds.TdsErrorMessage -= new TdsInternalErrorMessageEventHandler (ErrorHandler);
- tds.TdsInfoMessage -= new TdsInternalInfoMessageEventHandler (MessageHandler);
- }
- ChangeState (ConnectionState.Closed);
- }
- public new SqlCommand CreateCommand ()
- {
- SqlCommand command = new SqlCommand ();
- command.Connection = this;
- return command;
- }
-
- private SqlInfoMessageEventArgs CreateSqlInfoMessageEvent (TdsInternalErrorCollection errors)
- {
- return new SqlInfoMessageEventArgs (errors);
- }
- private StateChangeEventArgs CreateStateChangeEvent (ConnectionState originalState, ConnectionState currentState)
- {
- return new StateChangeEventArgs (originalState, currentState);
- }
- protected override void Dispose (bool disposing)
- {
- if (disposed)
- return;
- try {
- if (disposing) {
- if (State == ConnectionState.Open)
- Close ();
- ConnectionString = "";
- SetDefaultConnectionParameters (this.connStringParameters);
- }
- } finally {
- disposed = true;
- base.Dispose (disposing);
- }
- }
- [MonoTODO ("Not sure what this means at present.")]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- void EnlistDistributedTransaction (ITransaction transaction)
- {
- throw new NotImplementedException ();
- }
- object ICloneable.Clone ()
- {
- return new SqlConnection (ConnectionString);
- }
- IDbTransaction IDbConnection.BeginTransaction ()
- {
- return BeginTransaction ();
- }
- IDbTransaction IDbConnection.BeginTransaction (IsolationLevel iso)
- {
- return BeginTransaction (iso);
- }
- IDbCommand IDbConnection.CreateCommand ()
- {
- return CreateCommand ();
- }
- void IDisposable.Dispose ()
- {
- Dispose (true);
- GC.SuppressFinalize (this);
- }
- ~SqlConnection ()
- {
- Dispose (false);
- }
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- void Open ()
- {
- string serverName = "";
- if (state == ConnectionState.Open)
- throw new InvalidOperationException ("The Connection is already Open (State=Open)");
- if (connectionString == null || connectionString.Trim().Length == 0)
- throw new InvalidOperationException ("Connection string has not been initialized.");
- try {
- if (!pooling) {
- if(!ParseDataSource (dataSource, out port, out serverName))
- throw new SqlException(20, 0, "SQL Server does not exist or access denied.", 17, "ConnectionOpen (Connect()).", dataSource, parms.ApplicationName, 0);
- tds = new Tds70 (serverName, port, PacketSize, ConnectionTimeout);
- }
- else {
- if(!ParseDataSource (dataSource, out port, out serverName))
- throw new SqlException(20, 0, "SQL Server does not exist or access denied.", 17, "ConnectionOpen (Connect()).", dataSource, parms.ApplicationName, 0);
-
- TdsConnectionInfo info = new TdsConnectionInfo (serverName, port, packetSize, ConnectionTimeout, minPoolSize, maxPoolSize);
- pool = sqlConnectionPools.GetConnectionPool (connectionString, info);
- tds = pool.GetConnection ();
- }
- } catch (TdsTimeoutException e) {
- throw SqlException.FromTdsInternalException ((TdsInternalException) e);
- }catch (TdsInternalException e) {
- throw SqlException.FromTdsInternalException (e);
- }
- tds.TdsErrorMessage += new TdsInternalErrorMessageEventHandler (ErrorHandler);
- tds.TdsInfoMessage += new TdsInternalInfoMessageEventHandler (MessageHandler);
- if (!tds.IsConnected) {
- try {
- tds.Connect (parms);
- }
- catch {
- if (pooling)
- pool.ReleaseConnection (tds);
- throw;
- }
- } else if (connectionReset) {
- tds.Reset ();
- }
- disposed = false; // reset this, so using () would call Close ().
- ChangeState (ConnectionState.Open);
- }
- private bool ParseDataSource (string theDataSource, out int thePort, out string theServerName)
- {
- theServerName = "";
- string theInstanceName = "";
-
- if (theDataSource == null)
- throw new ArgumentException("Format of initialization string does not conform to specifications");
- thePort = 1433; // default TCP port for SQL Server
- bool success = true;
- int idx = 0;
- if ((idx = theDataSource.IndexOf (",")) > -1) {
- theServerName = theDataSource.Substring (0, idx);
- string p = theDataSource.Substring (idx + 1);
- thePort = Int32.Parse (p);
- }
- else if ((idx = theDataSource.IndexOf ("\\")) > -1) {
- theServerName = theDataSource.Substring (0, idx);
- theInstanceName = theDataSource.Substring (idx + 1);
- // do port discovery via UDP port 1434
- port = DiscoverTcpPortViaSqlMonitor (theServerName, theInstanceName);
- if (port == -1)
- success = false;
- }
- else if (theDataSource == "" || theDataSource == "(local)")
- theServerName = "localhost";
- else
- theServerName = theDataSource;
- return success;
- }
- private bool ConvertIntegratedSecurity (string value)
- {
- if (value.ToUpper() == "SSPI")
- {
- return true;
- }
- return ConvertToBoolean("integrated security", value);
- }
- private bool ConvertToBoolean(string key, string value)
- {
- string upperValue = value.ToUpper();
- if (upperValue == "TRUE" ||upperValue == "YES")
- {
- return true;
- }
- else if (upperValue == "FALSE" || upperValue == "NO")
- {
- return false;
- }
- throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
- "Invalid value \"{0}\" for key '{1}'.", value, key));
- }
- private int ConvertToInt32(string key, string value)
- {
- try
- {
- return int.Parse(value);
- }
- catch (Exception ex)
- {
- throw new ArgumentException(string.Format(CultureInfo.InvariantCulture,
- "Invalid value \"{0}\" for key '{1}'.", value, key));
- }
- }
- private int DiscoverTcpPortViaSqlMonitor(string ServerName, string InstanceName)
- {
- SqlMonitorSocket msock;
- msock = new SqlMonitorSocket (ServerName, InstanceName);
- int SqlServerPort = msock.DiscoverTcpPort ();
- msock = null;
- return SqlServerPort;
- }
-
- void SetConnectionString (string connectionString)
- {
- NameValueCollection parameters = new NameValueCollection ();
- SetDefaultConnectionParameters (parameters);
- if ((connectionString == null) || (connectionString.Trim().Length == 0)) {
- this.connectionString = connectionString;
- this.connStringParameters = parameters;
- return;
- }
- connectionString += ";";
- bool inQuote = false;
- bool inDQuote = false;
- bool inName = true;
- string name = String.Empty;
- string value = String.Empty;
- StringBuilder sb = new StringBuilder ();
- for (int i = 0; i < connectionString.Length; i += 1) {
- char c = connectionString [i];
- char peek;
- if (i == connectionString.Length - 1)
- peek = '\0';
- else
- peek = connectionString [i + 1];
- switch (c) {
- case '\'':
- if (inDQuote)
- sb.Append (c);
- else if (peek.Equals (c)) {
- sb.Append (c);
- i += 1;
- }
- else
- inQuote = !inQuote;
- break;
- case '"':
- if (inQuote)
- sb.Append (c);
- else if (peek.Equals (c)) {
- sb.Append (c);
- i += 1;
- }
- else
- inDQuote = !inDQuote;
- break;
- case ';':
- if (inDQuote || inQuote)
- sb.Append (c);
- else {
- if (name != String.Empty && name != null) {
- value = sb.ToString ();
- SetProperties (name.ToUpper ().Trim() , value);
- parameters [name.ToUpper ().Trim ()] = value.Trim ();
- }
- else if (sb.Length != 0)
- throw new ArgumentException ("Format of initialization string doesnot conform to specifications");
- inName = true;
- name = String.Empty;
- value = String.Empty;
- sb = new StringBuilder ();
- }
- break;
- case '=':
- if (inDQuote || inQuote || !inName)
- sb.Append (c);
- else if (peek.Equals (c)) {
- sb.Append (c);
- i += 1;
- }
- else {
- name = sb.ToString ();
- sb = new StringBuilder ();
- inName = false;
- }
- break;
- case ' ':
- if (inQuote || inDQuote)
- sb.Append (c);
- else if (sb.Length > 0 && !peek.Equals (';'))
- sb.Append (c);
- break;
- default:
- sb.Append (c);
- break;
- }
- }
- connectionString = connectionString.Substring (0 , connectionString.Length-1);
- this.connectionString = connectionString;
- this.connStringParameters = parameters;
- }
- void SetDefaultConnectionParameters (NameValueCollection parameters)
- {
- parms.Reset ();
- dataSource = "";
- connectionTimeout= 15;
- connectionReset = true;
- pooling = true;
- maxPoolSize = 100;
- minPoolSize = 0;
- packetSize = 8192;
-
- parameters["APPLICATION NAME"] = "Mono SqlClient Data Provider";
- parameters["CONNECT TIMEOUT"] = "15";
- parameters["CONNECTION LIFETIME"] = "0";
- parameters["CONNECTION RESET"] = "true";
- parameters["ENLIST"] = "true";
- parameters["INTEGRATED SECURITY"] = "false";
- parameters["INITIAL CATALOG"] = "";
- parameters["MAX POOL SIZE"] = "100";
- parameters["MIN POOL SIZE"] = "0";
- parameters["NETWORK LIBRARY"] = "dbmssocn";
- parameters["PACKET SIZE"] = "8192";
- parameters["PERSIST SECURITY INFO"] = "false";
- parameters["POOLING"] = "true";
- parameters["WORKSTATION ID"] = Dns.GetHostName();
- #if NET_2_0
- async = false;
- parameters ["ASYNCHRONOUS PROCESSING"] = "false";
- #endif
- }
-
- private void SetProperties (string name , string value)
- {
- switch (name)
- {
- case "APP" :
- case "APPLICATION NAME" :
- parms.ApplicationName = value;
- break;
- case "ATTACHDBFILENAME" :
- case "EXTENDED PROPERTIES" :
- case "INITIAL FILE NAME" :
- parms.AttachDBFileName = value;
- break;
- case "TIMEOUT" :
- case "CONNECT TIMEOUT" :
- case "CONNECTION TIMEOUT" :
- int tmpTimeout = ConvertToInt32 ("connection timeout", value);
- if (tmpTimeout < 0)
- throw new ArgumentException ("Invalid CONNECTION TIMEOUT .. Must be an integer >=0 ");
- else
- connectionTimeout = tmpTimeout;
- break;
- case "CONNECTION LIFETIME" :
- break;
- case "CONNECTION RESET" :
- connectionReset = ConvertToBoolean ("connection reset", value);
- break;
- case "LANGUAGE" :
- case "CURRENT LANGUAGE" :
- parms.Language = value;
- break;
- case "DATA SOURCE" :
- case "SERVER" :
- case "ADDRESS" :
- case "ADDR" :
- case "NETWORK ADDRESS" :
- dataSource = value;
- break;
- case "ENCRYPT":
- if (ConvertToBoolean("encrypt", value))
- {
- throw new NotImplementedException("SSL encryption for"
- + " data sent between client and server is not"
- + " implemented.");
- }
- break;
- case "ENLIST" :
- if (!ConvertToBoolean("enlist", value))
- {
- throw new NotImplementedException("Disabling the automatic"
- + " enlistment of connections in the thread's current"
- + " transaction context is not implemented.");
- }
- break;
- case "INITIAL CATALOG" :
- case "DATABASE" :
- parms.Database = value;
- break;
- case "INTEGRATED SECURITY" :
- case "TRUSTED_CONNECTION" :
- parms.DomainLogin = ConvertIntegratedSecurity(value);
- break;
- case "MAX POOL SIZE" :
- int tmpMaxPoolSize = ConvertToInt32 ("max pool size" , value);
- if (tmpMaxPoolSize < 0)
- throw new ArgumentException ("Invalid MAX POOL SIZE. Must be a intger >= 0");
- else
- maxPoolSize = tmpMaxPoolSize;
- break;
- case "MIN POOL SIZE" :
- int tmpMinPoolSize = ConvertToInt32 ("min pool size" , value);
- if (tmpMinPoolSize < 0)
- throw new ArgumentException ("Invalid MIN POOL SIZE. Must be a intger >= 0");
- else
- minPoolSize = tmpMinPoolSize;
- break;
- #if NET_2_0
- case "MULTIPLEACTIVERESULTSETS":
- break;
- case "ASYNCHRONOUS PROCESSING" :
- case "ASYNC" :
- async = ConvertToBoolean (name, value);
- break;
- #endif
- case "NET" :
- case "NETWORK" :
- case "NETWORK LIBRARY" :
- if (!value.ToUpper ().Equals ("DBMSSOCN"))
- throw new ArgumentException ("Unsupported network library.");
- break;
- case "PACKET SIZE" :
- int tmpPacketSize = ConvertToInt32 ("packet size", value);
- if (tmpPacketSize < 512 || tmpPacketSize > 32767)
- throw new ArgumentException ("Invalid PACKET SIZE. The integer must be between 512 and 32767");
- else
- packetSize = tmpPacketSize;
- break;
- case "PASSWORD" :
- case "PWD" :
- parms.Password = value;
- break;
- case "PERSISTSECURITYINFO" :
- case "PERSIST SECURITY INFO" :
- // FIXME : not implemented
- // throw new NotImplementedException ();
- break;
- case "POOLING" :
- pooling = ConvertToBoolean("pooling", value);
- break;
- case "UID" :
- case "USER" :
- case "USER ID" :
- parms.User = value;
- break;
- case "WSID" :
- case "WORKSTATION ID" :
- parms.Hostname = value;
- break;
- default :
- throw new ArgumentException("Keyword not supported :"+name);
- }
- }
- static bool IsValidDatabaseName (string database)
- {
- if ( database == null || database.Trim() == String.Empty || database.Length > 128)
- return false ;
-
- if (database[0] == '"' && database[database.Length] == '"')
- database = database.Substring (1, database.Length - 2);
- else if (Char.IsDigit (database[0]))
- return false;
- if (database[0] == '_')
- return false;
- foreach (char c in database.Substring (1, database.Length - 1))
- if (!Char.IsLetterOrDigit (c) && c != '_' && c != '-')
- return false;
- return true;
- }
- private void OnSqlInfoMessage (SqlInfoMessageEventArgs value)
- {
- if (InfoMessage != null)
- InfoMessage (this, value);
- }
- private void OnStateChange (StateChangeEventArgs value)
- {
- if (StateChange != null)
- StateChange (this, value);
- }
- private sealed class SqlMonitorSocket : UdpClient
- {
- // UDP port that the SQL Monitor listens
- private static readonly int SqlMonitorUdpPort = 1434;
- private static readonly string SqlServerNotExist = "SQL Server does not exist or access denied";
- private string server;
- private string instance;
- internal SqlMonitorSocket (string ServerName, string InstanceName)
- : base (ServerName, SqlMonitorUdpPort)
- {
- server = ServerName;
- instance = InstanceName;
- }
- internal int DiscoverTcpPort ()
- {
- int SqlServerTcpPort;
- Client.Blocking = false;
- // send command to UDP 1434 (SQL Monitor) to get
- // the TCP port to connect to the MS SQL server
- ASCIIEncoding enc = new ASCIIEncoding ();
- Byte[] rawrq = new Byte [instance.Length + 1];
- rawrq[0] = 4;
- enc.GetBytes (instance, 0, instance.Length, rawrq, 1);
- int bytes = Send (rawrq, rawrq.Length);
- if (!Active)
- return -1; // Error
-
- bool result;
- result = Client.Poll (100, SelectMode.SelectRead);
- if (result == false)
- return -1; // Error
- if (Client.Available <= 0)
- return -1; // Error
- IPEndPoint endpoint = new IPEndPoint (Dns.GetHostByName ("localhost").AddressList [0], 0);
- Byte [] rawrs;
- rawrs = Receive (ref endpoint);
- string rs = Encoding.ASCII.GetString (rawrs);
- string[] rawtokens = rs.Split (';');
- Hashtable data = new Hashtable ();
- for (int i = 0; i < rawtokens.Length / 2 && i < 256; i++) {
- data [rawtokens [i * 2]] = rawtokens [ i * 2 + 1];
- }
- if (!data.ContainsKey ("tcp"))
- throw new NotImplementedException ("Only TCP/IP is supported.");
- SqlServerTcpPort = int.Parse ((string) data ["tcp"]);
- Close ();
- return SqlServerTcpPort;
- }
- }
- #endregion // Methods
- #if NET_2_0
- #region Fields Net 2
- bool async = false;
- #endregion // Fields Net 2
- #region Properties Net 2
- #if !NET_2_0
- [DataSysDescription ("Enable Asynchronous processing, 'Asynchrouse Processing=true/false' in the ConnectionString.")]
- #endif
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- internal bool AsyncProcessing {
- get { return async; }
- }
- #endregion // Properties Net 2
- #endif // NET_2_0
- }
- }
|