Re: [GENERAL] Postgresql Development Options

2015-04-05 Thread Steve Atkins
On Apr 5, 2015, at 1:21 PM, Ray Madigan wrote: > I have been using postgresql in java off and on for many years. I now have > an assignemtn where I have to build a very straight forward networked > application that needs to be able to insert Array data types from a windows > environment to

Re: [GENERAL] Overlap function for hstore?

2015-04-05 Thread Stefan Keller
Hi David 2015-04-04 3:16 GMT+02:00 David G. Johnston : > Not tested! > > SELECT hstore(array_agg(key), array_agg(value)) FROM ( > SELECT each(...) > INTERSECT > SELECT each(...) > ) src > > David J. Thanks! SELECT hstore(array_agg((tmp_attr).key), array_agg((tmp_attr).value)) FROM ( SELECT each(

Re: [GENERAL] Policy.c program

2015-04-05 Thread Michael Paquier
On Sun, Apr 5, 2015 at 10:16 PM, Ravi Kiran wrote: > But in the version 9.4.0, I cannot find it. > > I want to know whether this program being removed from this version? No, it has not been removed, this file will be available in the first tarball of the 9.5 series, presumably 9.5 beta1. Still, I

Re: [GENERAL] Postgresql Development Options

2015-04-05 Thread Stefan Keller
Hi, 2015-04-06 0:28 GMT+02:00 Adrian Klaver : ... > I have in the past used Dabo: > > http://dabodev.com/ ... I would have recommended Dabo too. Or Camelot http://www.python-camelot.com/ . Or you can still use Qt with SQLAlchemy which seems to support some PostgreSQL data types:: http://docs.sq

Re: [GENERAL] Postgresql Development Options

2015-04-05 Thread Adrian Klaver
On 04/05/2015 01:46 PM, Ray Madigan wrote: The application will be very small, its main function is as a data acquision tool that reads data from an c api and does minimal processing and feeds it off to a postgresql database for offline processing. I haven't written the PC side application yet,

Re: [GENERAL] Postgresql Development Options

2015-04-05 Thread Gavin Flower
On 06/04/15 08:46, Ray Madigan wrote: The application will be very small, its main function is as a data acquision tool that reads data from an c api and does minimal processing and feeds it off to a postgresql database for offline processing. I haven't written the PC side application yet, jus

Re: [GENERAL] Postgresql Development Options

2015-04-05 Thread Ray Madigan
The application will be very small, its main function is as a data acquision tool that reads data from an c api and does minimal processing and feeds it off to a postgresql database for offline processing. I haven't written the PC side application yet, just a prototype in Qt. It just hast to be a

Re: [GENERAL] Postgresql Development Options

2015-04-05 Thread Adrian Klaver
On 04/05/2015 01:21 PM, Ray Madigan wrote: I have been using postgresql in java off and on for many years. I now have an assignemtn where I have to build a very straight forward networked application that needs to be able to insert Array data types from a windows environment to a remote Linux P

[GENERAL] Postgresql Development Options

2015-04-05 Thread Ray Madigan
I have been using postgresql in java off and on for many years. I now have an assignemtn where I have to build a very straight forward networked application that needs to be able to insert Array data types from a windows environment to a remote Linux Postgresql database. My first attempt was to

Re: [GENERAL] Policy.c program

2015-04-05 Thread Adrian Klaver
On 04/05/2015 06:16 AM, Ravi Kiran wrote: Hi, I am using the postgresql-9.4.0 version. There is a program policy.c which is there in the previous versions. The following link shows the program. http://doxygen.postgresql.org/policy_8c.html But in the version 9.4.0, I cannot find it. I want to

[GENERAL] Policy.c program

2015-04-05 Thread Ravi Kiran
Hi, I am using the postgresql-9.4.0 version. There is a program policy.c which is there in the previous versions. The following link shows the program. http://doxygen.postgresql.org/policy_8c.html But in the version 9.4.0, I cannot find it. I want to know whether this program being removed fro