blob: 921011d808758e285f68f3428b285a44ec89885b (
plain)
| 1
2
3
4
5
6
7
8
9
 | //go:build !(go1.23 || goexperiment.rangefunc) || vet
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 }
 |