On Tue, 9 Nov 2004 10:21:48 -0500, <[EMAIL PROTECTED]> wrote:
Tim Bunce writes:
I can assure that DBD::Oracle does no such thing.
s/assure that/assure you that/
I have no clue what the DBA is using to watch the session traffic, and
she isn't sharing very much with me... Any way, I have a simpel
DBI->connect call, and she sees the ALTER SESSION come through.
Depending on what I set TZ to, it comes through as that. If DBI isn't
doing where else is it coming from?
DBD::Oracle has no code to do that.
However, it is possible that the underlying Oracle OCI code does it.
It's either perfectly normal behaviour or is perhaps being triggered
by a setting in a client-side SQL*Net configuration file.
I suggest you talk to Oracle, or tell your DBA to stop worrying about it.
Tim.
#!/usr/local/bin/perl
#$ENV{TZ}='US/Eastern';
#$ENV{TZ}='US/Central';
$ENV{TZ}='US/Pacific';
my $DBH=DBI->connect('dbi:Oracle:host=oracle0.teetimes.com;sid=teedev',
'user','pwd',
{ RaiseError => 1,
PrintError => 0,
LongReadLen => 640000, });