Welcome Guest, Not a member yet? Register   Sign In
DataMapper ORM v2.0 - Input requested
#21

[eluser]Frank Wong[/eluser]
After monitoring the mysql logs, I realized that there is a discrepancy between get() and get_sql() from my previous example.

Code:
$account = new Account_dm($id);
$account->book_dm->get();
will execute (witnessed from mysql logs)
Code:
SELECT * FROM (`books`) WHERE account_id = [id];

while
Code:
$account = new Account_dm($id);
$sql = $account->book_dm->get_sql();
echo $sql;
outputs
Code:
SELECT * FROM (`books`);

Objects relationships were not changed between the two tests.


Messages In This Thread
DataMapper ORM v2.0 - Input requested - by El Forum - 11-02-2011, 05:51 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-19-2012, 05:30 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-19-2012, 09:21 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-23-2012, 06:13 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-24-2012, 12:45 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-24-2012, 08:53 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-26-2012, 05:40 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-27-2012, 03:13 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-28-2012, 08:45 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-28-2012, 09:13 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-28-2012, 11:15 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 01-29-2012, 03:26 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-06-2012, 08:55 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-06-2012, 10:07 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-06-2012, 11:12 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-06-2012, 04:03 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-07-2012, 05:31 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-07-2012, 10:08 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-07-2012, 04:36 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-07-2012, 04:45 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-07-2012, 10:28 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-07-2012, 11:54 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-08-2012, 02:10 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 02-15-2012, 08:24 AM
DataMapper ORM v2.0 - Input requested - by El Forum - 07-11-2012, 08:17 PM
DataMapper ORM v2.0 - Input requested - by El Forum - 07-11-2012, 11:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB