MCPcopy Create free account
hub / github.com/GoEdgeLab/EdgeNode / QueryRow

Method QueryRow

internal/utils/dbs/stmt.go:96–101  ·  view source on GitHub ↗
(args ...any)

Source from the content-addressed store, hash-verified

94}
95
96func (this *Stmt) QueryRow(args ...any) *sql.Row {
97 if this.enableStat {
98 defer SharedQueryStatManager.AddQuery(this.query).End()
99 }
100 return this.rawStmt.QueryRow(args...)
101}
102
103func (this *Stmt) Close() error {
104 return this.rawStmt.Close()

Callers

nothing calls this directly

Calls 2

AddQueryMethod · 0.80
EndMethod · 0.45

Tested by

no test coverage detected