package
0.0.0-20240804112023-e6bc469522af
Repository: https://github.com/comtop1/afc-go.git
Documentation: pkg.go.dev

# Functions

WrapStdSql wraps a type implementing the standard SQL interface with methods that squirrel expects.

# Variables

Dollar is a PlaceholderFormat instance that replaces placeholders with dollar-prefixed positional placeholders (e.g.
StatementBuilder is a parent builder for other builders, e.g.

# Structs

Row wraps database/sql.Row to let squirrel return new errors on Scan.

# Interfaces

BaseRunner groups the Execer and Queryer interfaces.
Execer is the interface that wraps the Exec method.
PlaceholderFormat is the interface that wraps the ReplacePlaceholders method.
Queryer is the interface that wraps the Query method.
QueryRower is the interface that wraps the QueryRow method.
RowScanner is the interface that wraps the Scan method.
Runner groups the Execer, Queryer, and QueryRower interfaces.
Sqlizer is the interface that wraps the ToSql method.
StdSql encompasses the standard methods of the *sql.DB type, and other types that wrap these methods.

# Type aliases

SelectBuilder builds SQL SELECT statements.
StatementBuilderType is the type of StatementBuilder.