我想找到解决发票编号自动化问题的方法。 我有3个用户通过LAN连接。现在每个人都可以同时保存。 但这个数字必须按优先级递增。
我也已经做过,但不满意....因此我需要更好的建议...
混淆是我用来像下面那样保存...
var InvoiceVar1 = InvoiceDAp.InsertCommand.Parameters; InvoiceVar1.Add("@invoice_no", SqlDbType.VarChar, 10,"invoice_no"); var InvoiceVar2 = InvoiceDAp.UpdateCommand.Parameters; InvoiceVar2.Add("@invoice_no", SqlDbType.VarChar, 10,"invoice_no");
那么将invoice_no增加1的最大值(invoice_no)......?
谢谢