C#windows应用程序(制作窗体)事务处理中,这句console.write起到什么作用?
这是C#windows应用程序(制作窗体)事务处理中的一段代码: 整体意思是要将数据集中新添加的一行插入到数据库的students表里。
string str;
OleDbCommand commnd;
OleDbTransaction trans = oleconn.BeginTransaction();
……;
//drStudent是新添加的DataRow实例;
str = "Insert into students (studentId,Name,Class) values ('"+drStudent["studentId"]+"','"+drStudent["Name"]+"','"+drStuent[Class]+"');
Console.WriteLine (str);//就是这句,这里起到什么作用?
commnd.CommandText = str;
难道在窗体里还要输出SQL语句么?
请指教,谢谢!!!
[此贴子已经被作者于2007-5-20 9:28:06编辑过]