MySQLを使って、データベースに保存したbitcoinのデータをGoの構造体に代入する処理を実装しています。
GUIツールでSQLを実行した際はしっかりデータが取得できるのですが、Goの構造体に格納する際に値が0になってしまいます。
対処法はありますでしょうか?
GUIツールにおける取得結果
'2020-09-07 06:18:33','10136.1','10136.1','10136.1','10136.1','12.6723'
'2020-09-07 06:19:26','10132.5','10132.5','10132.5','10132.5','12.6723'
'2020-09-07 06:19:28','10132','10132','10132','10132','12.6723'
Goの構造体に格納されたデータ
0001-01-01 00:00:00 +0000 0 0 0 0 0
0001-01-01 00:00:00 +0000 0 0 0 0 0
0001-01-01 00:00:00 +0000 0 0 0 0 0
SQL
1SELECT * FROM ( 2 SELECT time, open, close, high, low, volume FROM BTC_USD_1s ORDER BY time DESC LIMIT 10 3 ) AS account ORDER BY time ASC;
Go
1type DataFrameCandle struct { 2 Candles []Candle `json:"candles"` 3} 4 5type Candle struct { 6 Time time.Time 7 Open float64 8 Close float64 9 High float64 10 Low float64 11 Volume float64 12} 13 14func GetAllCandle(limit int) (dfCandle *DataFrameCandle, err error) { 15 cmd := fmt.Sprintf(`SELECT * FROM ( 16 SELECT time, open, close, high, low, volume FROM %s ORDER BY time DESC LIMIT ? 17 ) ORDER BY time ASC;`, "BTC_USD_1s") 18 rows, err := DbConnection.Query(cmd, limit) 19 if err != nil { 20 return 21 } 22 defer rows.Close() 23 24 25 26 dfCandle = &DataFrameCandle{} 27 28 for rows.Next() { 29 var candle Candle 30 rows.Scan(&candle.Time, &candle.Open, &candle.Close, &candle.High, &candle.Low, &candle.Volume) 31 dfCandle.Candles = append(dfCandle.Candles, candle) 32 } 33 34 err = rows.Err() 35 if err != nil { 36 return 37 } 38 39 return dfCandle, nil 40}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/09/09 04:42