Re: [INTERFACES] Invalid BLOB Length

From: Byron Nikolaidis <byronn(at)insightdist(dot)com>
To: PostgreSQL Server <postgres(at)www(dot)Mythos(dot)Org>
Cc: pgsql-interfaces(at)postgreSQL(dot)org
Subject: Re: [INTERFACES] Invalid BLOB Length
Date: 1999-03-24 14:35:41
Message-ID: 36F8F83D.FD11A728@insightdist.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

PostgreSQL Server wrote:

> I am using Borland C++ Builder 3.0 with PostgreSQL 6.4.2 and the
> latest ODBC driver from ftp.postgresql.org.
>
> I created a table users that looks like this:
>
> CREATE TYPE lo (
> internallength = 4,
> externallenght = 10,
> input = int4in,
> output = int4out,
> send = int4out,
> receive = int4in,
> default = '',
> passedbyvalue);
>
> CREATE TABLE users (
> userid int4,
> username varchar(255),
> userimage lo);
>
> When I try and insert an image, the app returns "Invalid BLOB Length".
>
> What am I doing Wrong?
>
> Thanks
>
> Travis

Are there any errors in the driver's commlog ("psqlodbc.log") file? You
can also check the odbc trace log. If you can't figure anything out, you
can try sending me the logs and I could take a look.

Byron

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Tom Lane 1999-03-24 14:54:49 Re: [INTERFACES] Problem using Having in a sub-query wit the Count function.
Previous Message Byron Nikolaidis 1999-03-24 14:24:28 Re: [INTERFACES] why there's only char type?