Commit 5be507f9 authored by Josh Campbell's avatar Josh Campbell

Added numRows (LIMIT) support to the delete method

parent 94506230
...@@ -139,7 +139,7 @@ class MysqliDB { ...@@ -139,7 +139,7 @@ class MysqliDB {
* A convenient SELECT * function. * A convenient SELECT * function.
* *
* @param string $tableName The name of the database table to work with. * @param string $tableName The name of the database table to work with.
* @param int $numRows The number of rows total to return. * @param integer $numRows The number of rows total to return.
* @return array Contains the returned rows from the select query. * @return array Contains the returned rows from the select query.
*/ */
public function get($tableName, $numRows = NULL) public function get($tableName, $numRows = NULL)
...@@ -194,12 +194,13 @@ class MysqliDB { ...@@ -194,12 +194,13 @@ class MysqliDB {
* Delete query. Call the "where" method first. * Delete query. Call the "where" method first.
* *
* @param string $tableName The name of the database table to work with. * @param string $tableName The name of the database table to work with.
* @param integer $numRows The number of rows to delete.
* @return boolean Indicates success. 0 or 1. * @return boolean Indicates success. 0 or 1.
*/ */
public function delete($tableName) { public function delete($tableName, $numRows = NULL) {
$this->_query = "DELETE FROM $tableName"; $this->_query = "DELETE FROM $tableName";
$stmt = $this->_buildQuery(); $stmt = $this->_buildQuery($numRows);
$stmt->execute(); $stmt->execute();
$this->reset(); $this->reset();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment