Database
odbc.txt
Associated article: Networking, ODBC, & Perl
Tags: Database Web Development
Published source code accompanying the article by Robert Kielsing in which he examines a Perl API for the open-source unixODBC libraries, then a peer-to-peer API that lets ODBC clients access data sources of other systems on a TCP/IP network. Also see odbc1-6.zip and odbc.zip.
Networking, ODBC, & Perl
by Robert Kielsing
Example 1:
int status = SQLGetDiagRec (data_handle_type, data_handle,
record_number, &sql_state,
&server_error, max_error_message_length,
&error_message_length);
Example 2:
my $status = SQLGetDiagRec ($data_handle_type, $data_...


