Beispiel #1
0
 public string makeWhereQuery(string filedName, string filedComment)
 {
     MakeCommonQuery comm = new MakeCommonQuery(string.Empty, nMaxColEngLength, nMaxColKorLength);
     return comm.makeQuery(filedName, filedComment, SqlOperationType.Where, checkedComment);
 }
Beispiel #2
0
        private string makeQuery(string filedName, string filedComment, SqlOperationType sqlOperationType)
        {
            MakeCommonQuery comm = new MakeCommonQuery(strTableAlias, nMaxColEngLength, nMaxColKorLength);

            return(comm.makeQuery(filedName, filedComment, sqlOperationType, checkedComment));
        }
Beispiel #3
0
        public string makeQuery(string strColEng, string strColKor)
        {
            MakeCommonQuery comm = new MakeCommonQuery(string.Empty, nMaxColEngLength, nMaxColKorLength);

            return(comm.makeQuery(strColEng, strColKor, SqlOperationType.Where, checkedComment));
        }
Beispiel #4
0
 private string makeQuery(string filedName, string filedComment, SqlOperationType sqlOperationType)
 {
     MakeCommonQuery comm = new MakeCommonQuery(strTableAlias, nMaxColEngLength, nMaxColKorLength);
     return comm.makeQuery(filedName, filedComment, sqlOperationType, checkedComment);
 }