public interface IDbCommand extends IJCOBridgeReflected, IDisposable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.IDbCommand
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, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System.Data
|
static java.lang.String |
className
Qualified class name: System.Data.IDbCommand
|
| Modifier and Type | Method and Description |
|---|---|
void |
Cancel() |
IDbDataParameter |
CreateParameter() |
int |
ExecuteNonQuery() |
IDataReader |
ExecuteReader() |
IDataReader |
ExecuteReader(CommandBehavior behavior) |
NetObject |
ExecuteScalar() |
java.lang.String |
getCommandText() |
int |
getCommandTimeout() |
CommandType |
getCommandType() |
IDbConnection |
getConnection() |
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
|
IDataParameterCollection |
getParameters() |
IDbTransaction |
getTransaction() |
UpdateRowSource |
getUpdatedRowSource() |
void |
Prepare() |
void |
setCommandText(java.lang.String CommandText) |
void |
setCommandTimeout(int CommandTimeout) |
void |
setCommandType(CommandType CommandType) |
void |
setConnection(IDbConnection Connection) |
void |
setTransaction(IDbTransaction Transaction) |
void |
setUpdatedRowSource(UpdateRowSource UpdatedRowSource) |
static IDbCommand |
ToIDbCommand(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into IDbCommand, 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
void Cancel()
throws java.lang.Throwable
java.lang.ThrowableIDbDataParameter CreateParameter() throws java.lang.Throwable
java.lang.Throwableint ExecuteNonQuery()
throws java.lang.Throwable
java.lang.ThrowableIDataReader ExecuteReader() throws java.lang.Throwable
java.lang.ThrowableIDataReader ExecuteReader(CommandBehavior behavior) throws java.lang.Throwable
java.lang.ThrowableNetObject ExecuteScalar() throws java.lang.Throwable
java.lang.Throwablejava.lang.String getCommandText()
throws java.lang.Throwable
java.lang.Throwableint getCommandTimeout()
throws java.lang.Throwable
java.lang.ThrowableCommandType getCommandType() throws java.lang.Throwable
java.lang.ThrowableIDbConnection getConnection() 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 ClassIDataParameterCollection getParameters() throws java.lang.Throwable
java.lang.ThrowableIDbTransaction getTransaction() throws java.lang.Throwable
java.lang.ThrowableUpdateRowSource getUpdatedRowSource() throws java.lang.Throwable
java.lang.Throwablevoid Prepare()
throws java.lang.Throwable
java.lang.Throwablevoid setCommandText(java.lang.String CommandText)
throws java.lang.Throwable
java.lang.Throwablevoid setCommandTimeout(int CommandTimeout)
throws java.lang.Throwable
java.lang.Throwablevoid setCommandType(CommandType CommandType) throws java.lang.Throwable
java.lang.Throwablevoid setConnection(IDbConnection Connection) throws java.lang.Throwable
java.lang.Throwablevoid setTransaction(IDbTransaction Transaction) throws java.lang.Throwable
java.lang.Throwablevoid setUpdatedRowSource(UpdateRowSource UpdatedRowSource) throws java.lang.Throwable
java.lang.Throwablestatic IDbCommand ToIDbCommand(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into IDbCommand, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedIDbCommand instancejava.lang.Throwable - in case of error during cast operation