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.