Home
last modified time | relevance | path

Searched refs:engine (Results 76 – 100 of 122) sorted by path

12345

/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_type_juggling.phpt13 …function bind_twice($link, $engine, $sql_type1, $sql_type2, $bind_type1, $bind_type2, $bind_value1…
21 $sql = sprintf("CREATE TABLE test(col1 %s, col2 %s) ENGINE=%s", $sql_type1, $sql_type2, $engine);
87 bind_twice($link, $engine, 'CHAR(1)', 'CHAR(1)', 's', 's', 'a', 'b', 10);
88 bind_twice($link, $engine, 'INT', 'INT', 'i', 'i', 1, 2, 20);
89 bind_twice($link, $engine, 'FLOAT', 'FLOAT', 'd', 'd', 1.01, 1.02, 30);
92 bind_twice($link, $engine, 'CHAR(1)', 'CHAR(1)', 's', 's', 1, 2, 40);
94 bind_twice($link, $engine, 'INT', 'INT', 'i', 'i', '1', '2', 50);
96 bind_twice($link, $engine, 'FLOAT', 'FLOAT', 'd', 'd', '1.01', '1.02', 60);
117 bind_twice($link, $engine, 'INT', 'CHAR(1)', 'i', 's', 1, 'a', 70);
H A Dmysqli_stmt_bind_result.phpt163 func_mysqli_stmt_bind_result($link, $engine, "i", "TINYINT", -11, 20);
164 func_mysqli_stmt_bind_result($link, $engine, "i", "TINYINT", NULL, 40);
168 func_mysqli_stmt_bind_result($link, $engine, "i", "BOOL", 1, 100);
169 func_mysqli_stmt_bind_result($link, $engine, "i", "BOOL", NULL, 120);
170 func_mysqli_stmt_bind_result($link, $engine, "i", "BOOLEAN", 0, 140);
199 func_mysqli_stmt_bind_result($link, $engine, "i", "BIGINT", -1, 1780);
207 func_mysqli_stmt_bind_result($link, $engine, "d", "FLOAT", NULL, 620);
228 func_mysqli_stmt_bind_result($link, $engine, "s", "DATE", NULL, 880);
238 func_mysqli_stmt_bind_result($link, $engine, "s", "TIME", NULL, 1020);
243 func_mysqli_stmt_bind_result($link, $engine, "s", "YEAR", NULL, 1080);
[all …]
H A Dmysqli_stmt_bind_result_bit.phpt47 …bit_value BIT(%d) NOT NULL, bit_null BIT(%d) DEFAULT NULL) ENGINE = %s", $bits, $bits, $engine))) {
H A Dmysqli_stmt_bind_result_format.phpt15 function create_table($link, $column, $min, $max, $engine, $offset) {
25 $column, $engine);
163 $expected = create_table($link, 'FLOAT', -10000, 10000, $engine, 90);
168 $expected = create_table($link, 'FLOAT UNSIGNED', 0, 10000, $engine, 110);
173 $expected = create_table($link, 'TINYINT', -128, 127, $engine, 130);
178 $expected = create_table($link, 'SMALLINT UNSIGNED', 0, 65535, $engine, 150);
183 $expected = create_table($link, 'MEDIUMINT', 0, 8388607, $engine, 170);
188 $expected = create_table($link, 'INT UNSIGNED', 0, 1000, $engine, 190);
193 $expected = create_table($link, 'BIGINT', -1000, 1000, $engine, 210);
198 $expected = create_table($link, 'DECIMAL(5,0)', -1000, 1000, $engine, 230);
H A Dmysqli_stmt_datatype_change.phpt26 $c1->query("create table type_change(a int, b char(10)) ENGINE = " . $engine);
H A Dmysqli_stmt_fetch_bit.phpt30 …ery($link, $sql = sprintf('CREATE TABLE test(id INT, label BIT(%d)) ENGINE="%s"', $bits, $engine)))
H A Dmysqli_stmt_fetch_geom.phpt18 function func_mysqli_stmt_fetch_geom($link, $engine, $sql_type, $bind_value, $offset) {
25 …sprintf("CREATE TABLE test(id INT, label %s, PRIMARY KEY(id)) ENGINE = %s", $sql_type, $engine))) {
124 func_mysqli_stmt_fetch_geom($link, $engine, "GEOMETRY", "GeomFromText('POINT(2 2)')", 20);
125 func_mysqli_stmt_fetch_geom($link, $engine, "POINT", "GeomFromText('POINT(1 1)')", 40);
126 …func_mysqli_stmt_fetch_geom($link, $engine, "LINESTRING", "GeomFromText('LINESTRING(0 0,1 1,2 2)')…
127 …func_mysqli_stmt_fetch_geom($link, $engine, "POLYGON", "GeomFromText('POLYGON((0 0,10 0,10 10,0 10…
128 …func_mysqli_stmt_fetch_geom($link, $engine, "MULTIPOINT", "GeomFromText('MULTIPOINT(1 1, 2 2)')", …
129 …func_mysqli_stmt_fetch_geom($link, $engine, "MULTILINESTRING", "GeomFromText('MULTILINESTRING((0 0…
130 …func_mysqli_stmt_fetch_geom($link, $engine, "MULTIPOLYGON", "GeomFromText('MULTIPOLYGON(((0 0,10 0…
131 …func_mysqli_stmt_fetch_geom($link, $engine, "GEOMETRYCOLLECTION", "GeomFromText('GEOMETRYCOLLECTIO…
H A Dmysqli_stmt_get_result_bit.phpt51 …, bit_value BIT(%d) NOT NULL, bit_null BIT(%d) DEFAULT NULL) ENGINE="%s"', $bits, $bits, $engine)))
H A Dmysqli_stmt_get_result_geom.phpt21 function func_mysqli_stmt_get_result_geom($link, $engine, $sql_type, $bind_value, $offset) {
28 …sprintf("CREATE TABLE test(id INT, label %s, PRIMARY KEY(id)) ENGINE = %s", $sql_type, $engine))) {
126 func_mysqli_stmt_get_result_geom($link, $engine, "GEOMETRY", "GeomFromText('POINT(2 2)')", 20);
127 func_mysqli_stmt_get_result_geom($link, $engine, "POINT", "GeomFromText('POINT(1 1)')", 40);
128 …func_mysqli_stmt_get_result_geom($link, $engine, "LINESTRING", "GeomFromText('LINESTRING(0 0,1 1,2…
129 …func_mysqli_stmt_get_result_geom($link, $engine, "POLYGON", "GeomFromText('POLYGON((0 0,10 0,10 10…
130 …func_mysqli_stmt_get_result_geom($link, $engine, "MULTIPOINT", "GeomFromText('MULTIPOINT(1 1, 2 2)…
131 …func_mysqli_stmt_get_result_geom($link, $engine, "MULTILINESTRING", "GeomFromText('MULTILINESTRING…
132 …func_mysqli_stmt_get_result_geom($link, $engine, "MULTIPOLYGON", "GeomFromText('MULTIPOLYGON(((0 0…
133 …func_mysqli_stmt_get_result_geom($link, $engine, "GEOMETRYCOLLECTION", "GeomFromText('GEOMETRYCOLL…
H A Dmysqli_stmt_get_result_non_select.phpt39 foreach ($engines as $k => $engine)
40 foreach ($engine as $k => $v)
H A Dmysqli_stmt_get_result_types.phpt121 func_mysqli_stmt_get_result($link, $engine, "i", "TINYINT", -11, 20);
122 func_mysqli_stmt_get_result($link, $engine, "i", "TINYINT", NULL, 40);
126 func_mysqli_stmt_get_result($link, $engine, "i", "BOOL", 1, 100);
127 func_mysqli_stmt_get_result($link, $engine, "i", "BOOL", NULL, 120);
128 func_mysqli_stmt_get_result($link, $engine, "i", "BOOLEAN", 0, 140);
157 func_mysqli_stmt_get_result($link, $engine, "i", "BIGINT", -1, 1780);
165 func_mysqli_stmt_get_result($link, $engine, "d", "FLOAT", NULL, 620);
186 func_mysqli_stmt_get_result($link, $engine, "s", "DATE", NULL, 880);
196 func_mysqli_stmt_get_result($link, $engine, "s", "TIME", NULL, 1020);
201 func_mysqli_stmt_get_result($link, $engine, "s", "YEAR", NULL, 1080);
[all …]
H A Dmysqli_stmt_send_long_data.phpt33 …ABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB, PRIMARY KEY(id)) ENGINE = %s", $engine)))
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt22 …ABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB, PRIMARY KEY(id)) ENGINE = %s", $engine)))
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt22 …ABLE test(id INT NOT NULL AUTO_INCREMENT, label LONGBLOB, PRIMARY KEY(id)) ENGINE = %s", $engine)))
H A Dtable.inc20 …($link, 'CREATE TABLE test(id INT DEFAULT 0, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $engine)) {
/PHP-5.5/ext/pcre/pcrelib/
H A DREADME777 16/32-bit features of the DFA matching engine.
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt4573 its pattern matching engine. If any of these are encountered by PCRE,
8580 PCRE (and JIT) is a recursive, depth-first engine, so it needs a stack
9653 then PCRE was never intended to be a POSIX engine. The following table
9939 expression engine. The C++ wrapper defines an auxiliary class,
/PHP-5.5/ext/pdo_mysql/tests/
H A DREADME9 PDO_MYSQL_TEST_ENGINE - storage engine to use
H A Dmysql_pdo_test.inc35 static function createTestTable($db, $engine = null) {
36 if (!$engine)
37 $engine = PDO_MYSQL_TEST_ENGINE;
40 $db->exec('CREATE TABLE test(id INT, label CHAR(1), PRIMARY KEY(id)) ENGINE=' . $engine);
152 if (isset($row['engine']) && isset($row['support'])) {
153 if ('InnoDB' == $row['engine'] && ('YES' == $row['support'] || 'DEFAULT' == $row['support']))
H A Dpdo_mysql_attr_autocommit.phpt54 // nice, we have a transactional engine to play with
H A Dpdo_mysql_begintransaction.phpt10 die("skip Transactional engine not found");
148 // TODO: What about an engine that does not support transactions?
H A Dpdo_mysql_commit.phpt10 die("skip Transactional engine not found");
54 // Ok, lets check MyISAM resp. any other non-transactional engine
H A Dpdo_mysql_get_attribute.phpt10 die("skip Transactional engine not found");
H A Dpdo_mysql_interface.phpt10 die("skip Transactional engine not found");
H A Dpdo_mysql_rollback.phpt10 die("skip Transactional engine not found");

Completed in 62 milliseconds

12345