/// <summary> /// ���캯�� /// </summary> public STreeBB() { this.selfConn = true; this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString); this.connection.Open(); this.treeDB = new STreeDB(this.connection); }
/// <summary> /// ���캯�� /// </summary> /// <param name="connection">��������</param> public STreeBB(SqlConnection connection) { this.connection = connection; this.treeDB = new STreeDB(connection); }
protected virtual void Dispose(bool disposing) { if (!disposing) return; if (this.selfConn) { this.connection.Close(); this.connection.Dispose(); this.connection = null; } if (this.treeDB != null) { this.treeDB.Dispose(); this.treeDB = null; } }