How to write prepared statements for SQLite in iPhone? Is it possible to do SQL Injection in iPhone apps that use sqlite db?
|
|
|
|
|
|
|
I would suggest that if you're starting to develop an iPhone app now you should probably use Core Data rather than coding directly to SQLite. Having said that, creating a prepared statement is simple and well documented:
And yes, it is possible to have SQL injection attacks in a badly coded application. Using prepared statements goes a long way to avoid it. |
||||||||
|
|
|
Along with Core Data, I'd also recommend looking at a higher level iPhone SQLite library such as: FMDB |
||||
|
