Skip to content
  • Jared Hancock's avatar
    4f8f236d
    orm: Add MySQLi executor without prepared statements · 4f8f236d
    Jared Hancock authored
    Simplified executor which uses the mysqli_query() function to process
    queries. This method is faster on MySQL as it doesn't require the PREPARE
    overhead, nor require two trips to the database per query. All parameters
    are escaped and placed directly into the SQL statement.
    
    This executor extends the traditional mysqli_fetch_xxx() methods by casting
    non-null numeric field values to PHP numeric types.
    4f8f236d
    orm: Add MySQLi executor without prepared statements
    Jared Hancock authored
    Simplified executor which uses the mysqli_query() function to process
    queries. This method is faster on MySQL as it doesn't require the PREPARE
    overhead, nor require two trips to the database per query. All parameters
    are escaped and placed directly into the SQL statement.
    
    This executor extends the traditional mysqli_fetch_xxx() methods by casting
    non-null numeric field values to PHP numeric types.
Loading