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.