mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
more 64-bit fixes
This commit is contained in:
parent
de50d0275c
commit
bf69d23a21
2 changed files with 3 additions and 3 deletions
|
@ -1216,7 +1216,7 @@ PHP_FUNCTION(oci_execute)
|
|||
{
|
||||
zval *z_statement;
|
||||
php_oci_statement *statement;
|
||||
ub4 mode = OCI_COMMIT_ON_SUCCESS;
|
||||
long mode = OCI_COMMIT_ON_SUCCESS;
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &z_statement, &mode) == FAILURE) {
|
||||
return;
|
||||
|
|
|
@ -254,7 +254,7 @@ int php_oci_lob_read (php_oci_descriptor *descriptor, long read_length, long off
|
|||
|
||||
/* {{{ php_oci_lob_write()
|
||||
Write data to the LOB */
|
||||
int php_oci_lob_write (php_oci_descriptor *descriptor, ub4 offset, char *data, long data_len, ub4 *bytes_written TSRMLS_DC)
|
||||
int php_oci_lob_write (php_oci_descriptor *descriptor, ub4 offset, char *data, int data_len, ub4 *bytes_written TSRMLS_DC)
|
||||
{
|
||||
OCILobLocator *lob = (OCILobLocator *) descriptor->descriptor;
|
||||
php_oci_connection *connection = (php_oci_connection *) descriptor->connection;
|
||||
|
@ -647,7 +647,7 @@ int php_oci_lob_is_equal (php_oci_descriptor *descriptor_first, php_oci_descript
|
|||
|
||||
/* {{{ php_oci_lob_write_tmp()
|
||||
Create temporary LOB and write data to it */
|
||||
int php_oci_lob_write_tmp (php_oci_descriptor *descriptor, ub1 type, char *data, long data_len TSRMLS_DC)
|
||||
int php_oci_lob_write_tmp (php_oci_descriptor *descriptor, ub1 type, char *data, int data_len TSRMLS_DC)
|
||||
{
|
||||
php_oci_connection *connection = descriptor->connection;
|
||||
OCILobLocator *lob = descriptor->descriptor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue