Version

Schema Property

Returns the schema of the table.
Syntax
'Declaration
 
Public ReadOnly Property Schema As String
public string Schema {get;}
Remarks

The table schema is used to qualify table names. For example, given a table whose schema is 'Foo' and whose name is 'Bar', a SELECT statement would appear as follows:

SELECT * FROM Foo.Bar;

The QualifiedName property returns the concatenation of the Schema and Name properties in cases where the Schema property is non-empty, and returns the same value as the Name property otherwise.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also