Ejemplo n.º 1
0
        public static DataTable GetHis_IP(string ip = "")
        {
            string sql = string.Format(@"SELECT * FROM IP_Save t {0}where ip ='{1}' ", ip == "" ? "--" : "", ip);

            DataTable dt = DbhelperSQLite.dtQuery(sql);

            return(dt);
        }
Ejemplo n.º 2
0
        public static void InsertIP(string IP, string subnet, string gateway, string dns)
        {
            string sql = string.Format(@"INSERT INTO IP_Save (
	IP,
	subnet,
	gateway,
	dns
)
VALUES
	('{0}', '{1}', '{2}','{3}')"    , IP, subnet, gateway, dns);

            DbhelperSQLite.ExecuteSql(sql);
        }
Ejemplo n.º 3
0
        public static void DeletIP(string ID)
        {
            string sql = string.Format(@"DELETE from IP_Save where id='{0}'", ID);

            DbhelperSQLite.ExecuteSql(sql);
        }