From: | Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com> |
---|---|
To: | Arthur Lewis <arthur(dot)lewis(at)hypermediasystems(dot)com>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: insert a text file into a variable in order to insert into a bytea column |
Date: | 2016-01-28 18:20:43 |
Message-ID: | 56AA5BFB.30808@aklaver.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On 01/28/2016 10:10 AM, Arthur Lewis wrote:
> Hello,
> I have a file called file.txt that is 53604 bytes. When I do the following
>
> \set stext `cat file.txt`
>
> select length(:'stext'); length
> --------
> 53603
>
> it seems that one byte (the last newline character) is chomped off. How can I import a text file into a variable and insert it into a bytea column without losing the last newline byte.
Are sure it is not cat that is chomping the byte?:
aklaver(at)killi:~> cat test.txt
Test
second line
aklaver(at)killi:~> cat -A test.txt
Test$
second line$
>
> What I want to do is something like this:
>
> \set stext `cat file.txt`
> insert into stored_files (file_name,file_text) values ('file',:'stext');
>
> without losing a character within the variable stext.
>
> In table stored_files, file_name is text and file_text is bytea.
>
> I'm using psql 9.3.10 on Ubuntu 14 Linux (32 bit.)
> I cannot use pg_read_file because that is for the server side, and I'm on the client side.
>
> There should be an easy way to get a text file into a database column.
>
> Thank you,
> Arthur Lewis
>
>
--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com
From | Date | Subject | |
---|---|---|---|
Next Message | Arthur Lewis | 2016-01-28 18:46:16 | Re: insert a text file into a variable in order to insert into a bytea column |
Previous Message | Arthur Lewis | 2016-01-28 18:10:53 | insert a text file into a variable in order to insert into a bytea column |