transaction database with php

Solutions on MaxInterview for transaction database with php by the best coders in the world

showing results for - "transaction database with php"
Jonas
07 Jan 2017
1
2<?php
3try {
4  $dbh = new PDO('odbc:SAMPLE''db2inst1''ibmdb2',
5      array(PDO::ATTR_PERSISTENT => true));
6  echo "Connecté\n";
7} catch (Exception $e) {
8  die("Impossible de se connecter : " . $e->getMessage());
9}
10
11try {  
12  $dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
13
14  $dbh->beginTransaction();
15  $dbh->exec("insert into staff (id, first, last) values (23, 'Joe', 'Bloggs')");
16  $dbh->exec("insert into salarychange (id, amount, changedate) 
17      values (23, 50000, NOW())");
18  $dbh->commit();
19
20} catch (Exception $e) {
21  $dbh->rollBack();
22  echo "Failed: " . $e->getMessage();
23}
24?>
25
26