gpt4 book ai didi

c# - 在 C# 中创建(按需)SQL Server 2008 Express 数据库的最佳实践?

转载 作者:太空狗 更新时间:2023-10-29 22:05:57 24 4
gpt4 key购买 nike

目的是在全新的 SQL Server 2008 Express 数据库中处理用户数据(您可以将它们称为项目、文档、文件或其他任何名称)。数据占用的空间预计比 Express 版本(也可以免费分发)提供的 4GB 空间少得多。

例如,每次用户选择"file"->“新建”命令时,都会在指定位置创建一个新的空数据库。另一方面,类似的命令 File->Open 必须提供支持来检索数据库列表以选择一个打开。

因此,必须解决以下问题:a) 应用程序必须能够创建连接字符串并通过代码 (C#) 将数据库附加到 SQL Server 2008 Expressb) 应用程序必须能够(再次通过代码)检索包含所有可用数据库的列表,让用户有机会选择一个打开。

我认为在资源中有一个模板数据库并将其复制到用户指定的位置会很有帮助。

您认为这是一个可行的解决方案吗?你有什么建议吗?

最佳答案

使用 SQL Server 管理对象 (SMO) 可以做很多事情:

// Add a reference to Microsoft.SqlServer.Smo
// Add a reference to Microsoft.SqlServer.ConnectionInfo
// Add a reference to Microsoft.SqlServer.SqlEnum

using Microsoft.SqlServer.Management.Smo;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Data;

public class SqlServerController
{

private Server m_server = null;

public SqlServerController(string server)
{
m_server = new Server(server);
}

public void AttachDatabase(string database, StringCollection files,
AttachOptions options)
{
m_server.AttachDatabase(database, files, options);
}

public void AddBackupDevice(string name)
{
BackupDevice device = new BackupDevice(m_server, name);
m_server.BackupDevices.Add(device);
}

public string GetServerVersion(string serverName)
{
return m_server.PingSqlServerVersion(serverName).ToString();
}

public int CountActiveConnections(string database)
{
return m_server.GetActiveDBConnectionCount(database);
}

public void DeleteDatabase(string database)
{
m_server.KillDatabase(database);
}

public void DetachDatabase(string database, bool updateStatistics,
bool removeFullTextIndex)
{
m_server.DetachDatabase(database, updateStatistics, removeFullTextIndex);
}

public void CreateDatabase(string database)
{
Database db = new Database(m_server, database);
db.Create();
}

public void CreateTable(string database, string table,
List<Column> columnList, List<Index> indexList)
{
Database db = m_server.Databases[database];
Table newTable = new Table(db, table);

foreach (Column column in columnList)
newTable.Columns.Add(column);

if (indexList != null)
{
foreach (Index index in indexList)
newTable.Indexes.Add(index);
}

newTable.Create();

}

public Column CreateColumn(string name, DataType type, string @default,
bool isIdentity, bool nullable)
{
Column column = new Column();

column.DataType = type;
column.Default = @default;
column.Identity = isIdentity;
column.Nullable = nullable;

return column;
}

public Index CreateIndex(string name, bool isClustered, IndexKeyType type,
string[] columnNameList)
{

Index index = new Index();

index.Name = name;
index.IndexKeyType = type;
index.IsClustered = isClustered;

foreach (string columnName in columnNameList)
index.IndexedColumns.Add(new IndexedColumn(index, columnName));

return index;
}

}

关于c# - 在 C# 中创建(按需)SQL Server 2008 Express 数据库的最佳实践?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2348839/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com