Hi
Could you please advice me how to execute following query:
Code:
ISQLQuery sqlQuery = session.CreateSQLQuery("declare aaa number; Begin aaa := rm_hiber_wrap.create_address(280,'34','7','4','9','3',0); end;");
The problem is that NHibernate consider statement ":=" (colon and equal) as named parameter, and during execution it raise up exception that all named parameters should be defined. How should I force NHibernate to consider ":=" as statement, not named parameter.
TIA (thank in advance)!
P.S. NHibernate version 2.0.0.Alpha2