summaryrefslogtreecommitdiff
path: root/vendor/github.com/ncruces/go-sqlite3/conn_old.go
blob: 4663fa04d04f263a2d375208b1ec053472b4b82f (plain)
1
2
3
4
5
6
7
8
9
//go:build !go1.23

package sqlite3

// Stmts returns an iterator for the prepared statements
// associated with the database connection.
//
// https://sqlite.org/c3ref/next_stmt.html
func (c *Conn) Stmts() func(func(*Stmt) bool) { return c.stmtsIter }