Hi,
I want to extract the parameters names from a query like this:
select * from table where a = :param1 and b = :param2
I wrote this expression:"(?<param>:\w* )"
It gives me :param1
twice
Note: It's in a C#.Net application.
Any Help !!
Thanks