From: Urberg, J. <ju...@ve...> - 2002-07-31 20:16:50
|
I setup my first many-to-one association today without outer-join set to "true". My Sybase ASA database didn't much care for the query generated. It used "LEFT JOIN" instead of "LEFT OUTER JOIN". I made changed the following in the constructor of ByIdQuery... buf.append(" LEFT JOIN ") to buf.append(" LEFT OUTER JOIN ") ...and all is well. Should it be this way for all databases, or does this need to be factored out to the dialect classes? Regards, John |