001- Test 1 Check beginTransaction insertion
002- Test 2 Cause an exception and test beginTransaction rollback
003- Caught expected exception at line 35
004- SQLSTATE[HY000]: General error: 12899 OCIStmtExecute: ORA-12899: %s
006- Test 3 Setting ATTR_AUTOCOMMIT to true will commit and end the transaction
007- PDO::ATTR_AUTOCOMMIT: bool(true)
008- Caught expected exception at line %d
009- There is no active transaction
010- Test 4 Setting ATTR_AUTOCOMMIT to false will commit and end the transaction
011- PDO::ATTR_AUTOCOMMIT: bool(false)
012- Caught expected exception at line %d
013- There is no active transaction
014- Test 5 Handle transactions ourselves
015- PDO::ATTR_AUTOCOMMIT: bool(false)
016- Query Results are:
017- data 1
018- data 2
019- data 3
020- data 4
021- data 5
022- data 6
023- Done