mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 14:09: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
12 lines
286 B
Go
12 lines
286 B
Go
//go:build go1.23 || goexperiment.rangefunc
|
|
|
|
package sqlite3
|
|
|
|
import "iter"
|
|
|
|
// Stmts returns an iterator for the prepared statements
|
|
// associated with the database connection.
|
|
//
|
|
// https://sqlite.org/c3ref/next_stmt.html
|
|
func (c *Conn) Stmts() iter.Seq[*Stmt] { return c.stmtsIter }
|