> -----Original Message-----
> From: Martin Edenhofer [mailto:martin@edenhofer.de]
> Sent: Wednesday, July 02, 2003 11:02 PM
> To: dev@otrs.org
> Subject: Re: [dev] SQL Server 2000 with otrs
> Yepp. But I can't say it at this moment (I need to have access to an
> other machine - I get it on sunday). I had the same problem
> with SAPDB.
> Im not sure, but try to change the "DBI->connect(" in
> Kernel/System/DB.pm
> from:
>
> [...]
> # --
> # db connect
> # --
> if (!($Self->{dbh} = DBI->connect("$Self->{DSN}",
> $Self->{USER}, $Self->{PW}))) {
> $Self->{LogObject}->Log(
> Caller => 1,
> Priority => 'Error',
> Message => $DBI::errstr,
> );
> return;
> }
> [...]
>
> to:
>
> [...]
> # --
> # db connect
> # --
> if (!($Self->{dbh} = DBI->connect("$Self->{DSN}",
> $Self->{USER}, $Self->{PW}, { LongTruncOk => 1 }))) {
> $Self->{LogObject}->Log(
> Caller => 1,
> Priority => 'Error',
> Message => $DBI::errstr,
> );
> return;
> }
> [...]
>
> -Martin
thanks, i tried it and it doesnt work.
same error message as before.
maybe i really have to wait until sunday?
;-)
Holger