Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ FillMappingInternal()

SchemaMapping System.Data.Common.DataAdapter.FillMappingInternal ( DataSet dataset,
DataTable datatable,
string srcTable,
DataReaderContainer dataReader,
int schemaCount,
DataColumn parentChapterColumn,
object parentChapterValue )
inlineprivateinherited

Definition at line 629 of file DataAdapter.cs.

630 {
631 bool keyInfo = MissingSchemaAction.AddWithKey == MissingSchemaAction;
632 string sourceTableName = null;
633 if (dataset != null)
634 {
635 sourceTableName = GetSourceTableName(srcTable, schemaCount);
636 }
637 return new SchemaMapping(this, dataset, datatable, dataReader, keyInfo, SchemaType.Mapped, sourceTableName, gettingData: true, parentChapterColumn, parentChapterValue);
638 }
MissingSchemaAction MissingSchemaAction
static string GetSourceTableName(string srcTable, int index)

References System.Data.Common.DataAdapter.GetSourceTableName(), and System.Data.Common.DataAdapter.MissingSchemaAction.

Referenced by System.Data.Common.DataAdapter.FillMapping().