Documentation ¶
Overview ¶
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Package database - Content managed by Project Forge, see [projectforge.md] for details.
Index ¶
- Constants
- func ArrayToString(a []string) string
- func RegistryKeys() []string
- func SQLDelete(table string, where string, placeholder string) string
- func SQLInClause(column string, numParams int, offset int, placeholder string) string
- func SQLInsert(table string, columns []string, rows int, placeholder string) string
- func SQLInsertReturning(table string, columns []string, rows int, returning []string, ...) string
- func SQLSelect(columns string, tables string, where string, orderBy string, limit int, ...) string
- func SQLSelectGrouped(columns string, tables string, where string, groupBy string, orderBy string, ...) string
- func SQLSelectSimple(columns string, tables string, placeholder string, where ...string) string
- func SQLUpdate(table string, columns []string, where string, placeholder string) string
- func SQLUpdateReturning(table string, columns []string, where string, returned []string, ...) string
- func SQLUpsert(table string, columns []string, rows int, conflicts []string, updates []string, ...) string
- func StringToArray(s string) []string
- func UUIDFromGUID(x *any) *uuid.UUID
- type DBType
- type MySQLParams
- type PostgresParams
- type PostgresServiceParams
- type SQLServerParams
- type SQLiteParams
- type Service
- func NewService(typ *DBType, key string, dbName string, schName string, username string, ...) (*Service, error)
- func OpenDefaultMySQL(logger util.Logger) (*Service, error)
- func OpenDefaultPostgres(ctx context.Context, logger util.Logger) (*Service, error)
- func OpenDefaultSQLServer(ctx context.Context, logger util.Logger) (*Service, error)
- func OpenDefaultSQLite(ctx context.Context, logger util.Logger) (*Service, error)
- func OpenMySQLDatabase(ctx context.Context, key string, params *MySQLParams, logger util.Logger) (*Service, error)
- func OpenPostgres(ctx context.Context, key string, prefix string, logger util.Logger) (*Service, error)
- func OpenPostgresDatabase(ctx context.Context, key string, params *PostgresParams, logger util.Logger) (*Service, error)
- func OpenPostgresDatabaseSSL(ctx context.Context, key string, ep *PostgresParams, sp *PostgresServiceParams, ...) (*Service, error)
- func OpenSQLServer(ctx context.Context, key string, prefix string, logger util.Logger) (*Service, error)
- func OpenSQLServerDatabase(ctx context.Context, key string, params *SQLServerParams, logger util.Logger) (*Service, error)
- func OpenSQLite(ctx context.Context, prefix string, logger util.Logger) (*Service, error)
- func OpenSQLiteDatabase(ctx context.Context, key string, params *SQLiteParams, logger util.Logger) (*Service, error)
- func RegistryGet(key string) (*Service, error)
- func (s *Service) Close() error
- func (s *Service) Conn(ctx context.Context) (*sql.Conn, error)
- func (s *Service) Delete(ctx context.Context, q string, tx *sqlx.Tx, expected int, logger util.Logger, ...) (int, error)
- func (s *Service) DeleteOne(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) error
- func (s *Service) Exec(ctx context.Context, q string, tx *sqlx.Tx, expected int, logger util.Logger, ...) (int, error)
- func (s *Service) Get(ctx context.Context, row any, q string, tx *sqlx.Tx, logger util.Logger, ...) error
- func (s *Service) Healthcheck(dbName string, db *sqlx.DB) error
- func (s *Service) Insert(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) error
- func (s *Service) Placeholder() string
- func (s *Service) Prepare(ctx context.Context, q string) (*sqlx.Stmt, error)
- func (s *Service) Query(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) (*sqlx.Rows, error)
- func (s *Service) Query2DArray(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) ([][]any, error)
- func (s *Service) QueryKVMap(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) (util.ValueMap, error)
- func (s *Service) QueryRows(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) ([]util.ValueMap, error)
- func (s *Service) QuerySingleRow(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) (util.ValueMap, error)
- func (s *Service) Select(ctx context.Context, dest any, q string, tx *sqlx.Tx, logger util.Logger, ...) error
- func (s *Service) SingleBool(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) (bool, error)
- func (s *Service) SingleInt(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) (int64, error)
- func (s *Service) StartTransaction(logger util.Logger) (*sqlx.Tx, error)
- func (s *Service) Stats() sql.DBStats
- func (s *Service) Update(ctx context.Context, q string, tx *sqlx.Tx, expected int, logger util.Logger, ...) (int, error)
- func (s *Service) UpdateOne(ctx context.Context, q string, tx *sqlx.Tx, logger util.Logger, values ...any) error
Constants ¶
const SQLiteEnabled = true
Variables ¶
This section is empty.
Functions ¶
func ArrayToString ¶
func RegistryKeys ¶ added in v0.2.1
func RegistryKeys() []string
func SQLInClause ¶
func SQLInsertReturning ¶
func SQLSelectGrouped ¶
func SQLSelectSimple ¶
func SQLUpdateReturning ¶
func StringToArray ¶
func UUIDFromGUID ¶ added in v0.2.12
Types ¶
type MySQLParams ¶
type MySQLParams struct { Host string `json:"host"` Port int `json:"port,omitempty"` Username string `json:"username"` Password string `json:"password,omitempty"` Database string `json:"database,omitempty"` Schema string `json:"schema,omitempty"` MaxConns int `json:"maxConns,omitempty"` Debug bool `json:"debug,omitempty"` }
func MySQLParamsFromEnv ¶
func MySQLParamsFromEnv(key string, defaultUser string, prefix string) *MySQLParams
type PostgresParams ¶
type PostgresParams struct { Host string `json:"host"` Port int `json:"port,omitempty"` Username string `json:"username"` Password string `json:"password,omitempty"` Database string `json:"database,omitempty"` Schema string `json:"schema,omitempty"` MaxConns int `json:"maxConns,omitempty"` Debug bool `json:"debug,omitempty"` }
func PostgresParamsFromEnv ¶
func PostgresParamsFromEnv(key string, defaultUser string, prefix string) *PostgresParams
type PostgresServiceParams ¶
type PostgresServiceParams struct { Host string `json:"host"` Port int `json:"port,omitempty"` Schema string `json:"schema,omitempty"` Username string `json:"username"` Password string `json:"password,omitempty"` Database string `json:"database,omitempty"` SSLMode string `json:"sslmode,omitempty"` SSLKey string `json:"sslkey,omitempty"` SSLCert string `json:"sslcert,omitempty"` SSLRootCert string `json:"sslrootcert,omitempty"` }
func PostgresParamsFromService ¶
func PostgresParamsFromService() (*PostgresServiceParams, error)
PostgresParamsFromService parses connection service config from DB_SERVICE env var from file located at DB_SERVICEFILE. If DB_SERVICEFILE is not provided, it searches for the pg service conf file in home directory.
type SQLServerParams ¶ added in v0.2.12
type SQLServerParams struct { Host string `json:"host"` Port int `json:"port,omitempty"` Username string `json:"username"` Password string `json:"password,omitempty"` Database string `json:"database,omitempty"` Schema string `json:"schema,omitempty"` MaxConns int `json:"maxConns,omitempty"` Debug bool `json:"debug,omitempty"` }
func SQLServerParamsFromEnv ¶ added in v0.2.12
func SQLServerParamsFromEnv(key string, defaultUser string, prefix string) *SQLServerParams
type SQLiteParams ¶
type SQLiteParams struct { File string `json:"file"` Schema string `json:"schema,omitempty"` Debug bool `json:"debug,omitempty"` }
func SQLiteParamsFromEnv ¶
func SQLiteParamsFromEnv(_ string, prefix string) *SQLiteParams
type Service ¶
type Service struct { Key string `json:"key"` DatabaseName string `json:"database,omitempty"` SchemaName string `json:"schema,omitempty"` Username string `json:"username,omitempty"` Debug bool `json:"debug,omitempty"` Type *DBType `json:"type"` ReadOnly bool `json:"readonly,omitempty"` // contains filtered or unexported fields }
func NewService ¶
func OpenDefaultPostgres ¶
func OpenDefaultSQLServer ¶ added in v0.2.12
func OpenDefaultSQLite ¶
func OpenMySQLDatabase ¶
func OpenPostgres ¶
func OpenPostgresDatabase ¶
func OpenPostgresDatabaseSSL ¶
func OpenPostgresDatabaseSSL(ctx context.Context, key string, ep *PostgresParams, sp *PostgresServiceParams, logger util.Logger) (*Service, error)