Home > Database > Mysql Tutorial > body text

配置数据库连接字符串ConnectionString

WBOY
Release: 2016-06-07 15:35:21
Original
1806 people have browsed it

项目需要做一个方便配置出ConnectionString的工具,但是由于数据源的不同导致配置的属性也会有不同,本来小小的一个工具看很难有切入点。 在网上惊现有人发现可以使用微软的连接字符串配置对话框。方便快捷...但是数据源就是固定那几个,这是缺点。 引用Dll

项目需要做一个方便配置出ConnectionString的工具,但是由于数据源的不同导致配置的属性也会有不同,本来小小的一个工具眼看很难有切入点。

在网上惊现有人发现可以使用微软的连接字符串配置对话框。方便快捷...但是数据源就是固定那几个,这是缺点。


引用Dll位置:C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE\Microsoft.Data.ConnectionUI.Dialog.dll

命名空间:Microsoft.Data.ConnectionUI


使用:

DataConnectionDialog dialog = new DataConnectionDialog();
dialog.DataSources.Add(DataSource.SqlDataSource);
dialog.SelectedDataProvider = DataProvider.SqlDataProvider;
dialog.StartPosition = FormStartPosition.CenterScreen;
dialog.Title = title;
if (DataConnectionDialog.Show(dialog, this) == DialogResult.OK)
{
    MessageBox.Show(dialog.ConnectionString);
}
Copy after login


原文连接:......忘了保存,so sorry~~

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template