$format
$format : string
Storage format
Debug sqlite storage class
setFormat(string $format) : \Pop\Debug\Storage\AbstractStorage
Set the storage format
string | $format |
save(string $id, mixed $value, integer $ttl = null) : \Pop\Debug\Storage\Sqlite
Save debug data
string | $id | |
mixed | $value | |
integer | $ttl |
delete(string $id) : \Pop\Debug\Storage\Sqlite
Delete debug data
string | $id |
clear() : \Pop\Debug\Storage\Sqlite
Clear all debug data
setDb(string $db) : \Pop\Debug\Storage\Sqlite
Set the current debug db file.
string | $db |
setTable(string $table) : \Pop\Debug\Storage\Sqlite
Set the debug db table
string | $table |
prepare(string $sql) : \Pop\Debug\Storage\Sqlite
Prepare a SQL query
string | $sql |
bindParams(array $params) : \Pop\Debug\Storage\Sqlite
Bind parameters to for a prepared SQL query
array | $params |