Пример #1
0
        public SqlQuery()
        {
            this.columnsMember            = new string[] { "ROWNUM", "ID", "PASSWORD", "NAME", "PHONE", "EMAIL", "POSITION", "RegistrationDate" };
            this.columnsMemberInformation = new string[] { "ROWNUM", "ID", "RegistrationDate", "POINT", "WRITING", "ACTIVITY", "MEMBERID", };
            this.table = new string[] { "MEMBER", "MEMBERInformation" };

            this.tempFunc = new TempFunc();
        }
Пример #2
0
 public Crud(string connectionString)
 {
     //this.sqlConn = new SqlConnection(connectionString);
     this.mySqlConn = new MySqlConnection(connectionString);
     this.tempFunc  = new TempFunc();
 }