设置SQL Server数据库连接的目录(连接字符串)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置SQL Server数据库连接的目录(连接字符串)相关的知识,希望对你有一定的参考价值。

This snippet is actually tested for SQL Server Compact Edition (CE) 3.5, but it will probably work for other SQL Server editions. Once you have an SQL CE db up and running, you can set the connection string to point to any directory and database by simply using the |DataDirectory| string in the dbConnectionString Property (created by default when you create the database connection) and then relocating the location to which |DataDirectory| points by calling AppDomain.CurrentDomain.SetData("DataDirectory", @"C:PathToDB"). Since the dbConnectionString property appends dbName.sdf, we leave that part off of the SetData argument.

The code below sets the data directory to the common application data folder (usually C:Documents and SettingsAll UsersApplication Data on winXP). It seems to work fine when invoked in the Form_Load method.
  1. Form_Load(object sender, EventArgs e)
  2. {
  3. // Set the db directory to the common app data folder
  4. AppDomain.CurrentDomain.SetData("DataDirectory", System.Environment.GetFolderPath(System.Environment.SpecialFolder.CommonApplicationData));
  5. }

以上是关于设置SQL Server数据库连接的目录(连接字符串)的主要内容,如果未能解决你的问题,请参考以下文章

指定连接字符串的 SQL Server Compact 4.0 代码优先

如何获取SQL server数据库的连接字符串

如何从 SSIS 包中检索 SQL Server 实例名称

如何设置 SQL Server 连接字符串?

请问怎样设置SQL Server 2000,使其能支持远程连接?

SQL Server 连接字符串问题