Parse params from an sql query using delphi
Posted
by Salvador
on Stack Overflow
See other posts from Stack Overflow
or by Salvador
Published on 2010-03-30T17:29:40Z
Indexed on
2010/03/30
17:33 UTC
Read the original article
Hit count: 488
How i can parse and extract the parameters from an SQL Query using delphi?
example :
from this query
SELECT * FROM MyTable
WHERE Field1=:Param1
AND Field2=:Param2
AND (Field3=:Param3 OR Field4=:Param4)
i want to obtain
Param1 Param2 Param3 Param4
Thanks in advance.
© Stack Overflow or respective owner