AutoReplace Template

mike

Member³
I'm using version 7.1.1.1346 and I created an AutoReplace Template. When I run it, the cursor is placed one position off, so I need to compensate. Here is the template that demonstrates the problem:


Code:
SELECT ppx.person_id
       ,ppx.full_name
FROM per_people_x ppx
WHERE  full_name LIKE '[#]
I think it would be nicer if the cursor was placed in the position specified in the template.

Thanks,

Mike
 
A quick test indicates that this may be caused by the fact that the cursor is on the last position. If I modify it like this, it works fine:

Code:
SELECT ppx.person_id
       ,ppx.full_name
FROM per_people_x ppx
WHERE  full_name LIKE '[#]'
We'll fix it.
 
Back
Top