This documentation is archived and is not being maintained.

SqlMetaData Constructor (String, SqlDbType, String, String, String)

Initializes a new instance of the SqlMetaData class with the specified column name, type, database name, owning schema, and object name.

Namespace:  Microsoft.SqlServer.Server
Assembly:  System.Data (in System.Data.dll)

public:
SqlMetaData(
	String^ name, 
	SqlDbType dbType, 
	String^ database, 
	String^ owningSchema, 
	String^ objectName
)

Parameters

name
Type: System::String
The name of the column.
dbType
Type: System.Data::SqlDbType
The SQL Server type of the parameter or column.
database
Type: System::String
The database name of the XML schema collection of a typed XML instance.
owningSchema
Type: System::String
The relational schema name of the XML schema collection of a typed XML instance.
objectName
Type: System::String
The name of the XML schema collection of a typed XML instance.

ExceptionCondition
ArgumentNullException

The Name is nullptr, or objectName is nullptr when database and owningSchema are non-nullptr.

ArgumentException

A SqlDbType that is not allowed was passed to the constructor as dbType.

Only the following SqlDbType is allowed to be passed to the constructor as dbType: Xml.

The following are the default values assigned to dbType, depending on the SqlDbType:

SqlDbType

Maximum length

Precision

Scale

Locale

Compare options

Xml

Max (-1)

0

0

0

IgnoreCase, IgnoreKanaType, IgnoreWidth

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: