summaryrefslogtreecommitdiff
path: root/vendor
diff options
context:
space:
mode:
Diffstat (limited to 'vendor')
-rw-r--r--vendor/PicoDb/Database.php6
-rw-r--r--vendor/PicoDb/Table.php8
2 files changed, 12 insertions, 2 deletions
diff --git a/vendor/PicoDb/Database.php b/vendor/PicoDb/Database.php
index 4d7b7031..5d0beb8a 100644
--- a/vendor/PicoDb/Database.php
+++ b/vendor/PicoDb/Database.php
@@ -78,6 +78,12 @@ class Database
}
+ public function closeConnection()
+ {
+ $this->pdo = null;
+ }
+
+
public function escapeIdentifier($value)
{
return $this->pdo->escapeIdentifier($value);
diff --git a/vendor/PicoDb/Table.php b/vendor/PicoDb/Table.php
index b333feb4..cc637434 100644
--- a/vendor/PicoDb/Table.php
+++ b/vendor/PicoDb/Table.php
@@ -44,7 +44,11 @@ class Table
}
}
-
+ /**
+ * Update
+ *
+ * Note: Do not use `rowCount()` the behaviour is different across drivers
+ */
public function update(array $data)
{
$columns = array();
@@ -70,7 +74,7 @@ class Table
$result = $this->db->execute($sql, $values);
- return $result !== false && $result->rowCount() > 0;
+ return $result !== false;
}