Package system.data
Class DataSet
- java.lang.Object
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class DataSet extends MarshalByValueComponent
The base .NET class managing System.Data.DataSet, System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Data.DataSet
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.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Data.Commonstatic java.lang.String
className
Qualified class name: System.Data.DataSetstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
AcceptChanges()
void
addInitialized(EventHandler handler)
void
addMergeFailed(MergeFailedEventHandler handler)
void
BeginInit()
static DataSet
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoDataSet
, a cast assert is made to check if types are compatible.void
Clear()
DataSet
Clone()
DataSet
Copy()
DataTableReader
CreateDataReader()
DataTableReader
CreateDataReader(DataTable... dataTables)
void
EndInit()
boolean
getCaseSensitive()
DataSet
GetChanges()
DataSet
GetChanges(DataRowState rowStates)
java.lang.String
getDataSetName()
static XmlSchemaComplexType
GetDataSetSchema(XmlSchemaSet schemaSet)
DataViewManager
getDefaultViewManager()
boolean
getEnforceConstraints()
PropertyCollection
getExtendedProperties()
boolean
getHasErrors()
boolean
getIsInitialized()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class TypeCultureInfo
getLocale()
java.lang.String
getNamespace()
void
GetObjectData(SerializationInfo info, StreamingContext context)
java.lang.String
getPrefix()
DataRelationCollection
getRelations()
SerializationFormat
getRemotingFormat()
SchemaSerializationMode
getSchemaSerializationMode()
DataTableCollection
getTables()
java.lang.String
GetXml()
java.lang.String
GetXmlSchema()
boolean
HasChanges()
boolean
HasChanges(DataRowState rowStates)
void
InferXmlSchema(java.lang.String fileName, java.lang.String[] nsArray)
void
InferXmlSchema(java.lang.String dupParam0, JCORefOut dupParam1)
void
InferXmlSchema(Stream stream, java.lang.String[] nsArray)
void
InferXmlSchema(Stream dupParam0, JCORefOut dupParam1)
void
InferXmlSchema(TextReader reader, java.lang.String[] nsArray)
void
InferXmlSchema(TextReader dupParam0, JCORefOut dupParam1)
void
InferXmlSchema(XmlReader reader, java.lang.String[] nsArray)
void
InferXmlSchema(XmlReader dupParam0, JCORefOut dupParam1)
void
Load(IDataReader reader, LoadOption loadOption, java.lang.String... tables)
void
Load(IDataReader dupParam0, LoadOption dupParam1, JCORefOut dupParam2)
void
Load(IDataReader reader, LoadOption loadOption, DataTable... tables)
void
Load(IDataReader reader, LoadOption loadOption, FillErrorEventHandler errorHandler, DataTable... tables)
void
Merge(DataRow[] rows)
void
Merge(DataRow[] rows, boolean preserveChanges, MissingSchemaAction missingSchemaAction)
void
Merge(DataSet dataSet)
void
Merge(DataSet dataSet, boolean preserveChanges)
void
Merge(DataSet dataSet, boolean preserveChanges, MissingSchemaAction missingSchemaAction)
void
Merge(DataTable table)
void
Merge(DataTable table, boolean preserveChanges, MissingSchemaAction missingSchemaAction)
XmlReadMode
ReadXml(java.lang.String fileName)
XmlReadMode
ReadXml(java.lang.String fileName, XmlReadMode mode)
XmlReadMode
ReadXml(Stream stream)
XmlReadMode
ReadXml(Stream stream, XmlReadMode mode)
XmlReadMode
ReadXml(TextReader reader)
XmlReadMode
ReadXml(TextReader reader, XmlReadMode mode)
XmlReadMode
ReadXml(XmlReader reader)
XmlReadMode
ReadXml(XmlReader reader, XmlReadMode mode)
void
ReadXmlSchema(java.lang.String fileName)
void
ReadXmlSchema(Stream stream)
void
ReadXmlSchema(TextReader reader)
void
ReadXmlSchema(XmlReader reader)
void
RejectChanges()
void
removeInitialized(EventHandler handler)
void
removeMergeFailed(MergeFailedEventHandler handler)
void
Reset()
void
setCaseSensitive(boolean CaseSensitive)
void
setDataSetName(java.lang.String DataSetName)
void
setEnforceConstraints(boolean EnforceConstraints)
void
setJCOInstance(JCObject instance)
void
setLocale(CultureInfo Locale)
void
setNamespace(java.lang.String Namespace)
void
setPrefix(java.lang.String Prefix)
void
setRemotingFormat(SerializationFormat RemotingFormat)
void
setSchemaSerializationMode(SchemaSerializationMode SchemaSerializationMode)
void
WriteXml(java.lang.String fileName)
void
WriteXml(java.lang.String fileName, XmlWriteMode mode)
void
WriteXml(Stream stream)
void
WriteXml(Stream stream, XmlWriteMode mode)
void
WriteXml(TextWriter writer)
void
WriteXml(TextWriter writer, XmlWriteMode mode)
void
WriteXml(XmlWriter writer)
void
WriteXml(XmlWriter writer, XmlWriteMode mode)
void
WriteXmlSchema(java.lang.String fileName)
void
WriteXmlSchema(Stream stream)
void
WriteXmlSchema(TextWriter writer)
void
WriteXmlSchema(XmlWriter writer)
-
Methods inherited from class system.componentmodel.MarshalByValueComponent
addDisposed, close, Dispose, getContainer, getDesignMode, GetService, getSite, removeDisposed, setSite
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Data.Common, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Data.Common- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Data.DataSet- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DataSet
public DataSet(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
DataSet
public DataSet() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, OutOfMemoryException, EventSourceException
-
DataSet
public DataSet(java.lang.String dataSetName) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, IndexOutOfRangeException, FormatException, EventSourceException
-
-
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 classMarshalByValueComponent
- 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 classMarshalByValueComponent
- 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 classMarshalByValueComponent
- 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 classMarshalByValueComponent
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classMarshalByValueComponent
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classMarshalByValueComponent
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static DataSet cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoDataSet
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
DataSet
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
HasChanges
public boolean HasChanges() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, CultureNotFoundException, ObjectDisposedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
CultureNotFoundException
ObjectDisposedException
-
HasChanges
public boolean HasChanges(DataRowState rowStates) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, CultureNotFoundException, ArrayTypeMismatchException
-
Clone
public DataSet Clone() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, MissingMethodException, TargetInvocationException, LockRecursionException, ArgumentNullException, SynchronizationLockException, RankException, IndexOutOfRangeException, SqlNullValueException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException, OutOfMemoryException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
MissingMethodException
TargetInvocationException
LockRecursionException
ArgumentNullException
SynchronizationLockException
RankException
IndexOutOfRangeException
SqlNullValueException
KeyNotFoundException
NotImplementedException
RegexMatchTimeoutException
OutOfMemoryException
-
Copy
public DataSet Copy() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, MissingMethodException, TargetInvocationException, ArgumentNullException, SynchronizationLockException, RankException, IndexOutOfRangeException, SqlNullValueException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException, ArrayTypeMismatchException, OutOfMemoryException, OverflowException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
MissingMethodException
TargetInvocationException
ArgumentNullException
SynchronizationLockException
RankException
IndexOutOfRangeException
SqlNullValueException
KeyNotFoundException
NotImplementedException
RegexMatchTimeoutException
ArrayTypeMismatchException
OutOfMemoryException
OverflowException
-
GetChanges
public DataSet GetChanges() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, ObjectDisposedException, SynchronizationLockException, MissingMethodException, TargetInvocationException, RankException, SqlNullValueException, NullReferenceException, NotImplementedException, OutOfMemoryException, OverflowException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
ObjectDisposedException
SynchronizationLockException
MissingMethodException
TargetInvocationException
RankException
SqlNullValueException
NullReferenceException
NotImplementedException
OutOfMemoryException
OverflowException
-
GetChanges
public DataSet GetChanges(DataRowState rowStates) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, CultureNotFoundException, ArrayTypeMismatchException, SynchronizationLockException, MissingMethodException, TargetInvocationException, RankException, IndexOutOfRangeException, SqlNullValueException, KeyNotFoundException, NotImplementedException, RegexMatchTimeoutException, OutOfMemoryException, OverflowException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
CultureNotFoundException
ArrayTypeMismatchException
SynchronizationLockException
MissingMethodException
TargetInvocationException
RankException
IndexOutOfRangeException
SqlNullValueException
KeyNotFoundException
NotImplementedException
RegexMatchTimeoutException
OutOfMemoryException
OverflowException
-
CreateDataReader
public DataTableReader CreateDataReader() throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException, IndexOutOfRangeException, FormatException, ArrayTypeMismatchException, MulticastNotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
NotSupportedException
InvalidOperationException
ObjectDisposedException
IndexOutOfRangeException
FormatException
ArrayTypeMismatchException
MulticastNotSupportedException
-
CreateDataReader
public DataTableReader CreateDataReader(DataTable... dataTables) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, ArgumentNullException, MulticastNotSupportedException
-
ReadXml
public XmlReadMode ReadXml(Stream stream, XmlReadMode mode) throws java.lang.Throwable, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IOException, NotSupportedException, InvalidOperationException, ArgumentException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, ArgumentNullException, UnreachableException, FormatException, EventSourceException, XmlException, SqlNullValueException, MissingMethodException, TargetInvocationException, InvalidCastException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArrayTypeMismatchException
PlatformNotSupportedException
IOException
NotSupportedException
InvalidOperationException
ArgumentException
CultureNotFoundException
IndexOutOfRangeException
UriFormatException
ArgumentNullException
UnreachableException
FormatException
EventSourceException
XmlException
SqlNullValueException
MissingMethodException
TargetInvocationException
InvalidCastException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXml
public XmlReadMode ReadXml(Stream stream) throws java.lang.Throwable, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IOException, NotSupportedException, InvalidOperationException, ArgumentException, IndexOutOfRangeException, FormatException, EventSourceException, ArgumentNullException, XmlException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException, OutOfMemoryException, OverflowException, TypeLoadException, CultureNotFoundException, SqlTruncateException, SqlTypeException, XmlSchemaInferenceException, XmlSchemaException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArrayTypeMismatchException
PlatformNotSupportedException
IOException
NotSupportedException
InvalidOperationException
ArgumentException
IndexOutOfRangeException
FormatException
EventSourceException
ArgumentNullException
XmlException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
OutOfMemoryException
OverflowException
TypeLoadException
CultureNotFoundException
SqlTruncateException
SqlTypeException
XmlSchemaInferenceException
XmlSchemaException
-
ReadXml
public XmlReadMode ReadXml(TextReader reader, XmlReadMode mode) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ArrayTypeMismatchException, OutOfMemoryException, ArgumentNullException, InvalidOperationException, EventSourceException, XmlException, SqlNullValueException, MissingMethodException, TargetInvocationException, FormatException, InvalidCastException, IndexOutOfRangeException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ArrayTypeMismatchException
OutOfMemoryException
ArgumentNullException
InvalidOperationException
EventSourceException
XmlException
SqlNullValueException
MissingMethodException
TargetInvocationException
FormatException
InvalidCastException
IndexOutOfRangeException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXml
public XmlReadMode ReadXml(TextReader reader) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, ArgumentNullException, XmlException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException, OutOfMemoryException, OverflowException, TypeLoadException, CultureNotFoundException, SqlTruncateException, SqlTypeException, XmlSchemaInferenceException, XmlSchemaException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
ArgumentNullException
XmlException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
OutOfMemoryException
OverflowException
TypeLoadException
CultureNotFoundException
SqlTruncateException
SqlTypeException
XmlSchemaInferenceException
XmlSchemaException
-
ReadXml
public XmlReadMode ReadXml(java.lang.String fileName, XmlReadMode mode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, OutOfMemoryException, SerializationException, ArrayTypeMismatchException, IOException, NotSupportedException, InvalidOperationException, CultureNotFoundException, UriFormatException, UnreachableException, EventSourceException, XmlException, SqlNullValueException, MissingMethodException, TargetInvocationException, FormatException, InvalidCastException, IndexOutOfRangeException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
OutOfMemoryException
SerializationException
ArrayTypeMismatchException
IOException
NotSupportedException
InvalidOperationException
CultureNotFoundException
UriFormatException
UnreachableException
EventSourceException
XmlException
SqlNullValueException
MissingMethodException
TargetInvocationException
FormatException
InvalidCastException
IndexOutOfRangeException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXml
public XmlReadMode ReadXml(java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, InvalidOperationException, ArgumentOutOfRangeException, UnreachableException, ObjectDisposedException, EventSourceException, FormatException, XmlException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException, OutOfMemoryException, OverflowException, TypeLoadException, SqlTruncateException, SqlTypeException, XmlSchemaInferenceException, XmlSchemaException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
UriFormatException
InvalidOperationException
ArgumentOutOfRangeException
UnreachableException
ObjectDisposedException
EventSourceException
FormatException
XmlException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
OutOfMemoryException
OverflowException
TypeLoadException
SqlTruncateException
SqlTypeException
XmlSchemaInferenceException
XmlSchemaException
-
ReadXml
public XmlReadMode ReadXml(XmlReader reader, XmlReadMode mode) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, SqlNullValueException, MissingMethodException, TargetInvocationException, InvalidCastException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
SqlNullValueException
MissingMethodException
TargetInvocationException
InvalidCastException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXml
public XmlReadMode ReadXml(XmlReader reader) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException, OutOfMemoryException, OverflowException, TypeLoadException, CultureNotFoundException, SqlTruncateException, SqlTypeException, XmlSchemaInferenceException, XmlSchemaException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
OutOfMemoryException
OverflowException
TypeLoadException
CultureNotFoundException
SqlTruncateException
SqlTypeException
XmlSchemaInferenceException
XmlSchemaException
-
GetXml
public java.lang.String GetXml() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, ArgumentNullException, ArrayTypeMismatchException, OutOfMemoryException, XmlException, IndexOutOfRangeException, SynchronizationLockException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
ArgumentNullException
ArrayTypeMismatchException
OutOfMemoryException
XmlException
IndexOutOfRangeException
SynchronizationLockException
-
GetXmlSchema
public java.lang.String GetXmlSchema() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, XmlException, ArgumentNullException, IndexOutOfRangeException, OverflowException, SqlNullValueException, SqlTypeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
XmlException
ArgumentNullException
IndexOutOfRangeException
OverflowException
SqlNullValueException
SqlTypeException
-
GetDataSetSchema
public static XmlSchemaComplexType GetDataSetSchema(XmlSchemaSet schemaSet) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentNullException, ArgumentOutOfRangeException, CultureNotFoundException, InvalidOperationException, ObjectDisposedException, OutOfMemoryException, XmlSchemaException
-
AcceptChanges
public void AcceptChanges() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, ArrayTypeMismatchException, ArgumentNullException, SynchronizationLockException
-
BeginInit
public void BeginInit() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
Clear
public void Clear() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, LockRecursionException, SynchronizationLockException, ArgumentNullException, SqlNullValueException, InvalidCastException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
LockRecursionException
SynchronizationLockException
ArgumentNullException
SqlNullValueException
InvalidCastException
-
EndInit
public void EndInit() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, OutOfMemoryException, KeyNotFoundException, SynchronizationLockException, OverflowException, InvalidCastException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
OutOfMemoryException
KeyNotFoundException
SynchronizationLockException
OverflowException
InvalidCastException
RankException
ArrayTypeMismatchException
-
GetObjectData
public void GetObjectData(SerializationInfo info, StreamingContext context) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArgumentNullException, SerializationException, UnauthorizedAccessException, OutOfMemoryException
-
InferXmlSchema
public void InferXmlSchema(Stream stream, java.lang.String[] nsArray) throws java.lang.Throwable, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IOException, NotSupportedException, InvalidOperationException, ArgumentException, EventSourceException, XmlException, XmlSchemaException, FormatException, XmlSchemaInferenceException, NullReferenceException, NotImplementedException, OutOfMemoryException, TypeLoadException, OverflowException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArrayTypeMismatchException
PlatformNotSupportedException
IOException
NotSupportedException
InvalidOperationException
ArgumentException
EventSourceException
XmlException
XmlSchemaException
FormatException
XmlSchemaInferenceException
NullReferenceException
NotImplementedException
OutOfMemoryException
TypeLoadException
OverflowException
CultureNotFoundException
-
InferXmlSchema
public void InferXmlSchema(Stream dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IOException, NotSupportedException, InvalidOperationException, ArgumentException, EventSourceException, XmlException, XmlSchemaException, FormatException, XmlSchemaInferenceException, NullReferenceException, NotImplementedException, OutOfMemoryException, TypeLoadException, OverflowException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArrayTypeMismatchException
PlatformNotSupportedException
IOException
NotSupportedException
InvalidOperationException
ArgumentException
EventSourceException
XmlException
XmlSchemaException
FormatException
XmlSchemaInferenceException
NullReferenceException
NotImplementedException
OutOfMemoryException
TypeLoadException
OverflowException
CultureNotFoundException
-
InferXmlSchema
public void InferXmlSchema(TextReader reader, java.lang.String[] nsArray) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, XmlSchemaException, XmlSchemaInferenceException, NullReferenceException, NotImplementedException, OutOfMemoryException, TypeLoadException, OverflowException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
XmlSchemaException
XmlSchemaInferenceException
NullReferenceException
NotImplementedException
OutOfMemoryException
TypeLoadException
OverflowException
CultureNotFoundException
-
InferXmlSchema
public void InferXmlSchema(TextReader dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, XmlSchemaException, XmlSchemaInferenceException, NullReferenceException, NotImplementedException, OutOfMemoryException, TypeLoadException, OverflowException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
XmlSchemaException
XmlSchemaInferenceException
NullReferenceException
NotImplementedException
OutOfMemoryException
TypeLoadException
OverflowException
CultureNotFoundException
-
InferXmlSchema
public void InferXmlSchema(java.lang.String fileName, java.lang.String[] nsArray) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, InvalidOperationException, ArgumentOutOfRangeException, UnreachableException, ObjectDisposedException, EventSourceException, XmlException, XmlSchemaException, XmlSchemaInferenceException, NullReferenceException, NotImplementedException, ArrayTypeMismatchException, OutOfMemoryException, TypeLoadException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
UriFormatException
InvalidOperationException
ArgumentOutOfRangeException
UnreachableException
ObjectDisposedException
EventSourceException
XmlException
XmlSchemaException
XmlSchemaInferenceException
NullReferenceException
NotImplementedException
ArrayTypeMismatchException
OutOfMemoryException
TypeLoadException
OverflowException
-
InferXmlSchema
public void InferXmlSchema(java.lang.String dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, InvalidOperationException, ArgumentOutOfRangeException, UnreachableException, ObjectDisposedException, EventSourceException, XmlException, XmlSchemaException, XmlSchemaInferenceException, NullReferenceException, NotImplementedException, ArrayTypeMismatchException, OutOfMemoryException, TypeLoadException, OverflowException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
UriFormatException
InvalidOperationException
ArgumentOutOfRangeException
UnreachableException
ObjectDisposedException
EventSourceException
XmlException
XmlSchemaException
XmlSchemaInferenceException
NullReferenceException
NotImplementedException
ArrayTypeMismatchException
OutOfMemoryException
TypeLoadException
OverflowException
-
InferXmlSchema
public void InferXmlSchema(XmlReader reader, java.lang.String[] nsArray) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, XmlException, ArgumentNullException, XmlSchemaException, XmlSchemaInferenceException, UriFormatException, NotImplementedException, RegexMatchTimeoutException, ArrayTypeMismatchException, OutOfMemoryException, TypeLoadException, OverflowException, InvalidCastException, CultureNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
XmlException
ArgumentNullException
XmlSchemaException
XmlSchemaInferenceException
UriFormatException
NotImplementedException
RegexMatchTimeoutException
ArrayTypeMismatchException
OutOfMemoryException
TypeLoadException
OverflowException
InvalidCastException
CultureNotFoundException
-
InferXmlSchema
public void InferXmlSchema(XmlReader dupParam0, JCORefOut dupParam1) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, XmlException, ArgumentNullException, XmlSchemaException, XmlSchemaInferenceException, UriFormatException, NotImplementedException, RegexMatchTimeoutException, ArrayTypeMismatchException, OutOfMemoryException, TypeLoadException, OverflowException, InvalidCastException, CultureNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
XmlException
ArgumentNullException
XmlSchemaException
XmlSchemaInferenceException
UriFormatException
NotImplementedException
RegexMatchTimeoutException
ArrayTypeMismatchException
OutOfMemoryException
TypeLoadException
OverflowException
InvalidCastException
CultureNotFoundException
-
Load
public void Load(IDataReader reader, LoadOption loadOption, DataTable... tables) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, CultureNotFoundException, MulticastNotSupportedException, SynchronizationLockException, SqlNullValueException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
CultureNotFoundException
MulticastNotSupportedException
SynchronizationLockException
SqlNullValueException
-
Load
public void Load(IDataReader reader, LoadOption loadOption, FillErrorEventHandler errorHandler, DataTable... tables) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, ArgumentNullException, MulticastNotSupportedException, SynchronizationLockException, SqlNullValueException
-
Load
public void Load(IDataReader reader, LoadOption loadOption, java.lang.String... tables) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, IndexOutOfRangeException, FormatException, KeyNotFoundException, SynchronizationLockException, MulticastNotSupportedException, SqlNullValueException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
CultureNotFoundException
IndexOutOfRangeException
FormatException
KeyNotFoundException
SynchronizationLockException
MulticastNotSupportedException
SqlNullValueException
-
Load
public void Load(IDataReader dupParam0, LoadOption dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, IndexOutOfRangeException, FormatException, KeyNotFoundException, SynchronizationLockException, MulticastNotSupportedException, SqlNullValueException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
CultureNotFoundException
IndexOutOfRangeException
FormatException
KeyNotFoundException
SynchronizationLockException
MulticastNotSupportedException
SqlNullValueException
-
Merge
public void Merge(DataRow[] rows, boolean preserveChanges, MissingSchemaAction missingSchemaAction) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, CultureNotFoundException, SynchronizationLockException, RankException, ArrayTypeMismatchException, SqlNullValueException, MissingMethodException, TargetInvocationException, OverflowException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
CultureNotFoundException
SynchronizationLockException
RankException
ArrayTypeMismatchException
SqlNullValueException
MissingMethodException
TargetInvocationException
OverflowException
-
Merge
public void Merge(DataRow[] rows) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, SynchronizationLockException, SqlNullValueException, ArgumentNullException, MissingMethodException, TargetInvocationException, OverflowException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
SynchronizationLockException
SqlNullValueException
ArgumentNullException
MissingMethodException
TargetInvocationException
OverflowException
-
Merge
public void Merge(DataSet dataSet, boolean preserveChanges, MissingSchemaAction missingSchemaAction) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException, OverflowException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
OverflowException
-
Merge
public void Merge(DataSet dataSet, boolean preserveChanges) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, CultureNotFoundException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
CultureNotFoundException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
-
Merge
public void Merge(DataSet dataSet) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, CultureNotFoundException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
CultureNotFoundException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
-
Merge
public void Merge(DataTable table, boolean preserveChanges, MissingSchemaAction missingSchemaAction) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException, OverflowException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
OverflowException
-
Merge
public void Merge(DataTable table) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, CultureNotFoundException, SynchronizationLockException, SqlNullValueException, MissingMethodException, TargetInvocationException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
CultureNotFoundException
SynchronizationLockException
SqlNullValueException
MissingMethodException
TargetInvocationException
-
ReadXmlSchema
public void ReadXmlSchema(Stream stream) throws java.lang.Throwable, ArgumentOutOfRangeException, ArrayTypeMismatchException, PlatformNotSupportedException, IOException, NotSupportedException, InvalidOperationException, ArgumentException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, CultureNotFoundException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException, SynchronizationLockException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArrayTypeMismatchException
PlatformNotSupportedException
IOException
NotSupportedException
InvalidOperationException
ArgumentException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
CultureNotFoundException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
SynchronizationLockException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXmlSchema
public void ReadXmlSchema(TextReader reader) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, CultureNotFoundException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException, SynchronizationLockException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
CultureNotFoundException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
SynchronizationLockException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXmlSchema
public void ReadXmlSchema(java.lang.String fileName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, NotSupportedException, CultureNotFoundException, IndexOutOfRangeException, UriFormatException, InvalidOperationException, ArgumentOutOfRangeException, UnreachableException, ObjectDisposedException, EventSourceException, XmlException, FormatException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException, SynchronizationLockException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
NotSupportedException
CultureNotFoundException
IndexOutOfRangeException
UriFormatException
InvalidOperationException
ArgumentOutOfRangeException
UnreachableException
ObjectDisposedException
EventSourceException
XmlException
FormatException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
SynchronizationLockException
XmlSchemaException
XmlSchemaInferenceException
-
ReadXmlSchema
public void ReadXmlSchema(XmlReader reader) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, ObjectDisposedException, XmlException, CultureNotFoundException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException, SynchronizationLockException, XmlSchemaException, XmlSchemaInferenceException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
ObjectDisposedException
XmlException
CultureNotFoundException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
SynchronizationLockException
XmlSchemaException
XmlSchemaInferenceException
-
RejectChanges
public void RejectChanges() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, LockRecursionException, SynchronizationLockException, ArgumentNullException, SqlNullValueException, InvalidCastException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
LockRecursionException
SynchronizationLockException
ArgumentNullException
SqlNullValueException
InvalidCastException
-
Reset
public void Reset() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, ArrayTypeMismatchException, LockRecursionException, ArgumentNullException, SynchronizationLockException, RankException, IndexOutOfRangeException, SqlNullValueException, InvalidCastException, KeyNotFoundException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
EventSourceException
ArrayTypeMismatchException
LockRecursionException
ArgumentNullException
SynchronizationLockException
RankException
IndexOutOfRangeException
SqlNullValueException
InvalidCastException
KeyNotFoundException
-
WriteXml
public void WriteXml(Stream stream, XmlWriteMode mode) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, EventSourceException, FormatException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, InvalidCastException, InvalidOperationException
-
WriteXml
public void WriteXml(Stream stream) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, EventSourceException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException, InvalidOperationException, FormatException, OutOfMemoryException
-
WriteXml
public void WriteXml(TextWriter writer, XmlWriteMode mode) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, RankException, InvalidCastException
-
WriteXml
public void WriteXml(TextWriter writer) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, RankException, ArrayTypeMismatchException, OutOfMemoryException
-
WriteXml
public void WriteXml(java.lang.String fileName, XmlWriteMode mode) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, SerializationException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, OutOfMemoryException, XmlException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
SerializationException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidCastException
OutOfMemoryException
XmlException
-
WriteXml
public void WriteXml(java.lang.String fileName) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, SerializationException, RankException, InvalidCastException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
SerializationException
RankException
InvalidCastException
-
WriteXml
public void WriteXml(XmlWriter writer, XmlWriteMode mode) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, OutOfMemoryException, XmlException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidCastException
OutOfMemoryException
XmlException
-
WriteXml
public void WriteXml(XmlWriter writer) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, RankException, InvalidCastException
-
WriteXmlSchema
public void WriteXmlSchema(Stream stream) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, EventSourceException, IndexOutOfRangeException, InvalidOperationException, OutOfMemoryException, XmlException, RankException, ArrayTypeMismatchException, FormatException, CultureNotFoundException, NotSupportedException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
EventSourceException
IndexOutOfRangeException
InvalidOperationException
OutOfMemoryException
XmlException
RankException
ArrayTypeMismatchException
FormatException
CultureNotFoundException
NotSupportedException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
-
WriteXmlSchema
public void WriteXmlSchema(TextWriter writer) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, OutOfMemoryException, XmlException, RankException, ArrayTypeMismatchException, CultureNotFoundException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
OutOfMemoryException
XmlException
RankException
ArrayTypeMismatchException
CultureNotFoundException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
-
WriteXmlSchema
public void WriteXmlSchema(java.lang.String fileName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, SerializationException, ArgumentNullException, EventSourceException, PlatformNotSupportedException, IndexOutOfRangeException, InvalidOperationException, XmlException, RankException, ArrayTypeMismatchException, FormatException, CultureNotFoundException, NotSupportedException, OverflowException, SqlNullValueException, SqlTruncateException, SqlTypeException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
SerializationException
ArgumentNullException
EventSourceException
PlatformNotSupportedException
IndexOutOfRangeException
InvalidOperationException
XmlException
RankException
ArrayTypeMismatchException
FormatException
CultureNotFoundException
NotSupportedException
OverflowException
SqlNullValueException
SqlTruncateException
SqlTypeException
-
WriteXmlSchema
public void WriteXmlSchema(XmlWriter writer) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, XmlException, RankException, OutOfMemoryException, SqlTypeException, OverflowException, SqlNullValueException, SqlTruncateException, DivideByZeroException, InvalidCastException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
ArrayTypeMismatchException
InvalidOperationException
NotSupportedException
IndexOutOfRangeException
FormatException
EventSourceException
XmlException
RankException
OutOfMemoryException
SqlTypeException
OverflowException
SqlNullValueException
SqlTruncateException
DivideByZeroException
InvalidCastException
-
getCaseSensitive
public boolean getCaseSensitive() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setCaseSensitive
public void setCaseSensitive(boolean CaseSensitive) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, ArrayTypeMismatchException, InvalidOperationException, NotSupportedException, IndexOutOfRangeException, FormatException, EventSourceException, SynchronizationLockException
-
getEnforceConstraints
public boolean getEnforceConstraints() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setEnforceConstraints
public void setEnforceConstraints(boolean EnforceConstraints) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, EventSourceException, LockRecursionException, SynchronizationLockException, RankException, IndexOutOfRangeException, ArrayTypeMismatchException, InvalidCastException, SqlNullValueException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentNullException
ArgumentException
ArgumentOutOfRangeException
InvalidOperationException
NotSupportedException
FormatException
EventSourceException
LockRecursionException
SynchronizationLockException
RankException
IndexOutOfRangeException
ArrayTypeMismatchException
InvalidCastException
SqlNullValueException
-
getHasErrors
public boolean getHasErrors() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, FormatException
-
getIsInitialized
public boolean getIsInitialized() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getRelations
public DataRelationCollection getRelations() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getTables
public DataTableCollection getTables() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDefaultViewManager
public DataViewManager getDefaultViewManager() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, MulticastNotSupportedException
-
getExtendedProperties
public PropertyCollection getExtendedProperties() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
getSchemaSerializationMode
public SchemaSerializationMode getSchemaSerializationMode() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setSchemaSerializationMode
public void setSchemaSerializationMode(SchemaSerializationMode SchemaSerializationMode) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, InvalidOperationException, ObjectDisposedException
-
getRemotingFormat
public SerializationFormat getRemotingFormat() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setRemotingFormat
public void setRemotingFormat(SerializationFormat RemotingFormat) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, FormatException, ArrayTypeMismatchException
-
getLocale
public CultureInfo getLocale() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setLocale
public void setLocale(CultureInfo Locale) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, EventSourceException, SynchronizationLockException
-
getDataSetName
public java.lang.String getDataSetName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDataSetName
public void setDataSetName(java.lang.String DataSetName) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, EventSourceException
-
getNamespace
public java.lang.String getNamespace() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setNamespace
public void setNamespace(java.lang.String Namespace) throws java.lang.Throwable, PlatformNotSupportedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, FormatException, OutOfMemoryException, EventSourceException, IndexOutOfRangeException, RankException, ArrayTypeMismatchException
-
getPrefix
public java.lang.String getPrefix() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setPrefix
public void setPrefix(java.lang.String Prefix) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NullReferenceException, NotImplementedException, RegexMatchTimeoutException, ArgumentNullException, ArrayTypeMismatchException, OutOfMemoryException, InvalidOperationException, FormatException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NullReferenceException
NotImplementedException
RegexMatchTimeoutException
ArgumentNullException
ArrayTypeMismatchException
OutOfMemoryException
InvalidOperationException
FormatException
-
addMergeFailed
public void addMergeFailed(MergeFailedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeMergeFailed
public void removeMergeFailed(MergeFailedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
addInitialized
public void addInitialized(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removeInitialized
public void removeInitialized(EventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-