Has anyone ran into a problem where the Oracle9i dialect creates a
query like this?

                                       select *
                                       from   (select row_.*,
                                                      rownum rownum_
                                               from   (SELECT
series1_.BT_SERIES_ID as y0_
                                                       FROM
BUSINESS_TRANSACTION this_0_,
 
BT_SERIES series1_
                                                       WHERE
this_0_.BT_SERIES_ID = series1_.BT_SERIES_ID (+)) row_
                                               where  rownum <= :p0)
                                       where  rownum_ > :p1

and does not provide a p0 or p1 value which causes an exception of
type:

System.Data.OracleClient.OracleException: ORA-01008: not all variables
bound

My query uses the following:

selectCriteria.SetFirstResult(2)
                    .SetMaxResults(1);

I'm running 2.1.0 Alpha3.  I'll take a peek at the source code to see
if I can figure it out but in the mean time I figured I'd check if
anyone else has the same problem?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"nhusers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/nhusers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to