Home
last modified time | relevance | path

Searched refs:col2 (Results 1 – 18 of 18) sorted by last modified time

/PHP-5.6/ext/pdo/tests/
H A Dpdo_016.phpt73 $stmt4->bindColumn('idx', $col2);
77 var_dump(array($col2=>$col1));
H A Dpdo_016a.phpt73 $stmt4->bindColumn('idx', $col2);
77 var_dump(array($col2=>$col1));
/PHP-5.6/ext/oci8/tests/
H A Dfetch_object.phpt18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')",
20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')",
88 string(19) "1st row col2 string"
96 string(19) "2nd row col2 string"
104 string(19) "3rd row col2 string"
110 1st row col2 string
113 2nd row col2 string
116 3rd row col2 string
H A Dfetch_object_1.phpt18 "insert into fetch_object_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_tab values (456, '2nd row col2 string', '2 more text')",
20 "insert into fetch_object_tab values (789, '3rd row col2 string', '3 more text')",
88 string(19) "1st row col2 string"
96 string(19) "2nd row col2 string"
104 string(19) "3rd row col2 string"
110 1st row col2 string
113 2nd row col2 string
116 3rd row col2 string
H A Dfetch_object_2.phpt17 "create table fetch_object_2_tab (col1 number, col2 CLOB, col3 varchar2(15))",
18 "insert into fetch_object_2_tab values (123, '1st row col2 string', '1 more text')",
19 "insert into fetch_object_2_tab values (456, '2nd row col2 string', NULL)",
20 "insert into fetch_object_2_tab values (789, '3rd row col2 string', '3 more text')",
105 1st row col2 string
108 2nd row col2 string
111 3rd row col2 string
H A Dbug36403.phpt16 "create table bug36403_tab (c1 number, col2 number, column3 number, col4 number)"
H A Dbug42496_1.phpt33 oci_define_by_name($s, "C2", $col2);
/PHP-5.6/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_type_juggling.phpt32 if (!mysqli_stmt_prepare($stmt, "INSERT INTO test(col1, col2) VALUES (?, ?)")) {
57 if (!$res = mysqli_query($link, "SELECT col1, col2 FROM test")) {
67 if (($row['col1'] != $bind_value1) || ($row['col2'] != $bind_value1)) {
68 printf("[%03d + 11] Expecting col1 = %s, col2 = %s got col1 = %s, col2 = %s - [%d] %s\n",
70 $row['col1'], $row['col2'],
76 if (($row['col1'] != $bind_value1) || ($row['col2'] != $bind_value2)) {
77 printf("[%03d + 12] Expecting col1 = %s, col2 = %s got col1 = %s, col2 = %s - [%d] %s\n",
79 $row['col1'], $row['col2'],
101 1) col1 INT, col2 CHAR(1)
107 col1 INT, col2 INT
[all …]
H A Dmysqli_fetch_field_flags.phpt204 $column_def = array('col1 CHAR(1)', 'col2 CHAR(2)','INDEX idx_col1_col2(col1, col2)');
205 $expected_flags = array('col1' => 'MULTIPLE_KEY PART_KEY', 'col2' => 'PART_KEY');
H A D002.phpt19 $rc = mysqli_query($link,"CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
34 …$stmt = mysqli_prepare($link, "SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, col10,…
H A D019.phpt18 $rc = mysqli_query($link,"CREATE TABLE insert_read(col1 tinyint, col2 smallint,
41 …if (!$stmt = mysqli_prepare($link, "SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, c…
H A D048.phpt18 $mysql->query("CREATE TABLE test_fetch_null(col1 tinyint, col2 smallint,
28 …$stmt = $mysql->prepare("SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, col10, col11…
H A Dbug32405.phpt24 $stmt->bind_result($col1, $col2);
26 var_dump($col1, $col2);
/PHP-5.6/ext/mysql/tests/
H A D002.phpt20 var_dump(mysql_query('CREATE TABLE test(col1 int PRIMARY KEY, col2 varchar(50), col3 char(5))'));
22 var_dump(mysql_query("INSERT INTO test(col1, col2, col3) VALUES(1, 'foo', 'bar'),(2, 'foo', 'bar')"…
24 var_dump($res = mysql_query('SELECT col1, col2, col3 FROM test ORDER BY col1 ASC'));
49 [%u|b%"col2"]=>
57 [%u|b%"col2"]=>
/PHP-5.6/ext/gd/tests/
H A Dimagefilledpolygon_basic.phpt51 $col2 = imagecolorat($image_in, 15, 15);
56 $color2 = imagecolorsforindex($image_in, $col2);
H A Dimagedashedline_basic.phpt42 $col2 = imagecolorat($image, 5, 5);
45 $color2 = imagecolorsforindex($image, $col2);
H A Dimagepolygon_basic.phpt44 $col2 = imagecolorat($image, 100, 100);
46 $color2 = imagecolorsforindex($image, $col2);
/PHP-5.6/ext/gd/libgd/
H A Dgd_crop.c28 static int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold);
348 static int gdColorMatch(gdImagePtr im, int col1, int col2, float threshold) in gdColorMatch() argument
350 const int dr = gdImageRed(im, col1) - gdImageRed(im, col2); in gdColorMatch()
351 const int dg = gdImageGreen(im, col1) - gdImageGreen(im, col2); in gdColorMatch()
352 const int db = gdImageBlue(im, col1) - gdImageBlue(im, col2); in gdColorMatch()
353 const int da = gdImageAlpha(im, col1) - gdImageAlpha(im, col2); in gdColorMatch()
367 static int colors_equal (const int col1, const in col2)

Completed in 36 milliseconds