Hi all,
I have this sql string:
select lname, fname from users where lname = '#lname#' and fname = '#fname#'
now i want to read that sql string and convert to:
select lname, fname from users where lname = '"+lname+"' and fname = '"+fname+"'
I have hard time to read each characters and replace function. Can anyone help?
Thx.
I have this sql string:
select lname, fname from users where lname = '#lname#' and fname = '#fname#'
now i want to read that sql string and convert to:
select lname, fname from users where lname = '"+lname+"' and fname = '"+fname+"'
I have hard time to read each characters and replace function. Can anyone help?
Thx.