Re: [Pharo-users] Pharo connect to PostgreSQL

2020-01-20 Thread Sven Van Caekenberghe
Hi, You are not saying which library/framework you are trying to use. One up to date option is P3, the "lean and mean PostgreSQL client for Pharo " [ https://github.com/svenvc/P3 ]. A connection to your database could then be specified using a URL. To test the connection: (P3Client url:

[Pharo-users] Pharo connect to PostgreSQL

2020-01-20 Thread Macmus via Pharo-users
--- Begin Message --- I am trying to connect to a PostgreSQL database from Pharo but I keep getting "SubscriptOutOfBounds: 11" error (I am a beginner). The server is started and the database is working fine. What am I missing? |connectionArguments connection resultSets resultSet rows firstRow|