Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
When executing this script I get#!/usr/bin/perl -w use strict; use DBI; my $server="MY_REPSERVER"; my $user="repserv_user"; my $pass="hello"; my $dbh = DBI->connect("dbi:Sybase:server=$server", $user, $pass,{ PrintError => 0, # Don't print + warning messages RaiseError => 1 } ); my $sth = $dbh->prepare("Admin who_is_down"); $sth->execute;
The script is just to demonstrate the problemE. 2005/01/18 12:58:38. ERROR #14024 USER(repserv_user) - /execint.c(1 +222) Executor does not allow the entered command in the current mod +e.
Retitled by davido.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: DBD::Sybase and Repserver
by mpeppler (Vicar) on Jan 19, 2005 at 17:02 UTC | |
by Anonymous Monk on Jan 20, 2005 at 08:57 UTC | |
by Anonymous Monk on Jan 20, 2005 at 09:49 UTC | |
by mpeppler (Vicar) on Jan 20, 2005 at 18:36 UTC | |
|
Re: DBD::Sybase and Repserver
by jfroebe (Parson) on Jan 19, 2005 at 15:05 UTC | |
by jplindstrom (Monsignor) on Jan 19, 2005 at 23:19 UTC |