-
1.5.5 - September 20, 2018
- Allow to use scalar for single value in
query()
andexecute()
- Fix
prepare()
still used instead ofquery()
- Store new result with
execute()
- Allow to use scalar for single value in
-
1.5.4 - September 11, 2018
- Fix
fetch()
andfetchAll()
stdClass
issue. - Use
query()
instead ofprepared()
if non-prepared for efficiency - Allow chaining for
freeResult()
andcloseStmt()
- Fix
-
1.5.3 - April 22, 2018
- Add support for entering constructor parameters for fetching objects in a class
multiQuery()
is nowatomicQuery()
to avoid confusion over a multiple statements
-
1.5.2 - April 7, 2018
affectedRowsInfo()
is nowinfo()
-
1.5.1 - April 6, 2018
- Add
fetchAll()
fetch mode 'groupObj'
- Add
-
1.5.0 - April 3, 2018
transaction()
is nowmulti_query()
andtransactionCallback()
is nowtransaction()
-
1.4.6 - March 29, 2018
- Add composer and return type for
$this
- Add composer and return type for
-
1.4.5 - March 28, 2018
- Remove
setRowsMatched()
, in favor of the new getter methodrowsMatched()
- Remove
-
1.4.4 - March 27, 2018
- Enforce return type declaration on methods when possible
- Switch to more consistent if style
-
1.4.3 - March 25, 2018
- Fix off-by-one error to close stmt with
transaction()
on prepare once, execute multiple
- Fix off-by-one error to close stmt with
-
1.4.2 - March 23, 2018
- Fix
transaction()
on prepare once, execute multiple
- Fix
-
1.4.1 - March 20, 2018
- Add
setRowsMatched()
to use rows matched, instead of rows changed on UPDATE query
- Add
-
1.4.0 - March 13, 2018
- Add
execute()
,whereIn()
,numRows()
,transactionCallback()
,freeResult()
,closeStmt()
- Default charset is now 'utf8mb4' instead of 'utf8'
- Don't automatically free result anymore on
fetchAll()
- Add ability to fetch into class
- Add
-
1.3.2 - January 25, 2018
- Add
affectedRowsInfo()
and free fetch results
- Add
-
1.3.1 - January 24, 2018
- Fix
fetchAll()
typeskeyPairArr
andgroup
- Fix
-
1.3.0 - January 24, 2018
- All queries now use a global
query()
functions affectedRows()
andinsertId()
added as separate functions instead of returned in object due to switching toquery()
- All queries now use a global
-
1.2.0 - January 18, 2018
- Select statements now must be chained with
fetch()
for one row at a time andfetchAll()
for all results
- Select statements now must be chained with
-
1.1.2 - January 15, 2018
- Fix return on
delete()
- Fix return on
-
1.1.1 - January 11, 2018
- Fix transactions
-
1.1.0 - January 3, 2018
- Add new fetch modes for convenience: 'scalar', 'col', 'keyPair', 'keyPairArr', 'group', 'groupCol'
-
1.0.0 - December 28, 2017
- Initial Release