Searched refs:ids (Results 1 – 16 of 16) sorted by relevance
/PHP-5.4/ext/pgsql/tests/ |
H A D | 14pg_update.phpt | 16 $ids = array('num'=>'1234'); 18 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n"; 19 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
|
H A D | 14pg_update_9.phpt | 18 $ids = array('num'=>'1234'); 20 pg_update($db, $table_name, $fields, $ids) or print "Error in test 1\n"; 21 echo pg_update($db, $table_name, $fields, $ids, PGSQL_DML_STRING)."\n";
|
H A D | 13pg_select.phpt | 16 $ids = array('num'=>'1234'); 18 $res = pg_select($db, $table_name, $ids) or print "Error\n"; 20 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING)."\n";
|
H A D | 13pg_select_9.phpt | 18 $ids = array('num'=>'1234'); 20 $res = pg_select($db, $table_name, $ids) or print "Error\n"; 22 echo pg_select($db, $table_name, $ids, PGSQL_DML_STRING)."\n";
|
H A D | 15pg_delete.phpt | 14 $ids = array('num'=>'1234'); 15 if (!pg_delete($db, $table_name, $ids)) {
|
H A D | 80_bug39971.phpt | 22 $ids = array('id' => 1); 23 pg_update($dbh, 'php_test', $values, $ids);
|
/PHP-5.4/ext/pgsql/ |
H A D | README | 207 bool pg_update(resource db, string table, array fields, array ids[, bool convert[, bool async]]) 208 Update table using values (field=>value) and ids (id=>value) 211 bool pg_delete(resource db, string table, array ids[, bool convert[, bool async]]) 212 Delete records has ids (id=>value) 215 array pg_select(resource db, string table, array ids[, bool convert]) 216 Select records that has ids (id=>value)
|
H A D | php_pgsql.h | 204 PHP_PGSQL_API int php_pgsql_update(PGconn *pg_link, const char *table, zval *values, zval *ids, ulo… 205 PHP_PGSQL_API int php_pgsql_delete(PGconn *pg_link, const char *table, zval *ids, ulong opt, char *… 206 PHP_PGSQL_API int php_pgsql_select(PGconn *pg_link, const char *table, zval *ids, zval *ret_array, …
|
H A D | pgsql.c | 545 ZEND_ARG_INFO(0, ids) 552 ZEND_ARG_INFO(0, ids) 559 ZEND_ARG_INFO(0, ids) 6420 zval *pgsql_link, *values, *ids; local 6428 &pgsql_link, &table, &table_len, &values, &ids, &option) == FAILURE) { 6441 if (php_pgsql_update(pg_link, table, values, ids, option, &sql TSRMLS_CC) == FAILURE) { 6512 zval *pgsql_link, *ids; local 6520 &pgsql_link, &table, &table_len, &ids, &option) == FAILURE) { 6533 if (php_pgsql_delete(pg_link, table, ids, option, &sql TSRMLS_CC) == FAILURE) { 6650 zval *pgsql_link, *ids; local [all …]
|
/PHP-5.4/ext/mysqli/tests/ |
H A D | mysqli_pconn_twice.phpt | 26 /* it is undefined which pooled connection we get - thread ids may differ */ 45 /* it is undefined which pooled connection we get - thread ids may differ */
|
H A D | mysqli_pconn_kill.phpt | 23 // get the thread ids of the two connections...
|
/PHP-5.4/ext/oci8/tests/ |
H A D | drcp_newconnect.phpt | 14 // Verify they are different by comparing the resource ids
|
/PHP-5.4/ |
H A D | UPGRADING | 44 do not want extra entropy for your session ids, add:
|
H A D | php.ini-development | 1469 ; Check HTTP Referer to invalidate externally stored URLs containing ids. 1509 ; Select a hash function for use in generating session ids.
|
H A D | php.ini-production | 1469 ; Check HTTP Referer to invalidate externally stored URLs containing ids. 1509 ; Select a hash function for use in generating session ids.
|
H A D | INSTALL | 824 different PHP-enabled pages under different user-ids.
|
Completed in 58 milliseconds