suskycode / database-navigator

Automatically exported from code.google.com/p/database-navigator
0 stars 0 forks source link

parameters with underscores confuse plugin #14

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. create a select statement
2. include 2 parameters, for example:
ed.source = :source AND
ed.source_id = :source_id
3. click execute, the plugin will find both parameters but when you type 
something into source it replaces :source with whatever you type in, so now the 
previous statement looks like the following:
ed.source = 'string' AND
ed.source_id = 'string'_id 
which causes an error, also the input from source_id then does nothing

What version of the product are you using? On what operating system?
version 3.0.2373 on Win 7

Original issue reported on code.google.com by hahn....@gmail.com on 23 Oct 2012 at 4:45