Joins not correcly renderer for oracle pre 9i
Status: Beta
Brought to you by:
olegoga
For Oracle databases pre 9i the select statement is
not renderer correctly.
before 9i oracle does not support the
statements 'inner join','left join','right join' etc
Instead of:
Select * from Person inner join EventPerPerson on
Person.Id = EventPerPerson.PersonId
The statement should look like this:
Select * from Person, EventPerPerson where Person.Id =
EventPerPerson.PersonId
Logged In: YES
user_id=701386
Yes, this is a known limitation.
Currently I have no plans to support Oracle pre 9i
Alon.