Creates the tables and columns in the specified DataSet using an XML schema.
[Visual Basic]
Overloads Public Function FillSchema( _
ByVal ds As DataSet, _
ByVal schema As String, _
ByVal validateRowInserts As Boolean _
) As DataTable()
the newly-defined tables of the DataSet
The implementation status of this message is only experimental! See also the the user documentation.
DataSets do not maintain the ordering of the corresponding XML elements when new rows are inserted, or new column values are inserted in existing rows. Specifying 'true' for the validateRowInserts parameter requests the TaminoDataAdapter object to check the ordering and, if possible, correct it.
An application should only specify 'true' for the validateRowInserts parameter if it needs to insert rows and column values directly via the DataSet object. The parameter should be set to 'false' if only updating and deleting rows and column values is done via the DataSet object but inserts are done via the synchronized XmlDataDocument.
This initial experimental implementation only corrects the ordering of child elements for parents which are global element in the sense of the XML Schema recommendation.
TaminoDataAdapter Class | TaminoDataAdapter Members | SoftwareAG.Tamino.Api.DataAdapter Namespace | TaminoDataAdapter.FillSchema Overload List