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

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

Database.SQLite.Simple.Internal

Description

Internal bits. This interface is less stable and can change at any time. In particular this means that while the rest of the sqlite-simple package endeavors to follow the package versioning policy, this module does not. Also, at the moment there are things in here that aren't particularly internal and are exported elsewhere; these will eventually disappear from this module.

Synopsis

Documentation

data Connection Source

Connection to an open database.

Constructors

Connection Database 

data Field Source

A Field represents metadata about a particular field

Constructors

Field 

Fields

result :: SQLData
 
column :: !Int
 

data Row Source

Constructors

Row 

Fields

row :: !Int
 
rowresult :: [SQLData]