


Dealing with BLOBs in Postgres? 16
Greyfox asks: "I've got a question and it's been bugging me for a while. I'm trying to do some database programming with Java and PostgresSQL. I've got an array of bytes I'd like to store in the database and I can't quite figure out how to do it. I've tried the method suggested in their old documentation (Which involves doing some JDBC thing with a FileInputStream) and some esoteric BLOB thing involving ResultSet.setBytes() and a more esoteric BLOB thing involving their LargeObjectManager and when I'm at my most successful I get error messages back griping about unexpected EOFs from the connection manager or somesuch. The documentation, example code and web searches have all been profoundly unhelpful. Am I going about this the right way and if I am, what am I missing?"
BLOB data in Postgres (Score:1)
One question:
How sure are you that your database tables are configured to be able to store BLOB data? Don't you need to specify some sort of separate tablespace to store the blob data and then assign a table column to use that space?
Re:BLOB data in Postgres (Score:2)
Funny (Score:2, Informative)
Or you can use bytea or TEXT like I do.
-Dave
What's going on with Slashdot? (Score:3, Interesting)
When I have a problem of such type and I cannot solve it myself I usually find relevant maillist and ask where. If problem is not very hard chances are that it will be answered in minutes.
I just don't get why editors pass such submissions and people submit them. It just doesn't make any sense. If you post in PostgreSQL maillist chances that in the future another person with same problem will find solution in its archives. But who in good state of mind will search for solution of PostgreSQL very specific problem on Slashdot? On the other side I'm sure that submitter of this query will have to wait longer for reply which could solve his problems (probably forever).
Re:What's going on with Slashdot? (Score:2, Informative)
You are so right.
Esp. when you go to google and type in:
postgres 7.1 blob jdbc
you get the following link on the first page of search results:
http://www.postgresql.org/idocs/index.php?jdbc-
Possible Solution (Score:2, Informative)
I never actually implemented this, but it should be fairly easy to do (either outside the DB or using a Postgres user-defined function.
The existing BLOB support is documented briefly Here [postgresql.org], but quite honestly it... well sucks.
Re:Possible Solution (Score:1, Troll)
Shameless plug (Score:1, Offtopic)
PostgreSQL JDBC docs (Score:2, Informative)
I'm going to be modded down for that but... (Score:1)