Hi, I am using DBI and DBD::Oracle. Is there any possibility to get the names of the bind variables back from OCI, such as returned by OCIStmtGetBindInfo()?
The background is: I get a statement (defined elswhere) where the placeholders for the bind variables have the syntax ":name" (not "?") together with the necessary values. To bind the variables, I need to know their names (binding by position does not work here). Of course, I could parse the statement, and get the variable names. However, OCI has this information already, thus it would be silly not to use it. So my question is: does DBI, DBD, or any other package pass this information from OCI? Thanks, G. Botorog
