Current section

Files

Jump to
postgleam src postgleam query.gleam
Raw

src/postgleam/query.gleam

import gleam/option.{type Option}
/// A prepared query
pub type Query {
Query(
name: String,
statement: String,
param_oids: Option(List(Int)),
result_oids: Option(List(Int)),
columns: Option(List(String)),
)
}