mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
use newznab\db\Settings;
|
|
|
|
try {
|
|
// Create the first database class instance (which will initialize the PDO connection)
|
|
$db = new Settings();
|
|
|
|
// For debug set the error mode
|
|
$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
|
|
|
// Start the transaction
|
|
if( $db->beginTransaction() )
|
|
{
|
|
// Loop 20 times
|
|
for($i=1 ; $i<=20 ; $i++ )
|
|
{
|
|
// Header
|
|
echo "--[ Insert run: {$i} ]----------------------------------------". PHP_EOL;
|
|
|
|
// Create a new db class instance (multiple can exist)
|
|
$newDb = new Settings();
|
|
|
|
// Check that there is a new db class instance, but no new PDO instance
|
|
var_dump( $newDb, $newDb->getPDO() );
|
|
|
|
// Insert some data
|
|
$sql = sprintf("
|
|
INSERT INTO `testdata`
|
|
(`id` ,`field1` ,`field2` ,`field3` ,`field4`)
|
|
VALUES
|
|
('%s', '%s', '%s', '%s', '%s')", $i, $i, $i, $i, $i
|
|
);
|
|
$newDb->exec( $sql );
|
|
|
|
// Check for inserted data
|
|
var_dump( $newDb->query( sprintf( "SELECT * FROM `testdata` WHERE id = %d", $i ) ) );
|
|
}
|
|
|
|
// Now rollback using the last db class instance
|
|
var_dump( $newDb->rollback() );
|
|
}
|
|
} catch(PDOException $e) {
|
|
var_dump( $e );
|
|
} |