Re: Using pgAdminIII to view the data written in PostGreSQL

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: Serge Christian Ibala <christian(dot)ibala(at)gmail(dot)com>, psycopg(at)postgresql(dot)org
Subject: Re: Using pgAdminIII to view the data written in PostGreSQL
Date: 2016-02-18 13:42:54
Message-ID: 56C5CA5E.2050704@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: psycopg

On 02/17/2016 04:13 PM, Serge Christian Ibala wrote:
> Hello All,
>
> I have written a small code in Python to write data in a database
> (PostGreSQL) using psycopg2 Library.
>
>
> The python code seems to work very well. My problem starts when I want
> to see the data I put in the database (PostGreSQL) using pgAdminIII
>
>
> I can connect to the database very well but I cannot see the data. Does
> anybody have a small that present the following points?
>
> a)Write data in PostGreSQL database with Python
>
> b)then go see the data written in PostGreSQL data base with pgAdminIII

You are using two separate sessions and if you do not issue a COMMIT in
a) you will not see the data in b)

>
> I have seen on google that few people had the same problem.
>
> Thank you.
>
> Kind Regards,
>
> Christian.
>

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Responses

Browse psycopg by date

  From Date Subject
Next Message Adrian Klaver 2016-02-18 15:47:31 Re: Using pgAdminIII to view the data written in PostGreSQL
Previous Message Serge Christian Ibala 2016-02-18 00:13:55 Using pgAdminIII to view the data written in PostGreSQL