Esempio n. 1
0
        public SingleStat(string Tablename,string Dictid,string Conditon)
        {
            //
            // TODO: �ڴ˴���ӹ��캯���߼�
            //
            m_Tablename=Tablename;
            m_Dictid=Dictid;

            m_Condition=Conditon;
            if (m_Condition == "")
            {
                m_Condition = "1=1";
            }
            dataUnit = new DM();
        }
Esempio n. 2
0
        public SequenceConst(string strUser)
        {
            userId = strUser;

            strsqlconst = " select EF01.ZA0100 AS CONSTCODE,EF01.EF01ID AS CONSTID," +
                "EF01.ZA0101 AS CONSTNAME,EB01.ZA0100 AS VALUSECODE,EB01.EB01ID AS VALUEID," +
                "EB01.ZA0101 AS USERID,EB01.ZB0102 AS VALUENAME " +
                " from EF01 left join EB01 on EF01.ZA0100 = EB01.EB0111 " +
                " AND EB01.ZA0101 = '" + userId + "' ";

            dataUnit = new DM();
            getsql = new GetSql();
            //
            // TODO: �ڴ˴���ӹ��캯���߼�
            //
        }
Esempio n. 3
0
 public GetSql(string[] s)
 {
     dataUnit = new DM(s);
     tableno  = null;
     strno    = null;
 }
Esempio n. 4
0
 public GetSql(string[] s)
 {
     dataUnit = new DM(s);
     tableno = null;
     strno = null;
 }
Esempio n. 5
0
 public GetSql()
 {
     dataUnit = new DM();
     tableno = null;
     strno = null;
 }