Escaping special characters in Templates?

I guess it shouldn't be surprising that I'm still struggling with this feature?

But this time I think I've found a bug??? :confused:

I'd like to include a template option that includes special characters and make it the default option, like this:

Code:
GRANT [Grant rights=*"SELECT, INSERT, UPDATE, DELETE", SELECT, INSERT, UPDATE, DELETE, ...] ON [table name] TO [grantee];
Now you can argue that this shouldn't be the default value, but should I still be able to make this first option be the default? Because PSD (7.1.4) gets messed up by the syntax above. But if I leave off the "*", it shows the special string "SELECT, INSERT, UPDATE, DELETE" as expected.

Thanks,

Stew
 
You should place the * inside the quotes:
Code:
GRANT [Grant rights="*SELECT, INSERT, UPDATE, DELETE", SELECT, INSERT, UPDATE, DELETE, ...] ON [table name] TO [grantee];
 
Back
Top