I want to extract QueryResults of email addresses from an interbase database 
using a stored procedure. I see that InterbaseFactory doesn't override 
getCallQuery, so using �
��
�oql = db.getOQLQuery( "CALL GETADDRESS($1) AS quote.Maildest" );
��
just returns a null pointer.
��
Is there a reason this is not implemented, or could it be added, as in 
SybaseFactory ?
��
��
��
==========================================
The Interbase Stored Proc :
��
CREATE PROCEDURE GETADDRESS (
����EM_DOMAIN VARCHAR(30))
RETURNS (
����OADDRESS VARCHAR(30))
AS
begin
��for select distinct em_from_address from email
where em_domain=:EM_DOMAIN
and em_from_address �containing :EM_DOMAIN
��into :oaddress ��do
��suspend;
end �

----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
        unsubscribe castor-user

Reply via email to