Results for “Std.Db.Rows”
9 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Db.Rows
What a query produced.
- Std.Db.affected
&Std.Db.Rows -> IntHow many rows a statement that produced none reported changing.
- Std.Db.asDriverRows
&Std.Db.Rows -> Std.Db.Driver.RowsThis result as the driver layer carries one.
- Std.Db.column
&Std.Db.Rows -> Str -> Array[Option[Str]]Every value in one column.
- Std.Db.indexOfColumn
&Std.Db.Rows -> Str -> IntWhere a column sits, or
-1when the result has no column of that name. - Std.Db.rowCount
&Std.Db.Rows -> IntHow many rows a result holds.
- Std.Db.run
Std.Db.Session.Connection -> Str -> &Array[Option[Str]] -> Result[(Std.Db.Rows, Std.Db.Session.Connection), Std.Db.Session.DbError]Run a statement with values supplied apart from it.
- Std.Db.simple
Std.Db.Session.Connection -> Str -> Result[(Std.Db.Rows, Std.Db.Session.Connection), Std.Db.Session.DbError]Run text the server plans and executes in one step.
- Std.Db.value
&Std.Db.Rows -> Int -> Str -> Option[Str]One value by row and column name, absent when either is missing or when the
