1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
{- |
Module : Database.HDBC
Copyright : Copyright (C) 2005-2011 John Goerzen
License : BSD3
Maintainer : John Goerzen <jgoerzen@complete.org>
Stability : provisional
Portability: portable
Welcome to HDBC, the Haskell Database Connectivity library.
Written by John Goerzen, jgoerzen\@complete.org
-}
module Database.HDBC
(-- * Introduction
-- $introduction
-- ** Features
-- $features
-- ** Available Drivers
-- $drivers
-- * Typing of transfer data
SqlValue(..),
toSql, fromSql, safeFromSql, nToSql, iToSql, posixToSql,
-- * Database Connections
IConnection,
disconnect, clone,
-- ** Wrapped Connections
ConnWrapper(..), withWConn,
-- ** Preparing Queries
run, runRaw, sRun, prepare, quickQuery', quickQuery,
-- ** Transaction Handling
-- $transactions
commit, rollback, withTransaction,
-- ** Connection Inquiries
hdbcDriverName, hdbcClientVer, proxiedClientName,
proxiedClientVer, dbServerVer, dbTransactionSupport,
getTables, describeTable,
-- * Statements
Statement,
-- ** Execution
execute, executeRaw, sExecute, executeMany, sExecuteMany,
-- ** Fetching Results
fetchRow, fetchRowAL, fetchRowMap, sFetchRow,
fetchAllRows, fetchAllRows', fetchAllRowsAL, fetchAllRowsAL',
fetchAllRowsMap, fetchAllRowsMap', sFetchAllRows, sFetchAllRows',
getColumnNames,
-- ** Statement Inquires
describeResult,
-- ** Miscellaneous
finish, originalQuery,
-- * Exceptions
SqlError(..),
throwSqlError,
catchSql, handleSql, sqlExceptions, handleSqlError,
-- * Column Types
-- | These are defined in "Database.HDBC.ColTypes" but are
-- available to programs importing "Database.HDBC" by default as well.
-- See "Database.HDBC.ColTypes" for documentation.
module Database.HDBC.ColTypes
-- * Threading
-- $threading
)
where
import Database.HDBC.Utils(catchSql, handleSql, sqlExceptions,
handleSqlError, withTransaction,
sFetchAllRows, fetchAllRows,
sFetchAllRows', fetchAllRows',
sRun, sExecute, sExecuteMany, sFetchRow,
quickQuery, fetchRowMap, fetchAllRowsMap,
quickQuery', fetchAllRowsMap',
fetchRowAL, fetchAllRowsAL,
fetchAllRowsAL', throwSqlError)
import Database.HDBC.Types
import Database.HDBC.ColTypes
{- $introduction
Welcome to HDBC, Haskell Database Connectivity.
HDBC provides an abstraction layer between Haskell programs and SQL
relational databases. This lets you write database code once, in
Haskell, and have it work with any number of backend SQL databases
(MySQL, Oracle, PostgreSQL, ODBC-compliant databases, etc.)
HDBC is modeled loosely on Perl's DBI interface
<http://search.cpan.org/~timb/DBI/DBI.pm>, though it has also
been influenced by Python's DB-API v2, JDBC in Java, and HSQL in
Haskell.
HDBC is a from-scratch effort. It is not a reimplementation of HSQL,
though its purpose is the same.
-}
{- $features
Features of HDBC include:
* Ability to use replacable parameters to let one query be
executed multiple times (eliminates the need for an escape
function)
* Ability to access returned rows by column number
* Ability to read data from the SQL server on-demand rather than
reading the entire result set up front
* HUnit testsuite for each backend driver
* Well-defined standard API and easy backend driver implementation
* Lazy reading of the entire result set (think hGetContents, but
for the results of SELECT) (see 'sFetchAllRows')
* Support for translation between Haskell and SQL types
* Support for querying database server properties
* Add-on package (hdbc-missingh) to integrate with MissingH,
providing a database backend for AnyDBM
* Support for querying metadata such as column names
* Support for querying additional metadata (column types, etc.)
-}
{- $drivers
Here is a list of known drivers as of May 6, 2019:
[@Sqlite v3@] Available from <https://github.com/hdbc/hdbc-sqlite3>.
[@PostgreSQL@] Available from <https://github.com/hdbc/hdbc-postgresql>.
[@ODBC@] Available from <https://github.com/hdbc/hdbc-odbc>.
[@MySQL@] MySQL users have two choices: the first is the ODBC driver, which works
and has been tested against MySQL on both Linux\/Unix and Windows platforms. There is
also an alpha-quality native MySQL driver available for download at
<http://hackage.haskell.org/cgi-bin/hackage-scripts/package/HDBC-mysql> with a homepage
at <http://www.maubi.net/~waterson/hacks/hdbc-mysql.html>.
The latest version of HDBC itself is available from
<https://github.com/hdbc/hdbc>.
-}
{- $transactions
This section concerns itself with writing (updating) a database.
In HDBC, as with many RDBMS implementations, every write to the
database occurs within a transaction. No changes are visible (outside
the current transaction) until a commit operation occurs, in which
case all changes since the transaction started are atomically
committed. Also, there is a rollback operation that can undo all
changes since the transaction started.
HDBC does everything within a transaction. A transaction is implicitly entered
when a connection to a database is established, and a transaction is
implicitly entered after each call to 'commit' or 'rollback' as well.
The practical effect of this is that you must call 'commit' after making
changes to a database in order for those changes to become visible. You don't
have to call 'commit' after /every/ change, just after a batch of them.
(Exceptions exist for databases that don't offer a high level of transaction
isolation; but you should always play it safe and commit anyway.)
Database developers will also be experienced with the atomicity benefits
of transactions, an explanation of which is outside the scope of this manual.
Errors occuring at the database level can leave a transaction in an
indeterminate state, depending on the database. Some databases will
refuse all queries until the next 'commit' or 'rollback'. The safe thing
to do is to issue a 'commit' or 'rollback' after trapping any 'SqlError'.
Alternatively, you could use 'withTransaction', which will automatically
handle this detail for you.
-}
{- $threading
FIXME: this is draft information
Thread support in a generalized interface such as HDBC can be complicated
because support for threading varies across database interfaces.
However, applications using HDBC should be able to rely upon at least a few
basic guarantees:
* The HDBC modules may freely be imported and used across all threads.
* HDBC modules may also freely share database connections and statements;
the database or HDBC driver will be responsible for locking if necessary.
I use \"share\" in the same sense as Python's DB-API: multiple threads may use
the resource without wrapping it in any lock.
However, there are some caveats to the above:
* Not all databases support more than one active statement for a single
connection. Therefore, for maximum portability, you should use
a different connection to the database for each simultaneous query you
wish to use.
FIXME: describe when a statement is active.
* Not all databases may support the level of multithreading described above.
For those that don't, safe access will be restriced in the HDBC driver
by using locks. Therefore, you can write portable code, but you
only get real multithreading when databases really support it.
Details of thread support should be documented in the HDBC
driver for each specific database.
-}
|