Results for “Std.Db.Driver.Driver”
11 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Db.Driver.Driver
A connector is an ordinary value; applications choose which drivers they admit.
- Std.App.Database.bundledDrivers
Array[Std.Db.Driver.Driver]Built-in connectors remain ordinary values that applications can extend.
- Std.App.Database.fromConfigWith
Std.Db.Driver.Driver -> &Std.App.Config.Config -> Str -> Int -> Result[Std.App.Database.Database, Std.Db.Driver.Error]Prepare a database from a setting, using the given driver.
- Std.App.Database.withDriver
Std.Db.Driver.Driver -> Str -> Int -> Result[Std.App.Database.Database, Std.Db.Driver.Error]Prepare any developer-supplied connector; sockets open during stage startup.
- Std.App.Database.withDrivers
&Array[Std.Db.Driver.Driver] -> Str -> Int -> Result[Std.App.Database.Database, Std.Db.Driver.Error]Select a connector from an explicit set, without a process-global registry.
- Std.Db.Driver.connect
&Array[Std.Db.Driver.Driver] -> Str -> Int -> Result[Std.Db.Driver.Client, Std.Db.Driver.Error]Open a client for a connection string, using the first driver that knows the scheme.
- Std.Db.Driver.select
&Array[Std.Db.Driver.Driver] -> Str -> Result[Std.Db.Driver.Driver, Std.Db.Driver.Error]Select exactly one driver without exposing connection-string contents in errors.
- Std.Db.Migrate.apply
&Std.Db.Driver.Client -> &Std.Db.Driver.Driver -> &Array[Std.Db.Migrate.Migration] -> Result[Int, Std.Db.Migrate.MigrationError]Bring the schema to what the program expects, through any driver.
- Std.Db.Postgres.driver
Std.Db.Driver.DriverThe PostgreSQL driver, for a set a program assembles itself.
- Std.Db.Sqlite.driver
Std.Db.Driver.DriverThe SQLite driver, for a set a program assembles itself.
- Std.Db.Store.through
&Std.Db.Driver.Client -> &Std.Db.Driver.Driver -> Std.Db.Store.TargetA target from a client and the driver that opened it.
