如何在 .dbf 中的列上使用标识?
我正在使用此代码创建一个 .dbf 文件,它工作正常(我使用 OdbcConnection )
string TblInventory = "Create Table Inventory (Id int , Date datetime, CreatedBy char(100))";
OdbcCommand cmd = new OdbcCommand(TblInventory, odbconn);
cmd.ExecuteNonQuery();
插入工作良好:
"Insert Into Inventory (Id, Date , CreatedBy ) Values(2,'2010/05/05','Gigi')";
如何使 Id 列自动增量?
I am using this code to create a .dbf file and it works fine ( i use OdbcConnection )
string TblInventory = "Create Table Inventory (Id int , Date datetime, CreatedBy char(100))";
OdbcCommand cmd = new OdbcCommand(TblInventory, odbconn);
cmd.ExecuteNonQuery();
Insert works well:
"Insert Into Inventory (Id, Date , CreatedBy ) Values(2,'2010/05/05','Gigi')";
How can i make the Id column autoincrement?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
CREATE TABLE
的AUTOINC
来启用自动递增。请查看以下链接以获取详细信息:
http ://msdn.microsoft.com/en-us/library/aa976850%28VS.71%29.aspx
http://msdn.microsoft.com/en-us/library/aa977477%28v=VS.71%29.aspx
Use
AUTOINC
ofCREATE TABLE
to enable auto-incrementing.Take a look at the following links for more information:
http://msdn.microsoft.com/en-us/library/aa976850%28VS.71%29.aspx
http://msdn.microsoft.com/en-us/library/aa977477%28v=VS.71%29.aspx
尝试使用 CREATE TABLE INVENTORY (ID autoinc, ....
Try using CREATE TABLE INVENTORY (ID autoinc, ....