Ejemplo n.º 1
0
 /// <summary>
 /// ���캯��
 /// </summary>
 public SErrorDiaryBB()
 {
     this.selfConn = true;
     this.connection = new SqlConnection(HS.Config.SqlDataObject.GetSqlConnectionString);
     this.connection.Open();
     this.errorDiaryDB = new SErrorDiaryDB(this.connection);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// ���캯��
 /// </summary>
 /// <param name="connection">��������</param>
 public SErrorDiaryBB(SqlConnection connection)
 {
     this.connection = connection;
     this.errorDiaryDB = new SErrorDiaryDB(connection);
 }
Ejemplo 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.errorDiaryDB != null)
            {
                this.errorDiaryDB.Dispose();
                this.errorDiaryDB = null;
            }
        }