gpt4 book ai didi

sql - Delphi 中 TADOStoredProc.ProcedureName 值中的 "*;1"是什么?

转载 作者:行者123 更新时间:2023-12-03 14:43:38 35 4
gpt4 key购买 nike

您可以在 Delphi 中使用以下值指定 TADOStoredProc.ProcedureName:

MSSQLProcedureName;1

但是这个值中的“;1”意味着什么?

感谢您的帮助!

最佳答案

这是一个可选值,可用于为同一存储过程名称指定多个定义...我认为最初的目的是允许版本控制,但我从未见过它在野外以这种方式使用。

当您未在 create procedure 语句中指定数字时,它默认为 1。某些调用 SQL Server 的数据访问层在执行存储过程时会显式添加 ;1

From MSDN :

;*number*

Is an optional integer used to group procedures of the same name so they can be dropped together with a single DROP PROCEDURE statement. For example, the procedures used with an application called orders may be named orderproc;1, orderproc;2, and so on. The statement DROP PROCEDURE orderproc drops the entire group. If the name contains delimited identifiers, the number should not be included as part of the identifier; use the appropriate delimiter around procedure_name only.

关于sql - Delphi 中 TADOStoredProc.ProcedureName 值中的 "*;1"是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8420386/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com