Example #1
0
        public void Save(MySqlConnection conn, JObject jToken)
        {
            string contract = SpiderHelper.getString(jToken["assetid"].ToString());

            Dictionary <string, string> where = new Dictionary <string, string>();
            where.Add("assetid", contract);
            bool exist = MysqlConn.CheckExist(DataTableName, where);

            if (!exist)
            {
                Start(conn, contract);
            }
        }