W liście z czw, 28-11-2002, godz. 15:48, Vikram N pisze: > Hi , > I am using DBI perl to connect to Oracle database. I am using "qq" against all >queries submitted through prepare statement. > I wanted to know if this is a good practice. Will this cause a problem in any >situation ?
I would prefer "q" instead of "qq", as "q" does not do perl's variable expansion. Of course there could be situation where you DO need variable expansion, for example when you want to parametrize SQL table name. Waldemar