This commit is contained in:
shoopea 2019-05-06 21:49:55 +08:00
parent 01d5ce3f2b
commit f6f5f6108c

7
sql.go
View File

@ -199,6 +199,7 @@ func getObjSubTypeId(objId int64) (int64, error) {
}
func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int32, gold int32, stock int32, crit bool, stamina bool) error {
/*
objSubTypeId, err := getObjSubTypeId(objId)
if err != nil {
return err
@ -206,7 +207,7 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
if objSubTypeId != objSubTypeMessageUnprocess {
return errors.New("Message is not of type Unknown")
}
/*
obj_id BIGINT UNSIGNED NOT NULL
,war_date TIMESTAMP NOT NULL
,attack SMALLINT UNSIGNED NOT NULL
@ -216,7 +217,7 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
,exp SMALLINT UNSIGNED NOT NULL
,stamina TINYINT NOT NULL
,crit TINYINT NOT NULL
*/
stmt, err := db.Prepare(`INSERT INTO obj_msg_report (obj_id, war_date, attack, defense, gold, stock, exp, stamina, crit)
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?FROM_UNIXTIME(?), ?);`)
if err != nil {
@ -228,6 +229,6 @@ func insertMsgReport(objId int64, war_date int32, atk int32, def int32, exp int3
if err != nil {
return err
}
*/
return nil
}