Versions in this module Expand all Collapse all v0 v0.0.2 May 24, 2026 Changes in this version + func EnableConcurrentWrites(app core.App, config pocketbase.Config) + type Base struct + Cache *otter.Cache[string, string] + func (b *Base) GetPolyglotClient() (*polyglot.Client, error) + func (b *Base) SetPolyglotClient(tc *polyglot.Client) type Connecter + func (c *Connecter) Driver() driver.Driver type Driver + func GetDefaultDriver() *Driver v0.0.1 May 23, 2026 Changes in this version + var Cache = otter.Must(&otter.Options[string, string]{ ... }) + var ErrBaseDriverNotExecer = fmt.Errorf("base driver don't support driver.ExecerContext") + var ErrNoTranslatedQuery = fmt.Errorf("no translated query") + func NewSqliteBuilder(db *dbx.DB, executor dbx.Executor) dbx.Builder + func Open(dsn string) (*dbx.DB, error) + type Builder struct + func (*Builder) GeneratePlaceholder(i int) string + type Conn struct + func (c *Conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) + func (c *Conn) Prepare(query string) (driver.Stmt, error) + type Connecter struct + func (c *Connecter) Connect(ctx context.Context) (driver.Conn, error) + type Driver struct + Cache *otter.Cache[string, string] + func (d *Driver) Open(name string) (driver.Conn, error) + func (d *Driver) OpenConnector(name string) (driver.Connector, error)