非Insert update 的时候提交数据

                SQLTableInfoCollection Infos = new SQLTableInfoCollection();
                SQLTableInfo Infok 
= new SQLTableInfo("*","ID","temp",this);
                DataRow row 
= Infok.InsertData(DbConnection);
                Infok.SetCommands(AdapterCommand.Insert,DbConnection);
                Infos.Add(Infok);
                row[
0]=1234;
                row[
1]="aaaaa";                
                Infos.Update(
this);
原文地址:https://www.cnblogs.com/chinatefl/p/397093.html