Type Property (StoredProcedure)
未來的 Microsoft SQL Server 版本將移除這項功能。請避免在新的開發工作中使用這項功能,並規劃修改目前使用這項功能的應用程式。
The Type property exposes configured attributes of the referenced Microsoft SQL Server component.
語法
object.Type [= value]
Parts
object
An expression that evaluates to an object in the Applies To list.value
A long integer that controls interpretation of SQL Server stored procedure text as described in Settings.
Data Type
Long, enumerated
Modifiable
Read/write
Prototype (C/C++)
HRESULT GetType(SQLDMO_PROCEDURE_TYPE* pRetVal)
HRESULT SetType(SQLDMO_PROCEDURE_TYPE NewValue)
Settings
Constant |
Value |
Description |
---|---|---|
SQLDMOProc_Extended |
2 |
The StoredProcedure object references an extended stored procedure. |
SQLDMOProc_Macro |
3 |
Reserved for future use. |
SQLDMOProc_ReplicationFilter |
4 |
Reserved for future use. |
SQLDMOProc_Standard |
1 |
Default. The StoredProcedure object references a SQL Server stored procedure. |
SQLDMOProc_Unknown |
0 |
The value is not valid. |
備註
When the StoredProcedure object is used to create a SQL Server stored procedure, setting the Name, Type, and Text properties defines the stored procedure. By default, the text of a stored procedure is interpreted as a Transact-SQL script. If the stored procedure is an entry point for an extended stored procedure, the text of the procedure specifies an executable-image library by name.