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

Method QueryRow

internal/utils/dbs/db.go:187–192  ·  view source on GitHub ↗
(query string, args ...any)

Source from the content-addressed store, hash-verified

185}
186
187func (this *DB) QueryRow(query string, args ...any) *sql.Row {
188 if this.enableStat {
189 defer SharedQueryStatManager.AddQuery(query).End()
190 }
191 return this.rawDB.QueryRow(query, args...)
192}
193
194// Close the database
195func (this *DB) Close() error {

Callers 4

ReadMaxVersionMethod · 0.45
TotalMethod · 0.45
ExistMethod · 0.45
StatMethod · 0.45

Calls 2

AddQueryMethod · 0.80
EndMethod · 0.45

Tested by

no test coverage detected