vote up 1 vote down star

If I have a query such as SELECT * from authors where name = @name_param, is there a regex to parse out the parameter names (specifically the "name_param")?

Thanks

flag
Not sure exactly what you're asking. Can you clarify, or give an example? Do you want to pass in a list of names and have it convert the WHERE to name in (name_a, name_b, ...) ? and you need to specify the RDBMS, Regex support is different between them. – Mark Brady Nov 21 '08 at 5:17

2 Answers

vote up 4 vote down

This is tricky because params can also occur inside quoted strings.

SELECT * FROM authors WHERE name = @name_param 
  AND string = 'don\'t use @name_param';

How would the regular expression know to use the first @name_param but not the second?

It's a problem that can be solved, but it's not practical to do it in a single regular expression. I had to handle this in Zend_Db, and what I did was first strip out all quoted strings and delimited identifiers, and then you can use regular expressions on the remainder.

You can see the code here: http://framework.zend.com/code/browse/~raw,r=8064/Zend_Framework/trunk/library/Zend/Db/Statement.php

See functions _stripQuoted() and _parseParameters().

link|flag
1  
Not to mention parameter names appearing in SQL comments. Regexes are great, but not necessarily great for parsing jobs. – Jonathan Leffler Nov 21 '08 at 7:26
Yes, good point about the SQL comments. – Bill Karwin Nov 21 '08 at 22:20
vote up 2 vote down

Given you have no quoted strings or comments with parameters in them, the required regex would be quite trivial:

@([_a-zA-Z]+)       /* match group 1 contains the name only */

I go with Bill Karwin's recommendation to be cautious, knowing that the naïve approach has it's pitfalls. But if you kow the data you deal with, this regex would be all you need.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.