Hi,
I haven't worked with OpenACS for a while, so perhaps my memory isn't entirely up to date. I'm trying to execute a plpgsql procedure, and I want to supply an empty string as parameter, i.e.
set variable ""
db_exec_plsql my_function {SELECT my_function(:variable)}
This empty string is converted to NULL by db_bind_var_substition, which is not what I want.
How do I supply the an empty string to the function?