| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226 |
- //
- // System.Data.OleDb.OleDbConnection
- //
- // Authors:
- // Konstantin Triger <[email protected]>
- // Boris Kirzner <[email protected]>
- //
- // (C) 2005 Mainsoft Corporation (http://www.mainsoft.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 System.Data;
- using System.Data.Common;
- using System.Collections;
- using System.Data.ProviderBase;
- using System.Globalization;
- using java.sql;
- using System.Configuration;
- using Mainsoft.Data.Configuration;
- using Mainsoft.Data.Jdbc.Providers;
- namespace System.Data.OleDb
- {
- public sealed class OleDbConnection : AbstractDBConnection {
- #region Fields
- static readonly IList _providers = (IList) ConfigurationSettings.GetConfig("Mainsoft.Data.Configuration/OleDbProviders");
- #endregion //Fields
- #region Events
- public event OleDbInfoMessageEventHandler InfoMessage;
- public event StateChangeEventHandler StateChange;
- #endregion // Events
-
- #region Constructors
- public OleDbConnection() : this(null) {
- }
- public OleDbConnection(String connectionString) : base(connectionString) {
- }
- #endregion // Constructors
- #region Properties
- public String Provider {
- get {
- IDictionary conDict = ConnectionStringBuilder;
- string provider = (string)conDict["Provider"];
- if (provider == null || provider.Length == 0)
- throw ExceptionHelper.OleDbNoProviderSpecified();
- return provider;
- }
- }
- protected override IConnectionProvider GetConnectionProvider() {
- IDictionary conProviderDict = ConnectionStringDictionary.Parse(ConnectionString);
- string providerName = (string)conProviderDict["Provider"];
- if (providerName != null)
- for (int i = 0; i < _providers.Count; i++) {
- IDictionary providerInfo = (IDictionary) _providers[i];
-
- string curProvider = (string)providerInfo["Provider"];
- if (String.Compare(providerName, 0, curProvider, 0, providerName.Length, true, CultureInfo.InvariantCulture) == 0) {
- string providerType = (string) providerInfo [ConfigurationConsts.ProviderType];
- if (providerType == null || providerType.Length == 0)
- return new GenericProvider (providerInfo);
- else {
- Type t = Type.GetType (providerType);
- return (IConnectionProvider) Activator.CreateInstance (t , new object[] {providerInfo});
- }
- }
- }
- return new GenericProvider (conProviderDict);
- }
- #endregion // Properties
- #region Methods
- public new OleDbTransaction BeginTransaction(IsolationLevel level)
- {
- return new OleDbTransaction(level, this);
- }
- public new OleDbTransaction BeginTransaction()
- {
- return BeginTransaction(IsolationLevel.ReadCommitted);
- }
- public new OleDbCommand CreateCommand()
- {
- return new OleDbCommand(this);
- }
- protected override DbTransaction BeginDbTransaction(IsolationLevel isolationLevel) {
- return BeginTransaction();
- }
- protected override DbCommand CreateDbCommand() {
- return CreateCommand();
- }
- protected sealed override SystemException CreateException(SQLException e)
- {
- return new OleDbException(e,this);
- }
- protected sealed override SystemException CreateException(string message)
- {
- return new OleDbException(message, null, this);
- }
- public DataTable GetOleDbSchemaTable (Guid schema, object[] restrictions)
- {
- DataTable schemaTable = new DataTable("Tables");
- schemaTable.Columns.Add("TABLE_CATALOG");
- schemaTable.Columns.Add("TABLE_SCHEMA");
- schemaTable.Columns.Add("TABLE_NAME");
- schemaTable.Columns.Add("TABLE_TYPE");
- schemaTable.Columns.Add("TABLE_GUID");
- schemaTable.Columns.Add("DESCRIPTION");
- schemaTable.Columns.Add("TABLE_PROPID");
- schemaTable.Columns.Add("DATE_CREATED");
- schemaTable.Columns.Add("DATE_MODIFIED");
-
-
- java.sql.Connection con = JdbcConnection;
- String catalog = con.getCatalog();
-
- DatabaseMetaData meta = con.getMetaData();
- java.sql.ResultSet schemaRes = meta.getSchemas();
- System.Collections.ArrayList schemas = new System.Collections.ArrayList();
- while(schemaRes.next()) {
- schemas.Add(schemaRes.getString(1));
- }
- schemaRes.close();
- for(int i = 0; i < schemas.Count; i++) {
- java.sql.ResultSet tableRes = meta.getTables(catalog, schemas[i].ToString(), null, null);
- while(tableRes.next()) {
- DataRow row = schemaTable.NewRow();
- row["TABLE_CATALOG"] = catalog;
- row["TABLE_SCHEMA"] = schemas[i];
- row["TABLE_NAME"] = tableRes.getString("TABLE_NAME");
- row["TABLE_TYPE"] = tableRes.getString("TABLE_TYPE");
- row["DESCRIPTION"] = tableRes.getString("REMARKS");
-
- schemaTable.Rows.Add(row);
- }
- tableRes.close();
- }
- return schemaTable;
- }
- public static void ReleaseObjectPool()
- {
- // since we're using connection pool from app servet, this is by design
- //throw new NotImplementedException();
- }
- protected internal sealed override void OnSqlWarning(SQLWarning warning)
- {
- OleDbErrorCollection col = new OleDbErrorCollection(warning, this);
- OnOleDbInfoMessage(new OleDbInfoMessageEventArgs(col));
- }
- protected internal sealed override void OnStateChanged(ConnectionState orig, ConnectionState current)
- {
- if(StateChange != null) {
- StateChange(this, new StateChangeEventArgs(orig, current));
- }
- }
- public override void Close()
- {
- ConnectionState orig = State;
- base.Close();
- ConnectionState current = State;
- if(current != orig) {
- OnStateChanged(orig, current);
- }
- }
- private void OnOleDbInfoMessage (OleDbInfoMessageEventArgs value)
- {
- if (InfoMessage != null) {
- InfoMessage (this, value);
- }
- }
- #endregion // Methods
- }
- }
|