From 42f5b96640a2fe6986849f96228a80e294cf353e Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Mon, 17 Jun 2019 15:57:54 +0000
Subject: [PATCH] Do not output null if no vehicle number is present in GTFS
---
lib/database.php | 14 ++++++++++++++
1 files changed, 14 insertions(+), 0 deletions(-)
diff --git a/lib/database.php b/lib/database.php
index 48ad047..2c86a7b 100644
--- a/lib/database.php
+++ b/lib/database.php
@@ -20,6 +20,18 @@
$this->addStatement = $this->pdo->prepare('INSERT OR REPLACE INTO vehicles (id, num, weight) VALUES (?, ?, ?)');
}
+ public function beginTransaction() {
+ $this->pdo->beginTransaction();
+ }
+
+ public function commit() {
+ $this->pdo->commit();
+ }
+
+ public function rollback() {
+ $this->pdo->rollback();
+ }
+
public function getById($id) {
$this->getByIdStatement->execute([$id]);
return $this->getByIdStatement->fetch();
@@ -39,9 +51,11 @@
}
public function addMapping($mapping) {
+ $this->beginTransaction();
$weight = count($mapping);
foreach($mapping as $id => $vehicle) {
$this->add($id, (int)substr($vehicle['num'], 2), $weight);
}
+ $this->commit();
}
}
--
Gitblit v1.9.1