Known Bugs

Known Bugs

0.2.0

Fixes for known bugs

0.2.0

SQL problem with habtm and Ci’s AR

Add this code before you load IgnitedRecord:
define(‘IR_USE_IQ’, true);

This tells IgnitedRecord to use IgnitedQuery to build the SQL-query instead.

PHP errors when using find_by_sql() or find_all_by_sql()

Replace:
$query = $this→db_query($sql);
With:
$query = $this→db→query($sql);

In igntedrecord.php, in the find_by_sql() and find_all_by_sql() methods.