sqlite-simple-0.2.1.0: Mid-Level SQLite client library

Portabilityportable
Stabilityexperimental
MaintainerJanne Hellsten <jjhellst@gmail.com>
Safe HaskellNone

Database.SQLite.Simple.ToField

Description

The ToField typeclass, for rendering a parameter to an SQLite value to be bound as a SQL query parameter.

Synopsis

Documentation

class ToField a whereSource

A type that may be used as a single parameter to a SQL query.

Methods

toField :: a -> SQLDataSource

Prepare a value for substitution into a query string.