当月的唯一文档编号
我需要创建格式为:
CONSTANT_STRING/%d/mm/yyyy
mm - 月份(两位数)的 发票号码 yyyy - 年
现在,%d 是特定月份的发票编号。换句话说,这个数字每个月都会重置。
现在我正在数据库中检查当月的最高数字是多少。然后在其增量之后我保存该行。
我需要整个数字是唯一的。然而,有时会发生重复的情况(两个用户同时保存)。
有什么建议吗?
I need to create an invoice number in format:
CONSTANT_STRING/%d/mm/yyyy
mm - Month (two digits)
yyyy - Year
Now, the %d is the number of the invoice in the specific month. Another words, this number is reseted every month.
Now I am checking in database what is the highest number in current month. Then after its incrementation I am saving the row.
I need the whole number to be unique. However, it sometimes happens that it is being duplicated (two users save in the same time).
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在字段上放置唯一索引,并在尝试保存第二个实例时捕获数据库错误。另外,将获取值推迟到最后一刻。
Put a unique index on the field and catch the database error when trying to save the second instance. Also, defer getting the value until the last possible moment.
一种解决方案是 SELECT ... FOR UPDATE ,它会阻塞该行直到您更新它,但可能会导致串行多任务应用程序出现死锁。
最好的方法是获取数字并在事务中递增它,然后开始工作。
这样,该行就不会被长时间锁定。
查看
BEGIN WORK
和COMMIT
。One solution is
SELECT ... FOR UPDATE
, which blocks the row until you update it, but can cause deadlocks with a serios multitasking application.The best way is to fetch the number and increment it in a transaction and then start the work.
This way, the row is not locked for long.
Look into
BEGIN WORK
andCOMMIT
.使用发票表的主键(最好是
INT
)或为每张发票分配一个唯一的编号,例如通过uniqid
。附言。如果您使用
uniqid
,您可以通过将more_entropy
参数设置为true
来增加唯一性。Use the primary key (preferably an
INT
) of the invoice table or assign a unique number to each invoice, e.g. viauniqid
.PS. If you are using
uniqid
, you can increase the uniqueness by settingmore_entropy
parameter totrue
.在一个查询中设置所有 id。
set the id all in one query.