}
+/* {{{ proto int sybase_connect([string host [, string user [, string password [, string charset]]]])
+ Open Sybase server connection */
PHP_FUNCTION(sybase_connect)
{
php_sybase_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0);
}
+/* }}} */
+
+/* {{{ proto int sybase_pconnect([string host [, string user [, string password [, string charset]]]])
+ Open persistent Sybase connection */
PHP_FUNCTION(sybase_pconnect)
{
php_sybase_do_connect(INTERNAL_FUNCTION_PARAM_PASSTHRU, 1);
}
+/* }}} */
+
+/* {{{ proto bool sybase_close([int link_id])
+ Close Sybase connection */
PHP_FUNCTION(sybase_close)
{
pval *sybase_link_index = 0;
RETURN_TRUE;
}
+
+/* }}} */
static int exec_cmd(sybase_link *sybase_ptr, char *cmdbuf)
}
+/* {{{ proto bool sybase_select_db(string database [, int link_id])
+ Select Sybase database */
PHP_FUNCTION(sybase_select_db)
{
pval *db,*sybase_link_index;
}
}
+/* }}} */
+
static sybase_result * php_sybase_fetch_result_set (sybase_link *sybase_ptr)
{
}
+/* {{{ proto int sybase_query(string query [, int link_id])
+ Send Sybase query */
PHP_FUNCTION(sybase_query)
{
pval **query, **sybase_link_index=NULL;
ZEND_REGISTER_RESOURCE(return_value, result, le_result);
}
+/* }}} */
+/* {{{ proto bool sybase_free_result(int result)
+ Free result memory */
PHP_FUNCTION(sybase_free_result)
{
pval *sybase_result_index;
RETURN_TRUE;
}
+/* }}} */
+/* {{{ proto int sybase_num_rows(int result)
+ Get number of rows in result */
PHP_FUNCTION(sybase_num_rows)
{
pval *sybase_result_index;
return_value->type = IS_LONG;
}
+/* }}} */
+/* {{{ proto int sybase_num_fields(int result)
+ Get number of fields in result */
PHP_FUNCTION(sybase_num_fields)
{
pval *sybase_result_index;
return_value->type = IS_LONG;
}
+/* }}} */
+/* {{{ proto array sybase_fetch_row(int result)
+ Get row as enumerated array */
PHP_FUNCTION(sybase_fetch_row)
{
pval *sybase_result_index;
result->cur_row++;
}
+/* }}} */
static void php_sybase_fetch_hash(INTERNAL_FUNCTION_PARAMETERS)
{
}
+/* {{{ proto object sybase_fetch_object(int result)
+ Fetch row as object */
PHP_FUNCTION(sybase_fetch_object)
{
php_sybase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU);
}
}
+/* }}} */
+/* {{{ proto array sybase_fetch_array(int result)
+ Fetch row as array */
PHP_FUNCTION(sybase_fetch_array)
{
php_sybase_fetch_hash(INTERNAL_FUNCTION_PARAM_PASSTHRU);
}
+/* }}} */
+
+/* {{{ proto bool sybase_data_seek(int result, int offset)
+ Move internal row pointer */
PHP_FUNCTION(sybase_data_seek)
{
pval *sybase_result_index,*offset;
RETURN_TRUE;
}
+/* }}} */
static char *php_sybase_get_field_name(CS_INT type)
{
}
+/* {{{ proto object sybase_fetch_field(int result [, int offset])
+ Get field information */
PHP_FUNCTION(sybase_fetch_field)
{
pval *sybase_result_index,*offset;
add_property_string(return_value, "type", php_sybase_get_field_name(result->fields[field_offset].type), 1);
}
+/* }}} */
+
+/* {{{ proto bool sybase_field_seek(int result, int offset)
+ Set field offset */
PHP_FUNCTION(sybase_field_seek)
{
pval *sybase_result_index,*offset;
RETURN_TRUE;
}
+/* }}} */
+
+/* {{{ proto string sybase_result(int result, int row, mixed field)
+ Get result data */
PHP_FUNCTION(sybase_result)
{
pval *row, *field, *sybase_result_index;
pval_copy_constructor(return_value);
}
+/* }}} */
+
PHP_FUNCTION(sybase_affected_rows)
{