forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexecute.phpt
74 lines (63 loc) · 1.5 KB
/
execute.phpt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
--TEST--
PDO_Firebird: prepare/execute/binding
--EXTENSIONS--
pdo_firebird
--SKIPIF--
<?php require('skipif.inc'); ?>
--XLEAK--
A bug in firebird causes a memory leak when calling `isc_attach_database()`.
See https://github.com/FirebirdSQL/firebird/issues/7849
--FILE--
<?php
require("testdb.inc");
$dbh = getDbConnection();
var_dump($dbh->getAttribute(PDO::ATTR_CONNECTION_STATUS));
$dbh->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
$dbh->setAttribute(PDO::FB_ATTR_TIMESTAMP_FORMAT, '%Y-%m-%d %H:%M:%S');
$dbh->exec("CREATE TABLE test_execute (id SMALLINT NOT NULL PRIMARY KEY, text VARCHAR(32),
datetime TIMESTAMP DEFAULT '2000-02-12' NOT NULL)");
$dbh->exec("INSERT INTO test_execute (id,text) VALUES (1,'bla')");
$s = $dbh->prepare("SELECT * FROM test_execute WHERE id=? FOR UPDATE");
$id = 0;
$s->bindParam(1,$id);
$var = null;
$s->bindColumn("TEXT",$var);
$id = 1;
$s->execute();
$s->setAttribute(PDO::ATTR_CURSOR_NAME, "c");
var_dump($id);
var_dump($s->fetch());
var_dump($var);
var_dump($dbh->exec("UPDATE test_execute SET id=2 WHERE CURRENT OF c"));
var_dump($s->fetch());
unset($s);
unset($dbh);
echo "done\n";
?>
--CLEAN--
<?php
require 'testdb.inc';
$dbh = getDbConnection();
@$dbh->exec('DROP TABLE test_execute');
unset($dbh);
--EXPECT--
bool(true)
int(1)
array(6) {
["ID"]=>
int(1)
[0]=>
int(1)
["TEXT"]=>
string(3) "bla"
[1]=>
string(3) "bla"
["DATETIME"]=>
string(19) "2000-02-12 00:00:00"
[2]=>
string(19) "2000-02-12 00:00:00"
}
string(3) "bla"
int(1)
bool(false)
done