forked from uptrace/bun
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: added raw query calls (uptrace#596)
* feat: added raw query calls
- Loading branch information
1 parent
f2bef6c
commit 127644d
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
package bun | ||
|
||
import ( | ||
"context" | ||
"github.com/uptrace/bun/schema" | ||
) | ||
|
||
type RawQuery struct { | ||
baseQuery | ||
|
||
query string | ||
args []interface{} | ||
} | ||
|
||
func (db *DB) Raw(query string, args ...interface{}) *RawQuery { | ||
return &RawQuery{ | ||
baseQuery: baseQuery{ | ||
db: db, | ||
conn: db.DB, | ||
}, | ||
query: query, | ||
args: args, | ||
} | ||
} | ||
|
||
func (q *RawQuery) Scan(ctx context.Context, dest ...interface{}) error { | ||
if q.err != nil { | ||
return q.err | ||
} | ||
|
||
model, err := q.getModel(dest) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
query := q.db.format(q.query, q.args) | ||
_, err = q.scan(ctx, q, query, model, true) | ||
return err | ||
} | ||
|
||
func (q *RawQuery) AppendQuery(fmter schema.Formatter, b []byte) ([]byte, error) { | ||
return fmter.AppendQuery(b, q.query, q.args), nil | ||
} | ||
|
||
func (q *RawQuery) Operation() string { | ||
return "SELECT" | ||
} |