in reply to DBIx-XML_RDB-0.05

You have to specify the server name in your dsn like this:
Right from the docs:
You can set the I<DSQUERY> environement variable: $ENV{DSQUERY} = "ENGINEERING"; $dbh = DBI->connect('dbi:Sybase:', $user, $passwd); Or you can pass the server name in the first argument to connect(): $dbh = DBI->connect("dbi:Sybase:server=ENGINEERING", $user, $passw +d);

Replies are listed 'Best First'.
Re: Re: DBIx-XML_RDB-0.05
by Anonymous Monk on May 03, 2001 at 16:53 UTC
    I can use the DBI connection to Sybase alone with no problem. The problem is when using the DBIx-XML_RDB module the passing parameters to DBI are not set correctly. The user and password are missing from the error output. my $dbx = DBIx::XML_RDB->new($dsn, "Sybase", $userid, $password) will create this error message: DBI->connect(DBI:Sybase:webitmstest) failed. at P:/perl/site/lib/DBIx/XML_RDB.pm line 46