mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-11 21:49:13 +00:00
sqlite3_db_cacheflush sqlite3_db_status sqlite3_expanded_sql sqlite3_next_stmt sqlite3_sql sqlite3_table_column_metadata sqlite3_trace_v2 sqlite3_value_frombind
10 lines
281 B
Go
10 lines
281 B
Go
//go:build !(go1.23 || goexperiment.rangefunc)
|
|
|
|
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 }
|