[INTERFACES] What is the right interface??? - Mailing list pgsql-interfaces

From SWagner17
Subject [INTERFACES] What is the right interface???
Date
Msg-id 199811221303_MC2-6121-C8C2@compuserve.com
Whole thread Raw
List pgsql-interfaces
>I'm new in Postgresql and I need to make a simple user interface
>(input/query form).  I don't know python, java, tk/tcl, OpenGL or perl,
>altough I'm a fairly good C/C++/shell programmer.


The easiest way to query your database is the following:
create a file myQuery.sql:

## QUERY/SQL
## Usage: myQuery.sql    "x.col1 = CONDITION"
##
psql myDatabase -c "select
    x.col1,
        y.col2
    from
    xTable x,
    yTable y
    where
    x.fkey = y.key
    AND $*
    order by x.col1"
// eof--------------------
and make it executable.
Of couse this not very flexible, and not usable for inserting data.


pgsql-interfaces by date:

Previous
From: Peter T Mount
Date:
Subject: Re: [INTERFACES] looking for postgresql.jar for 6.3
Next
From: "Ki won, Song"
Date:
Subject: How to use ecpg...??