Std.Db.Session.connect
1 declaration
fn
connect: &Std.Db.Session.Config -> Result[Std.Db.Session.Connection, Std.Db.Session.DbError]This is a callable function.
What it does
Open a connection and take it through to the point it will accept a query.
Dialling and the whole handshake share one time limit, the configuration's
connectMillis: a host that drops packets, and a server that accepts and
then answers nothing, are each refused once it passes rather than holding
the caller for as long as they choose.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
- & borrows a value for this call instead of moving or copying it.
- Names inside [ ] are type arguments, such as the item type held by a collection.
- Result makes success and recoverable failure part of the function's type.
