Possible Duplicate:
Preventing SQL Injection in C

I know PHP has some built in functions that help to sanitize queries, but does C have anything like that?

snprintf(&buff[0],1023,"UPDATE grades SET grade='%c' WHERE username='%s'",choice,&uname[0]);

if (mysql_query(connect,&buff[0]) != 0) {
  // If it failed, tell the user
  printf("Error: %s!\n", mysql_error(connect));
  return;
}
link|improve this question

70% accept rate
2  
I'm almost sure there's some API that supports prepared statements. – cHao Oct 2 '11 at 22:01
1  
As @cHao said, avoid input "sanitization" and go with prepared statements, the C API supports them. – Matteo Italia Oct 2 '11 at 22:09
feedback

closed as exact duplicate by Greg Hewgill, Jim Garrison, mu is too short, Dan J, cHao Oct 2 '11 at 22:22

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

The MySQL C API has a mysql_real_escape_string() function.

link|improve this answer
After passing the query through that function, I get... "UPDATE grades SET grade=\'A\' WHERE username=\'student\'" This results in a syntax error when I try to execute it with mysql_query. – Takkun Oct 2 '11 at 22:29
I wouldn't recommend using this method of manually escaping strings, because the day you forget to call this is the day you introduce a security problem in your code. Always use prepared statements with bound parameters. – Greg Hewgill Oct 2 '11 at 22:35
feedback

The C language and runtime have no such routine. Your particular database's particular client library might have something.

link|improve this answer
feedback

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