packages feed

mysql 0.1.1.2 → 0.1.1.3

raw patch · 5 files changed

+20/−19 lines, 5 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Database.MySQL.Base.Types: flagAutoIncrement :: FieldFlag
- Database.MySQL.Base.Types: flagBinary :: FieldFlag
- Database.MySQL.Base.Types: flagMultipleKey :: FieldFlag
- Database.MySQL.Base.Types: flagNoDefaultValue :: FieldFlag
- Database.MySQL.Base.Types: flagNotNull :: FieldFlag
- Database.MySQL.Base.Types: flagNumeric :: FieldFlag
- Database.MySQL.Base.Types: flagPrimaryKey :: FieldFlag
- Database.MySQL.Base.Types: flagUniqueKey :: FieldFlag
- Database.MySQL.Base.Types: flagUnsigned :: FieldFlag
- Database.MySQL.Base.Types: flagZeroFill :: FieldFlag
+ Database.MySQL.Base.Types: flagNotNull, flagMultipleKey, flagUniqueKey, flagPrimaryKey :: FieldFlag
+ Database.MySQL.Base.Types: flagNumeric, flagNoDefaultValue :: FieldFlag
+ Database.MySQL.Base.Types: flagUnsigned, flagAutoIncrement, flagBinary, flagZeroFill :: FieldFlag

Files

Database/MySQL/Base.hs view
@@ -4,7 +4,7 @@ -- Module:      Database.MySQL.Base -- Copyright:   (c) 2011 MailRank, Inc. -- License:     BSD3--- Maintainer:  Bryan O'Sullivan <bos@mailrank.com>+-- Maintainer:  Bryan O'Sullivan <bos@serpentine.com> -- Stability:   experimental -- Portability: portable --
Database/MySQL/Base/C.hsc view
@@ -4,7 +4,7 @@ -- Module:      Database.MySQL.Base.C -- Copyright:   (c) 2011 MailRank, Inc. -- License:     BSD3--- Maintainer:  Bryan O'Sullivan <bos@mailrank.com>+-- Maintainer:  Bryan O'Sullivan <bos@serpentine.com> -- Stability:   experimental -- Portability: portable --
Database/MySQL/Base/Types.hsc view
@@ -4,7 +4,7 @@ -- Module:      Database.MySQL.Base.C -- Copyright:   (c) 2011 MailRank, Inc. -- License:     BSD3--- Maintainer:  Bryan O'Sullivan <bos@mailrank.com>+-- Maintainer:  Bryan O'Sullivan <bos@serpentine.com> -- Stability:   experimental -- Portability: portable --
README.markdown view
@@ -2,11 +2,12 @@  This library is a Haskell binding to the MySQL `mysqlclient` client library.  It is a fairly faithful, low level library that implements-most of the MySQL client API.+most of the MySQL client API.  The major departure from the C API is+that in Haskell, resource management is mostly automatic and safe.  This library deliberately avoids the question of providing a "good"-API. Its purpose is to serve as a base on which higher-level libraries-can be build.+API. Its purpose is to serve as a base upon which higher-level+libraries can be built.  # Licensing @@ -19,9 +20,9 @@  # To do -* Add support for prepared statements. This API is huge and of dubious-  performance worth, so it's not currently a priority for me. Patches-  welcome!+* Add support for prepared statements. The prepared statement API is+  huge and of dubious performance value, so it's not currently a+  priority for us. Patches welcome!  # Get involved! @@ -29,11 +30,11 @@ and other improvements.  Please report bugs via the-[github issue tracker](http://github.com/mailrank/mysql/issues).+[github issue tracker](http://github.com/bos/mysql/issues). -Master [git repository](http://github.com/mailrank/mysql):+Master [git repository](http://github.com/bos/mysql): -* `git clone git://github.com/mailrank/mysql.git`+* `git clone git://github.com/bos/mysql.git`  There's also a [Mercurial mirror](http://bitbucket.org/bos/mysql): @@ -44,4 +45,4 @@ # Authors  This library is written and maintained by Bryan O'Sullivan,-<bos@mailrank.com>.+<bos@serpentine.com>.
mysql.cabal view
@@ -1,7 +1,7 @@ name:           mysql-version:        0.1.1.2-homepage:       https://github.com/mailrank/mysql-bug-reports:    https://github.com/mailrank/mysql/issues+version:        0.1.1.3+homepage:       https://github.com/bos/mysql+bug-reports:    https://github.com/bos/mysql/issues synopsis:       A low-level MySQL client library. description:         A low-level client library for the MySQL database, implemented as@@ -16,8 +16,8 @@     subject to the terms of the GPL. license:        BSD3 license-file:   LICENSE-author:         Bryan O'Sullivan <bos@mailrank.com>-maintainer:     Bryan O'Sullivan <bos@mailrank.com>+author:         Bryan O'Sullivan <bos@serpentine.com>+maintainer:     Bryan O'Sullivan <bos@serpentine.com> copyright:      2011 MailRank, Inc. category:       Database build-type:     Custom@@ -55,7 +55,7 @@  source-repository head   type:     git-  location: http://github.com/mailrank/mysql+  location: http://github.com/bos/mysql  source-repository head   type:     mercurial