Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a PL/SQL function or general technique to quote unqualified identifiers (e.g., mytable) for use in a dynamically constructed SQL query? How about partially or fully qualified identifiers (a.b@c)?

Consider this contrived example:

CREATE PROCEDURE by_the_numbers(COL_NAME VARCHAR, INTVAL INTEGER) IS
  ...
BEGIN
  -- COL_NAME is interpolated into SQL string
  -- INTVAL gets bound to :1
  stmt := 'SELECT * FROM tbl WHERE ' || COL_NAME || ' = :1';
  ...
END

... where we don't want to permit naive SQL injection in COL_NAME (e.g., a value of '1=1 or 1').

share|improve this question
Got example of what you're trying to do? – OMG Ponies Oct 22 '10 at 19:13
@OMG Ponies, does that example clarify? Basically I want an equivalent of the perl DBI's quote_identifier() – pilcrow Oct 22 '10 at 20:16
My experience is that you can't use a BIND variable for the column name, because being CHAR/VARCHAR it will automatically be enclosed in single quotes to protect against SQL injection. – OMG Ponies Oct 22 '10 at 20:19
@OMG, right. The identifier must be interpolated (more or less), and so I'd like to quote it before doing that... – pilcrow Oct 22 '10 at 20:25

1 Answer

up vote 3 down vote accepted

There is dbms_assert: http://www.oracle-base.com/articles/10g/dbms_assert_10gR2.php for preventing sql injection.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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