diff options
author | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 14:53:15 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 14:53:15 +0300 |
commit | 492c6449937cb07731526bd2c4577927a1ff463f (patch) | |
tree | 55eed7d57368dcb188c2b75ad2e6f845bc456221 | |
parent | f83ed75b89ce6cc45a5f2c5fb3d9c2885d8920a4 (diff) |
feat: add DBGetQuestion method to SQL provider
-rw-r--r-- | internal/database/sql/main.go | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/database/sql/main.go b/internal/database/sql/main.go index 6ca8879..0ac81a6 100644 --- a/internal/database/sql/main.go +++ b/internal/database/sql/main.go @@ -36,6 +36,15 @@ type DB struct { URI string } +func (d *DB) DBGetQuestion(id string) (*models.Question, error) { + var question models.Question + err := d.Conn.Get(&question, "SELECT * FROM questions WHERE id = ?", id) + if err != nil { + return nil, err + } + return &question, nil +} + func (d *DB) CloseAll() error { for _, conn := range []*sqlx.DB{d.Conn} { if err := closeConn(conn); err != nil { |