SQL Error (Left Outer Joins)

Here's my SQL query:

Select T.*,
P.CompanyName
from Test T
left outer join Profile P on P.ProfileNo=T.Profile_LinkNo

When execute the above query in WISQL, I get "No Current Record for fetch
operation" error.  So, does it mean that if the table is empty, I cannot
use "Left outer join"?

Thanks.

Ada