diff --git a/src/Database/PostgreSQL/Simple.hs b/src/Database/PostgreSQL/Simple.hs index 6ecc86d..0f20223 100644 --- a/src/Database/PostgreSQL/Simple.hs +++ b/src/Database/PostgreSQL/Simple.hs @@ -94,7 +94,6 @@ module Database.PostgreSQL.Simple , foldWithOptions_ , forEach , forEach_ - , returning -- ** Queries that stream results taking a parser as an argument , foldWith , foldWithOptionsAndParser @@ -102,16 +101,16 @@ module Database.PostgreSQL.Simple , foldWithOptionsAndParser_ , forEachWith , forEachWith_ - , returningWith -- * Statements that do not return results , execute , execute_ , executeMany --- , Base.insertID + -- * Modifications that return results + , returning + , returningWith -- * Transaction handling , withTransaction , withSavepoint --- , Base.autocommit , begin , commit , rollback diff --git a/src/Database/PostgreSQL/Simple/Transaction.hs b/src/Database/PostgreSQL/Simple/Transaction.hs index 51d42cf..d0aa770 100644 --- a/src/Database/PostgreSQL/Simple/Transaction.hs +++ b/src/Database/PostgreSQL/Simple/Transaction.hs @@ -25,7 +25,6 @@ module Database.PostgreSQL.Simple.Transaction , defaultTransactionMode , defaultIsolationLevel , defaultReadWriteMode --- , Base.autocommit , begin , beginLevel , beginMode