Package system.data.sqlclient
Class SqlCommand
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.componentmodel.Component
-
- system.data.common.DbCommand
-
- system.data.sqlclient.SqlCommand
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class SqlCommand extends DbCommand
The base .NET class managing System.Data.SqlClient.SqlCommand, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.SqlClient.SqlCommand
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: System.Datastatic java.lang.String
className
Qualified class name: System.Data.SqlClient.SqlCommandstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description SqlCommand()
SqlCommand(java.lang.Object instance)
Internal constructor.SqlCommand(java.lang.String cmdText)
SqlCommand(java.lang.String cmdText, SqlConnection connection)
SqlCommand(java.lang.String cmdText, SqlConnection connection, SqlTransaction transaction)
SqlCommand(java.lang.String cmdText, SqlConnection connection, SqlTransaction transaction, SqlCommandColumnEncryptionSetting columnEncryptionSetting)
-
Method Summary
-
Methods inherited from class system.data.common.DbCommand
CreateParameter, ExecuteReader, ExecuteReader, getCommandText, getCommandTimeout, getCommandType, getConnection, getDesignTimeVisible, getParameters, getTransaction, getUpdatedRowSource, setCommandText, setCommandTimeout, setCommandType, setConnection, setDesignTimeVisible, setTransaction, setUpdatedRowSource
-
Methods inherited from class system.componentmodel.Component
addDisposed, close, Dispose, getContainer, getSite, removeDisposed, setSite
-
Methods inherited from class system.MarshalByRefObject
CreateObjRef, GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Data- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.SqlClient.SqlCommand- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SqlCommand
public SqlCommand(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
SqlCommand
public SqlCommand() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
ArgumentNullException
-
SqlCommand
public SqlCommand(java.lang.String cmdText) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentException
ArgumentNullException
-
SqlCommand
public SqlCommand(java.lang.String cmdText, SqlConnection connection) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
SqlCommand
public SqlCommand(java.lang.String cmdText, SqlConnection connection, SqlTransaction transaction) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
SqlCommand
public SqlCommand(java.lang.String cmdText, SqlConnection connection, SqlTransaction transaction, SqlCommandColumnEncryptionSetting columnEncryptionSetting) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classDbCommand
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classDbCommand
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classDbCommand
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classDbCommand
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classDbCommand
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classDbCommand
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static SqlCommand cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoSqlCommand
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
SqlCommand
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
EndExecuteNonQuery
public int EndExecuteNonQuery(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, SemaphoreFullException, TaskSchedulerException, MissingManifestResourceException, ObjectDisposedException, SqlException, AbandonedMutexException, CultureNotFoundException, NotSupportedException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SqlTypeException, SqlNullValueException, SqlTruncateException, TypeLoadException, InvalidUdtException, EventSourceException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
SemaphoreFullException
TaskSchedulerException
MissingManifestResourceException
ObjectDisposedException
SqlException
AbandonedMutexException
CultureNotFoundException
NotSupportedException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
SqlTypeException
SqlNullValueException
SqlTruncateException
TypeLoadException
InvalidUdtException
EventSourceException
-
ExecuteNonQuery
public int ExecuteNonQuery() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException, NotSupportedException, KeyNotFoundException, InvalidOperationException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, FormatException, SqlNullValueException, TargetInvocationException, SqlTypeException, InvalidCastException, SqlException, SqlTruncateException, DivideByZeroException, TransactionException, SemaphoreFullException, TaskSchedulerException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AggregateException, NullReferenceException, CryptographicException, PlatformNotSupportedException, CryptographicUnexpectedOperationException
- Overrides:
ExecuteNonQuery
in classDbCommand
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
IndexOutOfRangeException
EventSourceException
OutOfMemoryException
NotSupportedException
KeyNotFoundException
InvalidOperationException
NotImplementedException
MissingManifestResourceException
ObjectDisposedException
FormatException
SqlNullValueException
TargetInvocationException
SqlTypeException
InvalidCastException
SqlException
SqlTruncateException
DivideByZeroException
TransactionException
SemaphoreFullException
TaskSchedulerException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AggregateException
NullReferenceException
CryptographicException
PlatformNotSupportedException
CryptographicUnexpectedOperationException
-
Clone
public SqlCommand Clone() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentException, ArgumentNullException, NotImplementedException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, FormatException
-
EndExecuteReader
public SqlDataReader EndExecuteReader(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, SemaphoreFullException, TaskSchedulerException, MissingManifestResourceException, ObjectDisposedException, SqlException, AbandonedMutexException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, SqlNullValueException, SqlTruncateException, EventSourceException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
SemaphoreFullException
TaskSchedulerException
MissingManifestResourceException
ObjectDisposedException
SqlException
AbandonedMutexException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
SqlNullValueException
SqlTruncateException
EventSourceException
-
ExecuteReaderNewSqlCommand
public SqlDataReader ExecuteReaderNewSqlCommand() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException, NotSupportedException, InvalidOperationException, MissingManifestResourceException, ObjectDisposedException, FormatException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, PlatformNotSupportedException, CryptographicException, SqlTruncateException, NotImplementedException, TaskSchedulerException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
IndexOutOfRangeException
EventSourceException
OutOfMemoryException
NotSupportedException
InvalidOperationException
MissingManifestResourceException
ObjectDisposedException
FormatException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
PlatformNotSupportedException
CryptographicException
SqlTruncateException
NotImplementedException
TaskSchedulerException
CryptographicUnexpectedOperationException
-
ExecuteReaderNewSqlCommand
public SqlDataReader ExecuteReaderNewSqlCommand(CommandBehavior behavior) throws java.lang.Throwable, IndexOutOfRangeException, EventSourceException, ArgumentNullException, OutOfMemoryException, ArgumentException, NotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, MissingManifestResourceException, ObjectDisposedException, FormatException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, OverflowException, PlatformNotSupportedException, CryptographicException, SqlTruncateException, NotImplementedException, TaskSchedulerException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
IndexOutOfRangeException
EventSourceException
ArgumentNullException
OutOfMemoryException
ArgumentException
NotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
MissingManifestResourceException
ObjectDisposedException
FormatException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
OverflowException
PlatformNotSupportedException
CryptographicException
SqlTruncateException
NotImplementedException
TaskSchedulerException
CryptographicUnexpectedOperationException
-
CreateParameterNewSqlCommand
public SqlParameter CreateParameterNewSqlCommand() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
BeginExecuteNonQuery
public IAsyncResult BeginExecuteNonQuery() throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, TaskSchedulerException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, EventSourceException, OutOfMemoryException, NotSupportedException, KeyNotFoundException, FormatException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, OverflowException, AggregateException, OperationCanceledException, SemaphoreFullException, PlatformNotSupportedException, CryptographicException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
TaskSchedulerException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
EventSourceException
OutOfMemoryException
NotSupportedException
KeyNotFoundException
FormatException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
OverflowException
AggregateException
OperationCanceledException
SemaphoreFullException
PlatformNotSupportedException
CryptographicException
IndexOutOfRangeException
-
BeginExecuteNonQuery
public IAsyncResult BeginExecuteNonQuery(AsyncCallback callback, NetObject stateObject) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, ObjectDisposedException, TaskSchedulerException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, EventSourceException, OutOfMemoryException, NotSupportedException, FormatException, SqlNullValueException, TargetInvocationException, SqlTypeException, InvalidCastException, OverflowException, SqlException, IndexOutOfRangeException, SqlTruncateException, AggregateException, ThreadAbortException, SemaphoreFullException, PlatformNotSupportedException, CryptographicException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
ObjectDisposedException
TaskSchedulerException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
EventSourceException
OutOfMemoryException
NotSupportedException
FormatException
SqlNullValueException
TargetInvocationException
SqlTypeException
InvalidCastException
OverflowException
SqlException
IndexOutOfRangeException
SqlTruncateException
AggregateException
ThreadAbortException
SemaphoreFullException
PlatformNotSupportedException
CryptographicException
CryptographicUnexpectedOperationException
-
BeginExecuteReader
public IAsyncResult BeginExecuteReader() throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, TaskSchedulerException, ArgumentNullException, ArgumentException, EventSourceException, OutOfMemoryException, NotSupportedException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, KeyNotFoundException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, OverflowException, PlatformNotSupportedException, CryptographicException, IndexOutOfRangeException, SqlTruncateException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
TaskSchedulerException
ArgumentNullException
ArgumentException
EventSourceException
OutOfMemoryException
NotSupportedException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
FormatException
KeyNotFoundException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
OverflowException
PlatformNotSupportedException
CryptographicException
IndexOutOfRangeException
SqlTruncateException
CryptographicUnexpectedOperationException
-
BeginExecuteReader
public IAsyncResult BeginExecuteReader(AsyncCallback callback, NetObject stateObject) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, TaskSchedulerException, ArgumentNullException, ArgumentException, EventSourceException, OutOfMemoryException, NotSupportedException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, KeyNotFoundException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, OverflowException, PlatformNotSupportedException, CryptographicException, IndexOutOfRangeException, SqlTruncateException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
TaskSchedulerException
ArgumentNullException
ArgumentException
EventSourceException
OutOfMemoryException
NotSupportedException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
FormatException
KeyNotFoundException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
OverflowException
PlatformNotSupportedException
CryptographicException
IndexOutOfRangeException
SqlTruncateException
CryptographicUnexpectedOperationException
-
BeginExecuteReader
public IAsyncResult BeginExecuteReader(AsyncCallback callback, NetObject stateObject, CommandBehavior behavior) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, ObjectDisposedException, TaskSchedulerException, ArgumentNullException, ArgumentException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException, NotSupportedException, NotImplementedException, MissingManifestResourceException, FormatException, SqlNullValueException, TargetInvocationException, SqlTypeException, InvalidCastException, OverflowException, SqlException, SqlTruncateException, NullReferenceException, CryptographicException, PlatformNotSupportedException, AggregateException, SemaphoreFullException, CryptographicUnexpectedOperationException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
ObjectDisposedException
TaskSchedulerException
ArgumentNullException
ArgumentException
IndexOutOfRangeException
EventSourceException
OutOfMemoryException
NotSupportedException
NotImplementedException
MissingManifestResourceException
FormatException
SqlNullValueException
TargetInvocationException
SqlTypeException
InvalidCastException
OverflowException
SqlException
SqlTruncateException
NullReferenceException
CryptographicException
PlatformNotSupportedException
AggregateException
SemaphoreFullException
CryptographicUnexpectedOperationException
AbandonedMutexException
-
BeginExecuteReader
public IAsyncResult BeginExecuteReader(CommandBehavior behavior) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, TaskSchedulerException, ArgumentNullException, ArgumentException, EventSourceException, OutOfMemoryException, NotSupportedException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, KeyNotFoundException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, OverflowException, PlatformNotSupportedException, CryptographicException, IndexOutOfRangeException, SqlTruncateException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
TaskSchedulerException
ArgumentNullException
ArgumentException
EventSourceException
OutOfMemoryException
NotSupportedException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
FormatException
KeyNotFoundException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
OverflowException
PlatformNotSupportedException
CryptographicException
IndexOutOfRangeException
SqlTruncateException
CryptographicUnexpectedOperationException
-
BeginExecuteXmlReader
public IAsyncResult BeginExecuteXmlReader() throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, TaskSchedulerException, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, EventSourceException, OutOfMemoryException, NotSupportedException, KeyNotFoundException, FormatException, SqlNullValueException, SqlTypeException, InvalidCastException, SqlException, OverflowException, PlatformNotSupportedException, CryptographicException, IndexOutOfRangeException, SqlTruncateException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
TaskSchedulerException
ArgumentNullException
ArgumentException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
EventSourceException
OutOfMemoryException
NotSupportedException
KeyNotFoundException
FormatException
SqlNullValueException
SqlTypeException
InvalidCastException
SqlException
OverflowException
PlatformNotSupportedException
CryptographicException
IndexOutOfRangeException
SqlTruncateException
CryptographicUnexpectedOperationException
-
BeginExecuteXmlReader
public IAsyncResult BeginExecuteXmlReader(AsyncCallback callback, NetObject stateObject) throws java.lang.Throwable, ArgumentOutOfRangeException, InvalidOperationException, ObjectDisposedException, TaskSchedulerException, ArgumentNullException, ArgumentException, NotImplementedException, MissingManifestResourceException, EventSourceException, OutOfMemoryException, NotSupportedException, FormatException, SqlNullValueException, TargetInvocationException, SqlTypeException, InvalidCastException, OverflowException, SqlException, IndexOutOfRangeException, SqlTruncateException, NullReferenceException, CryptographicException, PlatformNotSupportedException, AggregateException, SemaphoreFullException, CryptographicUnexpectedOperationException, AbandonedMutexException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
InvalidOperationException
ObjectDisposedException
TaskSchedulerException
ArgumentNullException
ArgumentException
NotImplementedException
MissingManifestResourceException
EventSourceException
OutOfMemoryException
NotSupportedException
FormatException
SqlNullValueException
TargetInvocationException
SqlTypeException
InvalidCastException
OverflowException
SqlException
IndexOutOfRangeException
SqlTruncateException
NullReferenceException
CryptographicException
PlatformNotSupportedException
AggregateException
SemaphoreFullException
CryptographicUnexpectedOperationException
AbandonedMutexException
-
ExecuteScalar
public NetObject ExecuteScalar() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException, NotSupportedException, KeyNotFoundException, InvalidOperationException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, SqlNullValueException, TargetInvocationException, SqlTypeException, InvalidCastException, SqlException, SqlTruncateException, NullReferenceException, CryptographicException, PlatformNotSupportedException, AggregateException, SemaphoreFullException, TaskSchedulerException, CryptographicUnexpectedOperationException
- Overrides:
ExecuteScalar
in classDbCommand
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
IndexOutOfRangeException
EventSourceException
OutOfMemoryException
NotSupportedException
KeyNotFoundException
InvalidOperationException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
FormatException
SqlNullValueException
TargetInvocationException
SqlTypeException
InvalidCastException
SqlException
SqlTruncateException
NullReferenceException
CryptographicException
PlatformNotSupportedException
AggregateException
SemaphoreFullException
TaskSchedulerException
CryptographicUnexpectedOperationException
-
EndExecuteXmlReader
public XmlReader EndExecuteXmlReader(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, SemaphoreFullException, TaskSchedulerException, MissingManifestResourceException, ObjectDisposedException, SqlException, AbandonedMutexException, FormatException, OverflowException, OutOfMemoryException, WaitHandleCannotBeOpenedException, SqlNullValueException, SqlTruncateException, TargetInvocationException, EventSourceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
SemaphoreFullException
TaskSchedulerException
MissingManifestResourceException
ObjectDisposedException
SqlException
AbandonedMutexException
FormatException
OverflowException
OutOfMemoryException
WaitHandleCannotBeOpenedException
SqlNullValueException
SqlTruncateException
TargetInvocationException
EventSourceException
-
ExecuteXmlReader
public XmlReader ExecuteXmlReader() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, IndexOutOfRangeException, EventSourceException, OutOfMemoryException, NotSupportedException, KeyNotFoundException, InvalidOperationException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, FormatException, SqlNullValueException, TargetInvocationException, SqlTypeException, InvalidCastException, SqlException, SqlTruncateException, NullReferenceException, CryptographicException, PlatformNotSupportedException, AggregateException, SemaphoreFullException, TaskSchedulerException, CryptographicUnexpectedOperationException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
IndexOutOfRangeException
EventSourceException
OutOfMemoryException
NotSupportedException
KeyNotFoundException
InvalidOperationException
MissingManifestResourceException
NotImplementedException
ObjectDisposedException
FormatException
SqlNullValueException
TargetInvocationException
SqlTypeException
InvalidCastException
SqlException
SqlTruncateException
NullReferenceException
CryptographicException
PlatformNotSupportedException
AggregateException
SemaphoreFullException
TaskSchedulerException
CryptographicUnexpectedOperationException
-
Cancel
public void Cancel() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, ObjectDisposedException, AbandonedMutexException, InvalidOperationException, OperationCanceledException, TaskSchedulerException, TaskCanceledException, AggregateException, SemaphoreFullException, MissingManifestResourceException, NotImplementedException, OutOfMemoryException, CryptographicException, NotSupportedException, SqlException, IndexOutOfRangeException
- Overrides:
Cancel
in classDbCommand
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
ObjectDisposedException
AbandonedMutexException
InvalidOperationException
OperationCanceledException
TaskSchedulerException
TaskCanceledException
AggregateException
SemaphoreFullException
MissingManifestResourceException
NotImplementedException
OutOfMemoryException
CryptographicException
NotSupportedException
SqlException
IndexOutOfRangeException
-
Prepare
public void Prepare() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, OverflowException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, OutOfMemoryException, SqlException, SqlNullValueException, SqlTruncateException
- Overrides:
Prepare
in classDbCommand
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
OverflowException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
OutOfMemoryException
SqlException
SqlNullValueException
SqlTruncateException
-
ResetCommandTimeout
public void ResetCommandTimeout() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getNotificationAutoEnlist
public boolean getNotificationAutoEnlist() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setNotificationAutoEnlist
public void setNotificationAutoEnlist(boolean NotificationAutoEnlist) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getNotification
public SqlNotificationRequest getNotification() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setNotification
public void setNotification(SqlNotificationRequest Notification) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getColumnEncryptionSetting
public SqlCommandColumnEncryptionSetting getColumnEncryptionSetting() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getConnectionNewSqlCommand
public SqlConnection getConnectionNewSqlCommand() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setConnection
public void setConnection(SqlConnection Connection) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
-
getParametersNewSqlCommand
public SqlParameterCollection getParametersNewSqlCommand() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getTransactionNewSqlCommand
public SqlTransaction getTransactionNewSqlCommand() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setTransaction
public void setTransaction(SqlTransaction Transaction) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
-
addStatementCompleted
public void addStatementCompleted(StatementCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeStatementCompleted
public void removeStatementCompleted(StatementCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-