From: | SCassidy(at)overlandstorage(dot)com |
---|---|
To: | Rafal Pietrak <rafal(at)zorro(dot)isa-geek(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org, pgsql-general-owner(at)postgresql(dot)org |
Subject: | Re: UTF-8 context of BYTEA datatype?? |
Date: | 2006-05-30 18:08:28 |
Message-ID: | OF5AD4ADF8.CA111A55-ON8825717E.0063A354-8825717E.0063A709@overlandstorage.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Sorry, forgot:
sub escape_bytea {
my ($instring)=(at)_;
my $returnstring=join ('',map {
my $tmp=ord($_);
($tmp >= 32 and $tmp <= 126 and $tmp != 92) ? $_ :
sprintf('\%03o',$tmp);} split (//,$instring));
return $returnstring;
} # end sub escape_bytea
Rafal Pietrak
<rafal(at)zorro(dot)isa-geek(dot)c To: SCassidy(at)overlandstorage(dot)com, pgsql-general(at)postgresql(dot)org
om> cc:
Sent by: Subject: Re: [GENERAL] UTF-8 context of BYTEA datatype??
|-------------------|
pgsql-general-owner(at)pos | [ ] Expand Groups |
tgresql.org |-------------------|
05/30/2006 10:06
AM
On Tue, 2006-05-30 at 09:05 -0700, SCassidy(at)overlandstorage(dot)com wrote:
> Did you try escaping the data:
> my $rc=$sth->bind_param(1, escape_bytea($imgdata), { pg_type =>
> DBD::Pg::PG_BYTEA });
No. But:
$ ./test
Undefined subroutine &main::escape_bytea called at ./test line 34.
Where can I find one?
$ grep -Rl escape_bytea /usr/share/perl* /usr/lib/perl*
... returns nothing. Neither is listed among:
psql>\df
output.
Where should I look for it?
--
-R
---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faq
----------------------------------------------------------------------------------------------
Simply protected storage solutions ensure that your information is
automatically safe, readily available and always there, visit us at http://www.overlandstorage.com
----------------------------------------------------------------------------------------------
From | Date | Subject | |
---|---|---|---|
Next Message | Daniel Verite | 2006-05-30 18:12:20 | Re: UTF-8 context of BYTEA datatype?? |
Previous Message | Jim C. Nasby | 2006-05-30 18:04:49 | Re: [HACKERS] Schema Limitations ? |