public interface IDbConnection extends IJCOBridgeReflected, IDisposable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.IDbConnection
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
|
static java.lang.String |
assemblyShortName
Assembly name: System.Data.Common
|
static java.lang.String |
className
Qualified class name: System.Data.IDbConnection
|
| Modifier and Type | Method and Description |
|---|---|
IDbTransaction |
BeginTransaction() |
IDbTransaction |
BeginTransaction(IsolationLevel il) |
void |
ChangeDatabase(java.lang.String databaseName) |
void |
Close() |
IDbCommand |
CreateCommand() |
java.lang.String |
getConnectionString() |
int |
getConnectionTimeout() |
java.lang.String |
getDatabase() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
ConnectionState |
getState() |
void |
Open() |
void |
setConnectionString(java.lang.String ConnectionString) |
static IDbConnection |
ToIDbConnection(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into IDbConnection, a cast assert is made to check if types are compatible. |
Dispose, ToIDisposablestatic final java.lang.String assemblyFullName
static final java.lang.String assemblyShortName
static final java.lang.String className
IDbTransaction BeginTransaction() throws java.lang.Throwable
java.lang.ThrowableIDbTransaction BeginTransaction(IsolationLevel il) throws java.lang.Throwable
java.lang.Throwablevoid ChangeDatabase(java.lang.String databaseName)
throws java.lang.Throwable
java.lang.Throwablevoid Close()
throws java.lang.Throwable
java.lang.ThrowableIDbCommand CreateCommand() throws java.lang.Throwable
java.lang.Throwablejava.lang.String getConnectionString()
throws java.lang.Throwable
java.lang.Throwableint getConnectionTimeout()
throws java.lang.Throwable
java.lang.Throwablejava.lang.String getDatabase()
throws java.lang.Throwable
java.lang.Throwablejava.lang.String getJCOAssemblyName()
getJCOAssemblyName in interface IDisposablegetJCOAssemblyName in interface IJCOBridgeReflectedString representing the Fullname of reflected Assemblyjava.lang.String getJCOClassName()
getJCOClassName in interface IDisposablegetJCOClassName in interface IJCOBridgeReflectedString representing the Fullname of reflected Classjava.lang.Object getJCOInstance()
getJCOInstance in interface IDisposablegetJCOInstance in interface IJCOBridgeReflectedObject representing the instance of the instantiated Classjava.lang.String getJCOObjectName()
getJCOObjectName in interface IDisposablegetJCOObjectName in interface IJCOBridgeReflectedString representing the name used to allocated the object
in CLR contextJCType getJCOType()
getJCOType in interface IDisposablegetJCOType in interface IJCOBridgeReflectedJCType representing the Type of the instantiated ClassConnectionState getState() throws java.lang.Throwable
java.lang.Throwablevoid Open() throws java.lang.Throwable
java.lang.Throwablevoid setConnectionString(java.lang.String ConnectionString)
throws java.lang.Throwable
java.lang.Throwablestatic IDbConnection ToIDbConnection(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into IDbConnection, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedIDbConnection instancejava.lang.Throwable - in case of error during cast operation