From 0175fd27d253ad54b700be3968a11919436d7d81 Mon Sep 17 00:00:00 2001 From: huangsimin Date: Tue, 18 Dec 2018 16:02:23 +0800 Subject: [PATCH] fix sql the table select error --- logdb.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logdb.go b/logdb.go index 6cc29eb..6ac9041 100644 --- a/logdb.go +++ b/logdb.go @@ -93,7 +93,7 @@ func (logdb *LogDB) Connect() { // ADInsert 插入数据 func (logdb *LogDB) ADInsert(uid, device, platform, area_cc, section_id, response string, spider_id, channel, media, catch_account_id, status, priority int, ts_crawl time.Time) { - _, err := logdb.driver.Exec("insert into "+logdb.DB+"(uid, spider_id, device, platform, channel, media, area_cc, catch_account_id, section_id, response, status, priority, ts_crawl) value(?, ?, ?, ?, ?, ?, ?, ?, ?, ? , ? ,? ,? ,?)", uid, spider_id, device, platform, channel, media, area_cc, catch_account_id, section_id, response, status, priority, ts_crawl) + _, err := logdb.driver.Exec("insert into log_spider (uid, spider_id, device, platform, channel, media, area_cc, catch_account_id, section_id, response, status, priority, ts_crawl) value(?, ?, ?, ?, ?, ?, ?, ?, ?, ? , ? ,? ,? ,?)", uid, spider_id, device, platform, channel, media, area_cc, catch_account_id, section_id, response, status, priority, ts_crawl) if err != nil { log.Println(err) } @@ -110,7 +110,7 @@ func (logdb *LogDB) Select(query string, args ...interface{}) *sql.Rows { // ADError 广告错误后更新 func (logdb *LogDB) ADError(uid, error_msg string) { - _, err := logdb.driver.Exec("update ? set status = status + 1000, error_msg=? where uid =?;", logdb.DB, error_msg, uid) + _, err := logdb.driver.Exec("update log_spider set status = status + 1000, error_msg=? where uid =?;", logdb.DB, error_msg, uid) if err != nil { log.Println(err) }