当我想在 C# 中使用 OleDB 将 usergridview 中的内容添加到 access 数据库时,我有以下代码:
da.InsertCommand = new OleDbCommand("INSERT INTO [some] ([some1], [some2]) VALUES (?,?)");
da.InsertCommand.Parameters.Add("@some1", OleDbType.VarChar, 60, "some1");
da.InsertCommand.Parameters.Add("@some2", OleDbType.VarChar, 60, "some2");
据我了解some1
,some2
我们末尾的和InsertCommands
是我的usergridview
. 现在我想要实现的是在将内容插入数据库之前对其进行编辑。所以我的实际问题是我怎样才能得到“ some1
”之外的InsertCommand
把它放到一个函数中(例如 my_function(some1)
应该是参数内容)。