I have a variable defined as
define dbs '&1'
Suppose I pass database1
as an argument. Then the statement is interpreted as
define dbs database1
I want to append single quotes around the string, ie I want it to be interpreted as
define dbs 'database1'
How should I do this?