Exemplo n.º 1
0
 /// <summary>
 /// 构造函数
 /// </summary>
 public LForumQuestionBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.forumQuestionDB = new LForumQuestionDB(this.connection);
 }
Exemplo n.º 2
0
 /// <summary>
 /// 构造函数
 /// </summary>
 /// <param name="connection">数据连接</param>
 public LForumQuestionBB(SqlConnection connection)
 {
     this.connection = connection;
     this.forumQuestionDB = new LForumQuestionDB(connection);
 }
Exemplo n.º 3
0
        protected virtual void Dispose(bool disposing)
        {
            if (!disposing)
                return;

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