创建、更改和删除默认值
在 SQL Server 管理对象 (SMO) 中,默认约束由 Default 对象表示。
Default 对象的 TextBody 属性用于设置要插入的值。此值可以是常量,也可以是返回常量值的 Transact-SQL 语句,例如 GETDATE()。不能通过使用 Alter 方法修改 TextBody 属性。相反,必须删除并重新创建 Default 对象。
示例
若要使用所提供的任何代码示例,您必须选择创建应用程序所需的编程环境、编程模板和编程语言。有关详细信息,请参阅如何在 Visual Studio .NET 中创建 Visual Basic SMO 项目或如何在 Visual Studio .NET 中创建 Visual C# SMO 项目。
在 Visual Basic 中创建、更改和删除默认值
此代码示例演示如何创建一个简单文本形式的默认值和另一个 Transact-SQL 语句形式的默认值。必须使用 BindToColumn 方法将默认值附加到列,然后使用 UnbindFromColumn 方法将其分离。
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference the AdventureWorks database.
Dim db As Database
db = srv.Databases("AdventureWorks")
'Define a Default object variable by supplying the parent database and the default name
'in the constructor.
Dim def As [Default]
def = New [Default](db, "Test_Default2")
'Set the TextHeader and TextBody properties that define the default.
def.TextHeader = "CREATE DEFAULT [Test_Default2] AS"
def.TextBody = "GetDate()"
'Create the default on the instance of SQL Server.
def.Create()
'Declare a Column object variable and reference a column in the AdventureWorks database.
Dim col As Column
col = db.Tables("SpecialOffer", "Sales").Columns("StartDate")
'Bind the default to the column.
def.BindToColumn("SpecialOffer", "StartDate", "Sales")
'Unbind the default from the column and remove it from the database.
def.UnbindFromColumn("SpecialOffer", "StartDate", "Sales")
def.Drop()
在 Visual C# 中创建、更改和删除默认值
此代码示例演示如何创建一个简单文本形式的默认值和另一个 Transact-SQL 语句形式的默认值。必须使用 BindToColumn 方法将默认值附加到列,然后使用 UnbindFromColumn 方法将其分离。
{
//Connect to the local, default instance of SQL Server.
{
Server srv = default(Server);
srv = new Server();
//Reference the AdventureWorks database.
Database db = default(Database);
db = srv.Databases("AdventureWorks");
//Define a Default object variable by supplying the parent database and the default name
//in the constructor.
Default def = default(Default);
def = new Default(db, "Test_Default2");
//Set the TextHeader and TextBody properties that define the default.
def.TextHeader = "CREATE DEFAULT [Test_Default2] AS";
def.TextBody = "GetDate()";
//Create the default on the instance of SQL Server.
def.Create();
//Declare a Column object variable and reference a column in the AdventureWorks database.
Column col = default(Column);
col = db.Tables("SpecialOffer", "Sales").Columns("StartDate");
//Bind the default to the column.
def.BindToColumn("SpecialOffer", "StartDate", "Sales");
//Unbind the default from the column and remove it from the database.
def.UnbindFromColumn("SpecialOffer", "StartDate", "Sales");
def.Drop();
}