I am writing a generic sqldump utility that takes a DSN and a table name and dumps the contents to a file. It's an internal app so SQL Injection is not a serious threat, but I don't want to have to worry about it. The thing is, the variable part of the query is actually the tablename, so the query is going to look like:
select * from [tablename];
...which I don't imagine will work well with the OdbcCommand's parameterized query support. I am also trying to support all types of DSN's as generically as I can, regardless of the driver on the other side of the DSN.
Is there some universal way to sanitize my tablename input to protect against all SQL Injection using the OdbcCommand object?
Very Bad Ideamoniker for taking a while to do something that will take a while to do. And truly, I'm not especially concerned about SQL Injection for the same reason, I just don't like writing code that's vulnerable to it if there's a reasonably elegant way to avoid doing so. But I don't know what you mean about the two sets of columns... can you explain? – Jeremy Holovacs Feb 21 at 22:42