Documentation ¶
Index ¶
- Variables
- func DeleteAll(ctx context.Context, db *DB) (int64, error)
- type DB
- type DBMethods
- type Error
- type ErrorCode
- type Methods
- type T1
- type T1_Id_Field
- type T1_T2_Id_T3_Id_Row
- type T1_Update_Fields
- type T2
- type T2_Id_Field
- type T2_Update_Fields
- type T3
- type T3_Id_Field
- type T3_Update_Fields
- type Tx
- type TxMethods
Constants ¶
This section is empty.
Variables ¶
View Source
var ( WrapErr = func(err *Error) error { return err } Logger func(format string, args ...any) ShouldRetry func(driver string, err error) bool )
View Source
var SQLite3JournalMode = "WAL"
SQLite3JournalMode controls the journal_mode pragma for all new connections. Since it is read without a mutex, it must be changed to the value you want before any Open calls.
Functions ¶
Types ¶
type DB ¶
type Methods ¶
type Methods interface { All_T1_T2_Id_T3_Id(ctx context.Context) ( rows []*T1_T2_Id_T3_Id_Row, err error) }
type T1_Id_Field ¶
type T1_Id_Field struct {
// contains filtered or unexported fields
}
func T1_Id ¶
func T1_Id(v int64) T1_Id_Field
type T1_T2_Id_T3_Id_Row ¶
type T1_Update_Fields ¶
type T1_Update_Fields struct { }
type T2_Id_Field ¶
type T2_Id_Field struct {
// contains filtered or unexported fields
}
func T2_Id ¶
func T2_Id(v int64) T2_Id_Field
type T2_Update_Fields ¶
type T2_Update_Fields struct { }
type T3_Id_Field ¶
type T3_Id_Field struct {
// contains filtered or unexported fields
}
func T3_Id ¶
func T3_Id(v int64) T3_Id_Field
type T3_Update_Fields ¶
type T3_Update_Fields struct { }
Click to show internal directories.
Click to hide internal directories.