Documentation
¶
Rendered for js/wasm
Index ¶
Constants ¶
View Source
const ( SQLITE_INTEGER = 1 SQLITE_FLOAT = 2 SQLITE3_TEXT = 3 SQLITE_BLOB = 4 SQLITE_NULL = 5 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type SQLiteConn ¶
type SQLiteConn struct {
// contains filtered or unexported fields
}
func (*SQLiteConn) Backup ¶
func (c *SQLiteConn) Backup(path string) error
func (*SQLiteConn) Close ¶
func (c *SQLiteConn) Close() error
type SQLiteDriver ¶
type SQLiteDriver struct {
}
type SQLiteResult ¶
type SQLiteResult struct {
// contains filtered or unexported fields
}
func (*SQLiteResult) LastInsertId ¶
func (r *SQLiteResult) LastInsertId() (int64, error)
func (*SQLiteResult) RowsAffected ¶
func (r *SQLiteResult) RowsAffected() (int64, error)
type SQLiteRows ¶
type SQLiteRows struct {
// contains filtered or unexported fields
}
func (*SQLiteRows) Close ¶
func (rc *SQLiteRows) Close() error
func (*SQLiteRows) Columns ¶
func (rc *SQLiteRows) Columns() []string
type SQLiteStmt ¶
type SQLiteStmt struct {
ID string
// contains filtered or unexported fields
}
func (*SQLiteStmt) Close ¶
func (s *SQLiteStmt) Close() error
func (*SQLiteStmt) NumInput ¶
func (s *SQLiteStmt) NumInput() int
Click to show internal directories.
Click to hide internal directories.