package
0.0.0-20241212173216-745cb4b42230
Repository: https://github.com/ibiscum/go-programming-cookbook-second-edition.git
Documentation: pkg.go.dev

# Functions

Create makes a table called example and populates it.
Exec replaces the Exec from the previous recipe.
No description provided by the author
No description provided by the author
Query grabs a new connection and issues some queries printing the results.

# Structs

Mock of DB interface.
Mock of Transaction interface.

# Interfaces

DB is an interface that is satisfied by an sql.DB or an sql.Transaction.
Transaction can do anything a Query can do plus Commit, Rollback, or Stmt.