MCPcopy Create free account
hub / github.com/abice/go-enum / getNullStrProjectStatus

Function getNullStrProjectStatus

example/sql_1_11_test.go:499–502  ·  view source on GitHub ↗
(db *sql.DB)

Source from the content-addressed store, hash-verified

497}
498
499func getNullStrProjectStatus(db *sql.DB) (status NullProjectStatusStr, err error) {
500 err = db.QueryRow(`SELECT status FROM project WHERE id = ?`, hardcodedProjectID).Scan(&status)
501 return
502}
503
504func getNullProjectStatus(db *sql.DB) (status NullProjectStatus, err error) {
505 err = db.QueryRow(`SELECT status FROM project WHERE id = ?`, hardcodedProjectID).Scan(&status)

Callers 1

TestExampleSQLFunction · 0.85

Calls 1

ScanMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…