Hello,
Oracle 10g EX (at home), Pl/sql developer 7.0.1.1066 / Delphi 7
I try to make my first plugin with Delphi 7
I use parameterized queries in a SQL window (large numbers like this, always parameterized)
the result is always a ,
I want to write this to a file or even better in a Memo, because I have to send it on a remote server via SFTP, after doing some controls
How to read the contents of the ?
Is it olso possible to read the request once performed by PL/SQL
If yes, how ?
Thanks,
Henry
the request from pl/sql menu/special copy/delphi : =
Oracle 10g EX (at home), Pl/sql developer 7.0.1.1066 / Delphi 7
I try to make my first plugin with Delphi 7
I use parameterized queries in a SQL window (large numbers like this, always parameterized)
the result is always a ,
I want to write this to a file or even better in a Memo, because I have to send it on a remote server via SFTP, after doing some controls
How to read the contents of the ?
Is it olso possible to read the request once performed by PL/SQL
If yes, how ?
Thanks,
Henry
the request from pl/sql menu/special copy/delphi : =
Code:
'select do.donnees' + # 13 # 10 +
'From quarc.crpdi di, quarc.crpdidonnees do' + # 13 # 10 +
'Where di.nommodele & <name="nom like the courrier" type="string" ifempty="%%" hint="Entrez name "default="cr_auto_prel">' + # 13 # 10 +
'And do.id di.iddonnees =' + # 13 # 10 +
'And rownum <& <name="nb_ligne" type="integer" ifempty="%" default="10">' + # 13 # 10 +
'And di.statut = & <name="Statut" type="integer" ifempty="5" default="15" hint="Statut of demande">' + # 13 # 10 +
'Order by di.datedi desc';