Example #1
0
        public bool CheckTable()
        {
            string sql = string.Format("SELECT COUNT(*) FROM sqlite_master where type='table' and name='Student_Update'");
            int    oj  = int.Parse(sconn.SQLExecuteScalar(sql).ToString());

            return(oj > 0 ? true : false);
        }