On December 7, 2009 12:07:49 pm Daniel wrote:
> I want ot store chunks of data (only about five Kb each) on a database
> and have users download (across a network) these chunks to their local
> disk drive. Is a blob a good way to store these chunks?
>
> Thanks.
>
Put me on the list of recommendin
FYI
I thought it was a good read, hope someone else finds it useful
http://www.ibm.com/developerworks/opensource/library/os-
postgresecurity/index.html
Colin
--
You own a dog, but you can only feed a cat.
--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes t
I'm probably a little late to this discussion, but I have had issues before
with BYTEA in postgres before as well, this is what I found worked.
use Digest::MD5;
use DBI qw(:sql_types);
use DBD::Pg qw(:pg_types);
sub InsertBin($$$)
{
my ( $dbh, $md5sum, $filename ) = @_;
Also, I don't know if this applies to windows systems, but on linux systems
you have to also modify postgresql.conf
On my system, it is in the same directory as pg_hba.conf
looks like this:
#--
# CONNECTIONS AND AUTHENTIC