in reply to Inline Java not working

Class.forName("com.teradata.jdbc.TeraDriver");

is this failing? can it be found? Also, does the program fails at compilation or runtime?

Edit: It looks there is at least 1 Perl DB Driver Module (very old) on CPAN offering connection to Teradata. There is another deprecated offering a newer version outside CPAN. I would investigate this route rather than inling all code to JAVA. Limited mileage but the first thing to investigate.

Edit: note to fellow monks: teradata db access needs a proprietary driver just as mysql, sqlite et al. do. The only hope on this front is if Teradata::SQL can be made to work.

Replies are listed 'Best First'.
Re^2: Inline Java not working
by hippo (Archbishop) on Jan 03, 2024 at 13:58 UTC
    teradata db access needs a proprietary driver just as mysql, sqlite et al. do.

    I'm not sure what you mean by this. Both MySQL and SQLite can be accessed perfectly well using open drivers - no requirement for proprietary ones.


    🦛

      I mean Perl's DBD/DBI will not provide access to a database without the driver, any driver, opensource or otherwise. 'proprietary' is the wrong word, I mean supplied externally.