Re: How to insert from linux to postgreSQL

Поиск
Список
Период
Сортировка
От Ron
Тема Re: How to insert from linux to postgreSQL
Дата
Msg-id ecfa6666-5334-7811-8328-2a953b76c932@gmail.com
обсуждение исходный текст
Ответ на How to insert from linux to postgreSQL  ("Campbell, Lance" <lance@illinois.edu>)
Ответы Re: How to insert from linux to postgreSQL  (Scott Whitney <scott@journyx.com>)
Список pgsql-admin
On 4/8/19 2:03 PM, Campbell, Lance wrote:

PostgreSQL 10.x

 

Use case:

I want to read a log file on my linux server and write each line out to a row in a postgreSQL table.


Presumably some manipulations need to be performed so that you can't just do COPY FROM STDIN?

When I do inserts however I want to make sure I am using prepared statements to avoid SQL injections.  I know how to do this is Java but I have not found an example using a linux bash scripts. 

 

Does anyone have an example they could point me to?


I think the problem is that you need an open connection to use prepared statements, and you can't do that in bash.  What about using Python?  (After all, that's a scripting language, too.)


--
Angular momentum makes the world go 'round.

В списке pgsql-admin по дате отправления:

Предыдущее
От: "Campbell, Lance"
Дата:
Сообщение: How to insert from linux to postgreSQL
Следующее
От: Scott Whitney
Дата:
Сообщение: Re: How to insert from linux to postgreSQL