Documentation
¶
Index ¶
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 Bar_Data_Field ¶
type Bar_Data_Field struct {
// contains filtered or unexported fields
}
func Bar_Data ¶
func Bar_Data(v string) Bar_Data_Field
type Bar_Pk_Field ¶
type Bar_Pk_Field struct {
// contains filtered or unexported fields
}
func Bar_Pk ¶
func Bar_Pk(v int64) Bar_Pk_Field
type Bar_Update_Fields ¶
type Bar_Update_Fields struct {
}
type DB ¶
type Foo_Data_Field ¶
type Foo_Data_Field struct {
// contains filtered or unexported fields
}
func Foo_Data ¶
func Foo_Data(v string) Foo_Data_Field
type Foo_Pk_Field ¶
type Foo_Pk_Field struct {
// contains filtered or unexported fields
}
func Foo_Pk ¶
func Foo_Pk(v []byte) Foo_Pk_Field
type Foo_Update_Fields ¶
type Foo_Update_Fields struct {
}
type Methods ¶
type Methods interface {
RawReplaceNoReturn_Bar(ctx context.Context,
raw_bar *Bar) (
err error)
RawReplace_Bar(ctx context.Context,
raw_bar *Bar) (
bar *Bar, err error)
ReplaceNoReturn_Foo(ctx context.Context,
foo_pk Foo_Pk_Field,
foo_data Foo_Data_Field) (
err error)
Replace_Foo(ctx context.Context,
foo_pk Foo_Pk_Field,
foo_data Foo_Data_Field) (
foo *Foo, err error)
}
Click to show internal directories.
Click to hide internal directories.