TheMathemagicians/sevenkeys/database/operations/selects.go

35 lines
775 B
Go
Raw Normal View History

2024-04-28 14:13:47 +00:00
package operations
import (
"database/sql"
"sevenkeys/database/entities"
2024-05-19 14:01:18 +00:00
"time"
2024-04-28 14:13:47 +00:00
)
func GetGamepieceByName(db *sql.DB, name string) (entities.Gamepiece, error) {
var gamepiece entities.Gamepiece
query := "SELECT Id, Name FROM Gamepiece WHERE Name = ?;"
err := db.QueryRow(query, name).Scan(&gamepiece.Id, &gamepiece.Name)
return gamepiece, err
}
2024-05-19 14:01:18 +00:00
func GetCacheTimestampByType(db *sql.DB, cacheType string) (time.Time, error) {
var timestamp string
2024-05-21 13:31:20 +00:00
query := "SELECT Stamp FROM CacheTimestamp WHERE CacheType = ?;"
2024-05-19 14:01:18 +00:00
err := db.QueryRow(query, cacheType).Scan(&timestamp)
if err == sql.ErrNoRows {
2024-05-21 13:31:20 +00:00
return time.Unix(0, 0), err
2024-05-19 14:01:18 +00:00
}
stamp, err := time.Parse("2006-01-02 15:04:05", timestamp)
if err != nil {
2024-05-21 13:31:20 +00:00
return time.Unix(0, 0), err
2024-05-19 14:01:18 +00:00
}
return stamp, err
}