共用方式為


GetObjectByName Method

未來的 Microsoft SQL Server 版本將移除這項功能。請避免在新的開發工作中使用這項功能,並規劃修改目前使用這項功能的應用程式。

The GetObjectByName method returns a DBObject object that references the specified Microsoft SQL Server database object.

語法

object.GetObjectByName(Name, [ ObjectType ] , [ Owner ] )asDBObject

Parts

  • object
    Expression that evaluates to an object in the Applies To list.

  • Name
    Specifies a SQL Server database object by name.

  • ObjectType
    Optional. Long integer that specifies object type. When specified, it directs method searching, optimizing the search. Set ObjectType using SQLDMO_OBJECT_TYPE.

  • Owner
    Optional. String that identifies an existing database user by name. When specified, it constrains searching to objects owned by the user.

Prototype (C/C++)

HRESULT GetObjectByName(
SQLDMO_LPCSTR szName,
LPSQLDMODBOBJECT* ppDBObject,
SQLDMO_OBJECT_TYPE lType = SQLDMOObj_AllDatabaseObjects,
SQLDMO_LPCSTR szOwner CPPDEFAULT(= NULL));

Returns

A DBObject object.

Applies To: