コード例 #1
0
ファイル: LTagBB.cs プロジェクト: wanghouxian2015/GMWJGit
 /// <summary>
 /// 构造函数
 /// </summary>
 public LTagBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.tagDB = new LTagDB(this.connection);
 }
コード例 #2
0
ファイル: LTagBB.cs プロジェクト: wanghouxian2015/GMWJGit
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="connection">数据连接</param>
 public LTagBB(SqlConnection connection)
 {
     this.connection = connection;
     this.tagDB = new LTagDB(connection);
 }
コード例 #3
0
ファイル: LTagBB.cs プロジェクト: wanghouxian2015/GMWJGit
        protected virtual void Dispose(bool disposing)
        {
            if (!disposing)
                return;

            if (this.selfConn)
            {
                this.connection.Close();
                this.connection.Dispose();
                this.connection = null;
            }
            if (this.tagDB != null)
            {
                this.tagDB.Dispose();
                this.tagDB = null;
            }
        }