Changes between Version 9 and Version 10 of support-team/mysql-mysqli-conversion


Ignore:
Timestamp:
Apr 17, 2014, 12:04:56 AM (10 years ago)
Author:
Ross
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • support-team/mysql-mysqli-conversion

    v9 v10  
    7777}}}
    7878=== mysql_fetch_row ===
     79{{{
     80mysql_fetch_row ( resource $result )
     81}}}
     82==== mysqli_fetch_row ====
     83This appears to be a drop in replacement.
     84{{{
     85mysqli_fetch_row ( mysqli_result $result )
     86}}}
    7987=== mysql_insert_id ===
     88{{{
     89mysql_insert_id ([ resource $link_identifier = NULL ] )
     90}}}
     91==== mysqli_insert_id ====
     92This function requires that the mysql $link be supplied.
     93{{{
     94mysqli_insert_id ( mysqli $link )
     95}}}
     96
     97It will need to be modified in at least one location `/ui/sbin/transfer-red-items-to-new-host:171`
     98
    8099=== mysql_num_rows ===
    81100=== mysql_query ===