Package system.data.common
Class DbCommandBuilder
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.componentmodel.Component
-
- system.data.common.DbCommandBuilder
-
- All Implemented Interfaces:
java.lang.AutoCloseable,IJCOBridgeReflected
- Direct Known Subclasses:
OdbcCommandBuilder,OleDbCommandBuilder,OracleCommandBuilder,SqlCommandBuilder
public class DbCommandBuilder extends Component
The base .NET class managing System.Data.Common.DbCommandBuilder, System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.Common.DbCommandBuilder
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.StringassemblyFullNameFully assembly qualified name: System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.StringassemblyShortNameAssembly name: System.Datastatic java.lang.StringclassNameQualified class name: System.Data.Common.DbCommandBuilderstatic JCTypeclassTypeThe type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description DbCommandBuilder()DbCommandBuilder(java.lang.Object instance)Internal constructor.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DbCommandBuildercast(IJCOBridgeReflected from)Try to cast theIJCOBridgeReflectedinstance intoDbCommandBuilder, a cast assert is made to check if types are compatible.CatalogLocationgetCatalogLocation()java.lang.StringgetCatalogSeparator()ConflictOptiongetConflictOption()DbDataAdaptergetDataAdapter()DbCommandGetDeleteCommand()DbCommandGetDeleteCommand(boolean useColumnsForParameterNames)DbCommandGetInsertCommand()DbCommandGetInsertCommand(boolean useColumnsForParameterNames)java.lang.StringgetJCOAssemblyName()Returns the reflected Assembly namejava.lang.StringgetJCOClassName()Returns the reflected Class namejava.lang.ObjectgetJCOInstance()Returns the instantiated classjava.lang.StringgetJCOObjectName()Returns the reflected Class name used to build the objectJCTypegetJCOType()Returns the instantiated class Typejava.lang.StringgetQuotePrefix()java.lang.StringgetQuoteSuffix()java.lang.StringgetSchemaSeparator()booleangetSetAllValues()DbCommandGetUpdateCommand()DbCommandGetUpdateCommand(boolean useColumnsForParameterNames)java.lang.StringQuoteIdentifier(java.lang.String unquotedIdentifier)voidRefreshSchema()voidsetCatalogLocation(CatalogLocation CatalogLocation)voidsetCatalogSeparator(java.lang.String CatalogSeparator)voidsetConflictOption(ConflictOption ConflictOption)voidsetDataAdapter(DbDataAdapter DataAdapter)voidsetJCOInstance(JCObject instance)voidsetQuotePrefix(java.lang.String QuotePrefix)voidsetQuoteSuffix(java.lang.String QuoteSuffix)voidsetSchemaSeparator(java.lang.String SchemaSeparator)voidsetSetAllValues(boolean SetAllValues)java.lang.StringUnquoteIdentifier(java.lang.String quotedIdentifier)-
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.Common.DbCommandBuilder- See Also:
- Constant Field Values
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Assembly name- Specified by:
getJCOAssemblyNamein interfaceIJCOBridgeReflected- Overrides:
getJCOAssemblyNamein classComponent- Returns:
- A
Stringrepresenting the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name- Specified by:
getJCOClassNamein interfaceIJCOBridgeReflected- Overrides:
getJCOClassNamein classComponent- Returns:
- A
Stringrepresenting the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflectedReturns the reflected Class name used to build the object- Specified by:
getJCOObjectNamein interfaceIJCOBridgeReflected- Overrides:
getJCOObjectNamein classComponent- Returns:
- A
Stringrepresenting the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class- Specified by:
getJCOInstancein interfaceIJCOBridgeReflected- Overrides:
getJCOInstancein classComponent- Returns:
- An
Objectrepresenting the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstancein classComponent
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflectedReturns the instantiated class Type- Specified by:
getJCOTypein interfaceIJCOBridgeReflected- Overrides:
getJCOTypein classComponent- Returns:
- A
JCTyperepresenting the CLR Type of the instantiated Class
-
cast
public static DbCommandBuilder cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflectedinstance intoDbCommandBuilder, a cast assert is made to check if types are compatible.- Parameters:
from-IJCOBridgeReflectedinstance to be casted- Returns:
DbCommandBuilderinstance- Throws:
java.lang.Throwable- in case of error during cast operation
-
GetDeleteCommand
public DbCommand GetDeleteCommand() throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException, SecurityException
-
GetDeleteCommand
public DbCommand GetDeleteCommand(boolean useColumnsForParameterNames) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException, SecurityException
-
GetInsertCommand
public DbCommand GetInsertCommand() throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException, SecurityException
-
GetInsertCommand
public DbCommand GetInsertCommand(boolean useColumnsForParameterNames) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException, SecurityException
-
GetUpdateCommand
public DbCommand GetUpdateCommand() throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException, SecurityException
-
GetUpdateCommand
public DbCommand GetUpdateCommand(boolean useColumnsForParameterNames) throws java.lang.Throwable, ArgumentNullException, ArgumentException, MissingManifestResourceException, NotImplementedException, ObjectDisposedException, InvalidOperationException, NotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, OutOfMemoryException, SecurityException
-
QuoteIdentifier
public java.lang.String QuoteIdentifier(java.lang.String unquotedIdentifier) throws java.lang.Throwable, NotSupportedException- Throws:
java.lang.ThrowableNotSupportedException
-
UnquoteIdentifier
public java.lang.String UnquoteIdentifier(java.lang.String quotedIdentifier) throws java.lang.Throwable, NotSupportedException- Throws:
java.lang.ThrowableNotSupportedException
-
RefreshSchema
public void RefreshSchema() throws java.lang.Throwable, ArgumentException, ArgumentNullException- Throws:
java.lang.ThrowableArgumentExceptionArgumentNullException
-
getSetAllValues
public boolean getSetAllValues() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setSetAllValues
public void setSetAllValues(boolean SetAllValues) throws java.lang.Throwable- Throws:
java.lang.Throwable
-
getCatalogLocation
public CatalogLocation getCatalogLocation() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setCatalogLocation
public void setCatalogLocation(CatalogLocation CatalogLocation) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException
- Throws:
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeException
-
getDataAdapter
public DbDataAdapter getDataAdapter() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDataAdapter
public void setDataAdapter(DbDataAdapter DataAdapter) throws java.lang.Throwable, ArgumentException, ArgumentNullException
- Throws:
java.lang.ThrowableArgumentExceptionArgumentNullException
-
getConflictOption
public ConflictOption getConflictOption() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setConflictOption
public void setConflictOption(ConflictOption ConflictOption) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, MissingManifestResourceException, ObjectDisposedException
-
getCatalogSeparator
public java.lang.String getCatalogSeparator() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setCatalogSeparator
public void setCatalogSeparator(java.lang.String CatalogSeparator) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
getQuotePrefix
public java.lang.String getQuotePrefix() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setQuotePrefix
public void setQuotePrefix(java.lang.String QuotePrefix) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
getQuoteSuffix
public java.lang.String getQuoteSuffix() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setQuoteSuffix
public void setQuoteSuffix(java.lang.String QuoteSuffix) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
getSchemaSeparator
public java.lang.String getSchemaSeparator() throws java.lang.Throwable- Throws:
java.lang.Throwable
-
setSchemaSeparator
public void setSchemaSeparator(java.lang.String SchemaSeparator) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException
-
-