Posted by Marc on 11/12/07 10:21
yes, that's almost what i am looking for. But this is, i think, aimed at
php4 to php5 compatebility and requires the mysqli compiled in.
http://mysql2i.googlecode.com/svn/trunk/mysql2i.php
....
if(!extension_loaded("mysqli")) {
trigger_error("You must have the MySQLi extension.", E_USER_ERROR);
}...I need something i can include that gives me access to functions
like:
mysqli_enable_rpl_parse
mysqli_errno
mysqli_error
mysqli_escape_string
mysqli_execute
mysqli_fetch_array
mysqli_fetch_assoc
mysqli_fetch_field_direct
mysqli_fetch_field
mysqli_fetch_fields
mysqli_fetch_lengths
mysqli_fetch_object
mysqli_fetch_row
mysqli_fetch
mysqli_field_count
mysqli_field_seek
mysqli_field_tell
mysqli_free_result
mysqli_get_charset
mysqli_get_client_info
mysqli_get_client_version
mysqli_get_host_info
mysqli_get_metadata
mysqli_get_proto_info
mysqli_get_server_info
mysqli_get_server_version
mysqli_get_warnings
mysqli_info
mysqli_init
mysqli_insert_id
mysqli_kill
mysqli_master_query
mysqli_more_results
mysqli_multi_query
mysqli_next_result
mysqli_num_fields
mysqli_num_rows
mysqli_options
mysqli_param_count
"Jonas Werres" <jonas@example.org> wrote in message
news:473723f2$0$16655$9b4e6d93@newsspool3.arcor-online.net...
> Marc schrieb:
>> No i do not want to recompile php, just some library that i can include
>> in the existing website.
>
> Only the othoer way around: http://www.coggeshall.org/oss/mysql2i/
[Back to original message]
|