Has anyone written something similar to SQL::Abstract
for Sybase::DBLib? in particular, I’m interested in being able to insert a hash of values into a table without manually forming the sql query myself.
A big issue in working with sybperl is that SQL::Abstract returns bind values and placeholder SQL, not concrete SQL.
The way to create concrete SQL form bind variables has been discussed – http://www.perlmonks.org/?node_id=839885
I suppose I need to get off my duff and write the code myself if it has not been done.
Surely if you switched to using DBD::Sybase instead of Sybase::DBLib then all of the modern DBI-based tools (including DBIx::Class) would be available for you to use.
And anyway, wasn’t DBLib deprecated in favour of CTLib about ten years ago?