ID号码生成
我正在尝试在 NetBeans IDE 6.5 中为我的系统编写代码,以自动为我生成 ID 号,就像 Ms Access 中的自动编号一样。 有人对此有任何想法吗?我的意思是代码。
i am trying to code for my system in NetBeans IDE 6.5 to auto generate ID numbers for me like autonumbers in Ms Access. does any one have any ideas about going about that?i mean code for it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您使用什么数据库系统? 如果它是基于 SQL 的:
尝试使用 auto_increment ,例如上面的示例。
What database system are you using? If it's something SQL based:
Try using auto_increment , such as in the example above.
如果您使用 JavaDB,则需要
选项。CREATE TABLE
语句中字段上的 GENERATED AS IDENTITYIf you're using JavaDB you need the
GENERATED AS IDENTITY
option on a field in yourCREATE TABLE
statement.在 Windows API 中,您可以创建一个 Guid。 我确信 Netbeans 有一些类似的 UID API。
In the Windows API you can create a Guid. I'm sure there is some similar UID API for Netbeans.
如果您使用 Oracle,则每个表都需要一个序列。
一旦你有了序列,你就可以创建一个像这样的触发器:
If you're using Oracle, you will need a sequence for each table.
once you have the sequence you can create a trigger like this: