Thread Sybase BLOB auslesen (8 answers)
Opened by wundii at 2014-05-23 11:55

pq
 2014-05-23 13:04
#175672 #175672
User since
2003-08-04
12208 Artikel
Admin1
[Homepage]
user image
ich erinnere mich, das war etwas komplizierter in sybase:
perldoc DBD::Sybase:

Code: (dl )
1
2
3
4
5
6
       syb_no_bind_blob (bool)
If set then any IMAGE or TEXT columns in a query are NOT returned when calling $sth->fetch (or any variation).

Instead, you would use

$sth->syb_ct_get_data($column, \$data, $size);

also mach mal nach dem prepare:
$sth->{syb_no_bind_blob} = 1; 
und hol dir die daten mit syb_ct_get_data()

und bitte die doku zu LongReadLen auch noch beachten.
Last edited: 2014-05-23 13:07:52 +0200 (CEST)
Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wiki:Wie frage ich & perlintro Wiki:brian's Leitfaden für jedes Perl-Problem

View full thread Sybase BLOB auslesen