MartijnH wrote:
Hello,
====
<sql-query name="pr_tbl_test_String_INS_SP"callable="true">
<return alias="bigFieldExample" class="hibernatetest.BigFieldExample">
<return-property name="id" column="id"/>
</return>
</sql-query>
====
Aren't you supposed to actually specify which database funcion to call? I see you named you query similar to the procedure in the database, but I don't think that's enough.
<sql-query name="pr_tbl_test_String_INS_SP"callable="true">
<return alias="bigFieldExample" class="hibernatetest.BigFieldExample">
<return-property name="id" column="id"/>
</return>
{ ? = call pr_tbl_test_String_INS_ret( ? ) }
</sql-query>
And you could maybe enable query logging, and check that the query syntax is ok.
Roland