On Thu, Oct 30, 2003 at 04:37:28PM -0000, G.B.Evans wrote: > I need to be able to interrogate a Sybase table from within a perl > program. > (The statement would be as simple as SELECT ID FROM TERM_TABLE WHERE > VALUE="a string")
You'll want to use DBI and DBD::Sybase. DBI is Perl's generic interface to relational databases (Oracle, MySQL, Postgres, InterBase, Informix, ODBC, etc). The O'Reilly Cheetah [3] is a good investment if you want to get to know Perl/DBI better. //Ed [1] http://search.cpan.org/perldoc/DBI [2] http://search.cpan.org/perldoc/DBD::Sybase [3] http://www.oreilly.com/catalog/perldbi/index.html