Запись банковских логов в sqlite.
This commit is contained in:
parent
10f3bab59d
commit
625793c0f5
@ -4,6 +4,7 @@
|
|||||||
* Date: 03.07.2020
|
* Date: 03.07.2020
|
||||||
* Time: 07:24
|
* Time: 07:24
|
||||||
*/
|
*/
|
||||||
|
|
||||||
namespace Battles;
|
namespace Battles;
|
||||||
|
|
||||||
use Config;
|
use Config;
|
||||||
@ -91,6 +92,7 @@ class Bank
|
|||||||
}
|
}
|
||||||
|
|
||||||
$db = new SQLite3('databases/logs.sqlite');
|
$db = new SQLite3('databases/logs.sqlite');
|
||||||
|
$db->exec("CREATE TABLE IF NOT EXISTS bank_logs (id integer constraint bank_logs_pk primary key autoincrement, sender_id integer, receiver_id integer, amount integer, type text, text text)");
|
||||||
$logLine = $db->prepare("INSERT INTO bank_logs (sender_id, receiver_id, amount, type, text) VALUES (?, ?, ?, ?, ?)");
|
$logLine = $db->prepare("INSERT INTO bank_logs (sender_id, receiver_id, amount, type, text) VALUES (?, ?, ?, ?, ?)");
|
||||||
$logLine->bindParam(1, $senderId, SQLITE3_INTEGER);
|
$logLine->bindParam(1, $senderId, SQLITE3_INTEGER);
|
||||||
$logLine->bindParam(2, $receiverId, SQLITE3_INTEGER);
|
$logLine->bindParam(2, $receiverId, SQLITE3_INTEGER);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user