Re: [SQL] Max Length of SQL

From: Peter Garner <peter_garner(at)yahoo(dot)com>
To: tim(at)dmcity(dot)net, pierre(at)desertmoon(dot)com, pgsql-sql(at)hub(dot)org
Subject: Re: [SQL] Max Length of SQL
Date: 1999-01-21 19:36:38
Message-ID: 19990121193638.17311.rocketmail@send204.yahoomail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi Tim,

I might be interested in
collaborating as I am presently writing
an offline reader that gets NNTP news
and puts it in postgres. (I have already
done this in C++ but I want to port it
to Java.) If nothing else, you are
welcome to the C++ code. Word of
warning, I have been doing C++ for 11
years but this is my first attempt at
Java! :-) Another word of warning, :-)
I am an itinerant consultant and I tend
to get called off to work in the middle
of personal projects like this! :-)

Right now my C++ program uses LOBs. I
think Herouz is right, however. She
suggested splitting >8K fields into
multiple text fields. E.g. you would
have a table (for nntp news) like :

create table MsgBodies
(
MsgId Text ,
ChunkNumber int ,
MsgBody Text ,

primary key (MsgId , ChunkNumber)
) ;

The majority of nntp msgs would just
have one entry, but a few would be split
into two or more entries.

---Tim Perdue <tim_perdue(at)yahoo(dot)com> wrote:
>that it can talk to NNTP servers too
>(any volunteers????).

==
Peace,
Peter

We are Microsoft of Borg, you will be assimilated!
Resistance is fut... *BZZRRT*
General Protection Fault in MSBorg32.DLL,
Please contact the vendor of this Borg for more information
_________________________________________________________
DO YOU YAHOO!?
Get your free @yahoo.com address at http://mail.yahoo.com

Browse pgsql-sql by date

  From Date Subject
Next Message Tim Perdue 1999-01-21 20:00:31 Java/JDBC/PGSQL Mailing List Archiver
Previous Message Dave Inskeep 1999-01-21 19:12:07 Re: [SQL] Beginner question - select with multiple tables