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

◆ CloneFrom()

void System.Data.Common.DbDataAdapter.CloneFrom ( DbDataAdapter from)
inlineprivate

Definition at line 229 of file DbDataAdapter.cs.

230 {
231 IDbDataAdapter iDbDataAdapter = from._IDbDataAdapter;
232 _IDbDataAdapter.SelectCommand = CloneCommand(iDbDataAdapter.SelectCommand);
233 _IDbDataAdapter.InsertCommand = CloneCommand(iDbDataAdapter.InsertCommand);
234 _IDbDataAdapter.UpdateCommand = CloneCommand(iDbDataAdapter.UpdateCommand);
235 _IDbDataAdapter.DeleteCommand = CloneCommand(iDbDataAdapter.DeleteCommand);
236 }
IDbCommand CloneCommand(IDbCommand command)

References System.Data.Common.DbDataAdapter.CloneCommand().

Referenced by System.Data.Common.DbDataAdapter.DbDataAdapter().