public void Insert(SqlObject record) { string select = new Statement().Insert(record).Scope(record.FormatNames()).Values(record.FormatValues()) + ";"; RunNonQuery(select); }
public void Insert(SqlObject tableModel, SqlObject records) { string select = new Statement().Insert(tableModel).Scope(tableModel.FormatNames()).Values(records.FormatValues()) + ";"; RunNonQuery(select); }