I frequent perl monks a bit and late yesterday an issue came in with DBD::ODBC and Microsoft Access. The perl monks node and rt 46597 detail it all quite well. It appears DBD::ODBC was not following the DBI specification (as it was originally written) to the letter with respect to sticky bound parameter types but since then Tim Bunce has modified the DBI pod slightly to allow DBDs to enable a bound parameter to be rebound with a different type. The change to DBD::ODBC was fairly small but by the time I'd added a test case, bumped the version to 1.21_1 and tested a dozen or so ODBC drivers this consumed a fair amount of time.
Just when I thought I was safe from DBD::ODBC issues for the day, another thread Prepare, SQL query with to_date call came up on dbi-users. Dates, times and timestamps in Oracle via ODBC have always been a bit of an issue and in fact there is a DBD::ODBC FAQ item titled Why do I get "Datetime field overflow" when attempting to insert a date into Oracle? about it. However, in this case the FAQ didn't seem to apply. At Easysoft, we wrote 2 Oracle ODBC drivers (one using OCI - Oracle Call Interface) and one a "wire-protocol" driver not requiring the OCI interface installation. When I tried the posters code with the wire-protocol driver it failed in a similar way. It turns out our driver (one of the few which handles SQLDescribeParam for Oracle) returns a type of SQL_TYPE_DATE for parameters bound to Oracle date columns. When you bind plain dates (without the usual ODBC syntax) DBD::ODBC says the C type is SQL_CHAR but the SQL type is SQL_TYPE_DATE (from the driver) which means the ODBC driver needs to parse the date and convert it. If you override the parameter type and set it to SQL_VARCHAR the driver says the c-type and sql-type are the same and passes it to Oracle untouched. The proper solution is to bind Oracle dates using the ODBC syntax for dates as all ODBC drivers need to support this. See the posts for more information but an example of some working and not working binds are illustrated here:
Recent comments
31 weeks 5 days ago
34 weeks 1 day ago
35 weeks 5 days ago
35 weeks 6 days ago
44 weeks 2 hours ago
45 weeks 23 hours ago
46 weeks 3 days ago
49 weeks 1 day ago
1 year 1 week ago
1 year 4 weeks ago