Metoda Table.CheckIdentityValue
Weryfikuje integralność wszystkie kolumny tożsamości w tabela, do której następuje odwołanie.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
Public Function CheckIdentityValue As StringCollection
'Użycie
Dim instance As Table
Dim returnValue As StringCollection
returnValue = instance.CheckIdentityValue()
public StringCollection CheckIdentityValue()
public:
StringCollection^ CheckIdentityValue()
member CheckIdentityValue : unit -> StringCollection
public function CheckIdentityValue() : StringCollection
Wartość zwracana
Typ: System.Collections.Specialized.StringCollection
A StringCollection wartość obiektu systemu zawiera bieżącą wartość tożsamości i bieżącą wartość kolumna.
Uwagi
Ta metoda jest funkcjonalnie równoważne Transact-SQL Sprawdź IDENT instrukcja.Jeśli metoda ta jest wywoływana w tabela nie zawiera kolumn identyfikator, zostanie zgłoszony błąd.
Przykłady
Poniższy przykład kodu ilustruje sprawdzanie i wyświetlanie wartości tożsamości tabela.
C#
Server srv = new Server("(local)");
Database db = srv.Databases["AdventureWorks2008R2"];
Table tb = new Table(db, "Test Table");
Column col1 = new Column(tb, "TableIdentifier", DataType.Int);
col1.Identity = true;
tb.Columns.Add(col1);
foreach (String s in tb.CheckIdentityValue())
{
Console.WriteLine(s);
}
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
$db = New-Object Microsoft.SqlServer.Management.Smo.Database
$db = $srv.Databases.Item("AdventureWorks2008R2")
$tb = new-object Microsoft.SqlServer.Management.Smo.Table($db, "Test Table")
$col1 = new-object Microsoft.SqlServer.Management.Smo.Column($tb, "TableIdentifier", [Microsoft.SqlServer.Management.Smo.DataType]::Int)
$col1.Identity = $TRUE
$tb.Columns.Add($col1)
Write-Host $tb.CheckIdentityValue()
Zobacz także