I currently use MySql, but would prefer an ODBC solution to make it future proof.

How do I sanitize user input before passing it to an ODBC database ?

And, while I'm at it, I wrap my string in double quotes, e.g. "INSERT INTO VALUES(description) ""` - but what if the text itself contains a double quote?

link|improve this question

1  
What kind of user input do you mean? For example, if the user gives you queries to run then you've got a lot of work ahead of you. In addition to escaping special characters, as you've mentioned, you'll also need to watch out for security issues such as SQL injection, and you'll probably also want to limit the set of acceptable statements (for example, don't allow DDL.) On the other hand, if the user just gives you data and your application uses ODBC to write the data to the database, then you don't have to do anything because the data and your SQL statements don't mix. – Ciaran Keating Jun 1 '11 at 7:57
1  
possible duplicate of Delphi - prevent against SQL injection – Johan Jun 1 '11 at 8:58
ODBC will not make it future proof, it will make it slow, strip you of options and make it buggy. Any number of alternatives will do, ZEOS can connect to about 10 databases, so can ADO. – Johan Jun 1 '11 at 22:03
1  
@Johan: We'd need to know a lot more about Mawg's project before we could determine that ODBC will be appreciably slower than some specific alternative. It's true that ODBC will reduce the options, but again we'd need to know more about the project in order to know whether this is likely to be a problem. And while it's true that ODBC is kind of complicated to implement, I'd hesitate to say bluntly that it would make the project buggy. Finally, ODBC may indeed make it easier to switch to a different DBMS, pretty much the same as any other abstraction will. – Ciaran Keating Jun 1 '11 at 23:19
+1 thanks. ODBC it will have to be. I have no choice. If I want to have it accepted I am told that I will need to support multiple databases. – Mawg Jun 3 '11 at 3:35
feedback

4 Answers

up vote 6 down vote accepted

Try using a parametrized SQL sentence

like this.

INSERT INTO MyTable (Field1,Field2) VALUES (:Param1,:Param2)

check this article from embarcadero for more info about how use parameters Using Parameters in Queries.

link|improve this answer
+1 I am trying to follow the example from docwiki.embarcadero.com/CodeExamples/en/ADOQuery_%28Delphi%29 but I get an exception about '_latin1'<my command> I will post another question asking help on that. – Mawg Jun 5 '11 at 4:42
feedback
  1. ODBC is not an optimal way to work with MySQL. Even if you need to support few DBMS in the future, then you can consider multi-DBMS data access libraries, including dbExpress (comes with Delphi) and 3d party - AnyDAC (commercial), ZeosLib (freeware), etc.
  2. If you need to substitute a string constant into a MySQL query, then you need to esacape the special characters or convert the string into hexadecimal representation. That protects you from possible SQL injection and syntax errors. But makes your query preparation more complex.
  3. The best way - use parameters and submit literals as the parameter values. That is simple and safe.
link|improve this answer
feedback

You can take a look also here Delphi - prevent against SQL injection , there are some indication/examples.

link|improve this answer
feedback

Use hibernate if you can, perhaps via RMI from delphi. Although it's java centric, it almost completely insulates the programmer from the underlying DB, and handles the issues you've mentioned and a whole lot more.

btw, to answer your question re double quotes, to save a value which contains double quotes, escape them as doubled double quotes, eg

This is "my" text

would be saved as

"This is ""my"" text"
link|improve this answer
-1, first ODBC, than hibernate, how many levels of indirection do you want, just use params and native code. – Johan Jun 1 '11 at 22:01
feedback

Your Answer

 
or
required, but never shown

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