我正在尝试在C#中运行此Microsoft Access查询,但它不起作用:
Create table Users (UserName Text(50) Primary Key, Password Text(50), IsLocked YESNO)
我收到Syntax error in field definition
错误。
如何在C#中编写Microsoft Access SQL查询?
答案 0 :(得分:2)
试试这个:
Create Table [Users] ([UserName] Text(50) Primary Key, [Password] Text(50), [IsLocked] YESNO)