in reply to Re: Oracle DBI quote
in thread Oracle DBI quote

Probably ;)
However, I dont really care if there is a single space, but I cant get that to work and that is my real problem.

T I M T O W T D I

Replies are listed 'Best First'.
Re: Re: Re: Oracle DBI quote
by mpeppler (Vicar) on Oct 25, 2002 at 23:27 UTC
    I think that you can do something like this (culled from the dbi-users mailing list):

    use DBD::Oracle qw( :ora_types ); ... $sth->bind_param($param_num, ' ', { ora_type => ORA_CHAR });

    I'm not an Oracle user at all so I can't guarantee that this is correct.

    Michael