У меня есть хранимая процедура оракула: `
create or replace procedure getClientFromAuthentification(myCursorResult out sys_refcursor, login in VARCHAR2, pwd in VARCHAR2) as
num_client NUMBER(6);
compte_epargne VARCHAR2(50);
compte_courant VARCHAR2(50);
nom VARCHAR2(50);
prenom VARCHAR2(50);
adresse VARCHAR2(100);
begin
open myCursorResult for
select client.num_client, client.num_compte_epargne, client.num_compte_courant,
client.nom_client, client.prenom_client, client.adresse_client
from client
where client.login_client = login and client.mdp_client = pwd;
fetch myCursorResult into num_client, compte_epargne, compte_courant, nom, prenom, adresse;
if myCursorResult%ROWCOUNT > 1 then raise TOO_MANY_ROWS;
else if myCursorResult%ROWCOUNT = 0 then raise NO_DATA_FOUND;
end if;
end if;
exception
when TOO_MANY_ROWS then raise_application_error(-20000, 'base corrompue');
when NO_DATA_FOUND then raise_application_error(-20001, 'pas de résultats');
end getClientFromAuthentification;`
Я проверил его в oracle sqldevelopper, и он отлично работает:
`set serveroutput on;
declare
myCursor sys_refcursor;
begin
dbms_output.enable;
getclientfromauthentification(myCursor, 'durant.jean', 'durant.jean1234');
dbms_output.put_line('cursor = ' || myCursor%ROWCOUNT);
end;`
курсор = 1 (он нашел это: =))
Теперь я пытаюсь использовать эту процедуру на стороне Java с Hybernate.
Отображение:
`<hibernate-mapping>
<class name="model.entity.Client">
<id name="num_client" type="int" />
<property name="num_compte_epargne" type="string" />
<property name="num_compte_courant" type="string" />
<property name="nom" type="string" />
<property name="prenom" type="string" />
<property name="adresse" type="string" />
</class>
<sql-query name="getClientFromAuthentification_SP" callable="true">
<return alias="client" class="model.entity.Client" >
<return-property name="num_client" column="NUM_CLIENT"/>
<return-property name="num_compte_epargne" column="NUM_COMPTE_EPARGNE"/>
<return-property name="num_compte_courant" column="NUM_COMPTE_CLIENT"/>
<return-property name="nom" column="NOM_CLIENT"/>
<return-property name="prenom" column="PRENOM_CLIENT"/>
<return-property name="adresse" column="ADRESSE_CLIENT"/>
</return>
{ call getClientFromAuthentification(?, :login, :mdp) }
</sql-query>
</hibernate-mapping>`
Когда я использую это:
`
ArrayList<Client> clients;
Query q = session.getNamedQuery("getClientFromAuthentification_SP");
q.setString("login", "durant.jean");
q.setString("mdp", "durant.jean1234");
clients = (ArrayList<Client>) q.list();`
У меня нет ошибок, но, к сожалению, список пуст ...
Помогите мне, пожалуйста