Changes between Version 5 and Version 6 of support-team/mysql-mysqli-conversion


Ignore:
Timestamp:
Apr 16, 2014, 11:39:08 PM (10 years ago)
Author:
Ross
Comment:

--

Legend:

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

    v5 v6  
    6464=== mysql_num_rows ===
    6565=== mysql_query ===
     66This function can and in some places in red '''does''' use the construction $query = mysql_query($sql).
     67{{{
     68mysql_query ( string $query [, resource $link_identifier = NULL ] )
     69}}}
     70==== mysqli_query ====
     71It appears that using the procedural style of this function we will need to ensure that the database connection is supplied to the function. In most places in red, this is the case; however, there are a number of places where it is not the case.
     72{{{
     73mysqli_query ( mysqli $link , string $query [, int $resultmode = MYSQLI_STORE_RESULT ] )
     74}}}
    6675=== mysql_select_db ===
    6776