I get the following errors:

error: missing terminating " character

and

error: stray `\' in program

In this line of C code:

 system("sqlite3 -html /home/user/.rtcom-eventlogger/el.db \"SELECT service_id, event_type_id,free_text, remote_uid FROM Events WHERE remote_uid=\'%d\' ORDER BY start_time DESC;\" > lol.html", nr);

"nr" is a integer variable.

I have gone over this so many times but are totally stuck of finding a solution.

EDIT: The errors is the ouput while compiling with gcc if I didn't make that clear.

link|improve this question

2  
Please paste the code above and below this line. – KennyTM May 27 '10 at 19:49
3  
I don't think that this is the bug in question, but it appears that you are trying to pass printf style format/arguments to system, and it doesn't take them. Well, it doesn't know what to do with them. – nategoose May 27 '10 at 21:59
feedback

2 Answers

up vote 2 down vote accepted

Within a double-quoted string in C, I don't think that \' has any meaning. It looks like your backslashing there is meant to protect the single quotes in the shell, which means they should be double-backslashed within the string: remote_uid=\\'%d\\'.

link|improve this answer
I want the system call to print out remote_uid='contents-of-nr-variable' in the shell I still get an error with \\'%d\\' – bleakgadfly May 27 '10 at 19:53
At least in C99 both \' and ' can be used in string literals. – Georg Fritzsche May 27 '10 at 19:53
This is gcc 4.1 on an ARM system. – bleakgadfly May 27 '10 at 19:54
@DreamCodeR, but does it compile with the ' double-escaped? If so, then I suggest that you printf your statement so that you can see what's actually being expanded. – JSBձոգչ May 27 '10 at 19:57
@JS Bang: printf("sqlite3 -html /home/user/.rtcom-eventlogger/el.db \"SELECT service_id, event_type_id,free_text, remote_uid FROM Events WHERE remote_uid='%d' ORDER BY start_time DESC;\" > lol.html", nr); Gives me the same error. Also the same error when I compile with remote_uid=\\'%d\\' – bleakgadfly May 27 '10 at 20:02
show 1 more comment
feedback

Well, you don't need to escape the single quotes inside the string (e.g. \' should just be '), but I'm not sure that that would cause the error you're seeing.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.