I have the line below in my code.
I got this error :
unable to find string literal operator ‘operator""ID’ with ‘const char [56]’, ‘long unsigned int’ arguments.
I must write ID with " " because its uppercase, postgresql accept it with double quotes.
How can i solve this error?
1 2 3 4
res = PQexec(conn, "UPDATE public.epp_commands SET unique_id='5' WHERE "ID"='2'");