在我的MSAccess数据库中,我有这个文本框“ProductName”,用户输入一个值并按下按钮将值插入“Product”表的底部。我要添加的列是“Product_ID”,我的sql语句是
CurrentDb.Execute "INSERT INTO Tables!Product (Product_ID) VALUES ('" & Me.ProductName.Value & "')"
我发现这破坏了我的代码,我一直试图修复它,但似乎无法弄清楚
我也试过这个
DoCmd.RunSQL "INSERT INTO Tables!Product (Product_ID) VALUES ('" & Me.ProductName.Value & "')"