inteligent DBI

2011-04-07 Thread marcos rebelo
Probably it is impossible, but it would be really usefull. I'm doing something like: my $sth = $dbh-prepare('INSERT INTO my_table(field_1) VALUES (?)'); $sth-bind_param( 1, 'pippo', { 'ora_type' = SQLT_BIN } ); $sth-execute; since I need to pass a parameter in the bind_param I would really

Re: inteligent DBI

2011-04-07 Thread Rob Coops
Even if it is not possible at the moment you could always overwrite this function and make it work this way... I suspect it might be quite a bit of work, but certainly not impossible. After all you are programming anything you can think of can be done the only question is if it is worth the effort

Re: inteligent DBI

2011-04-07 Thread marcos rebelo
We have a internal wrapper, The problem is that doesn't work with Oracle ;) I'm implementing it now. Oracle madness Best Regards Marcos Rebelo On Thu, Apr 7, 2011 at 11:57, Rob Coops rco...@gmail.com wrote: Even if it is not possible at the moment you could always overwrite this function and