You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
563 B
C#
25 lines
563 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ComponentModel;
|
|
|
|
namespace Mesnac.Basic
|
|
{
|
|
public class DataBaseInfo
|
|
{
|
|
private String connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=iscada.mdb";
|
|
[Description("数据库的连接串"), Category("数据库连接串")]
|
|
public string ConnectionString
|
|
{
|
|
get
|
|
{
|
|
return connectionString;
|
|
}
|
|
set
|
|
{
|
|
connectionString = value;
|
|
}
|
|
}
|
|
}
|
|
}
|