• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

SQL injection checks

Red Squirrel

No Lifer
I'm writing some C++ functions for ease of coding mySQL apps, in this case I'm writing a function to filter text that a user would input.

Other then these quotes: ' '

And these quotes: ``

What are other chars I should be watching out for or escaping?

Currently my code is just turning ' into \' and ` into \' as well. (it checks to see if there's already a \ there)

Anything else I should be checking out for as far as SQL injections or otherwise DB breaking goes?
 
Back
Top