Postgresql Windows ODBC

Started by Nonamealmost 21 years ago6 messagesgeneral
Jump to latest
#1Noname
Typing80wpm@aol.com

Tonight I shall install the Postgresql ODBC driver which I downloaded, and
experiment.

Is anyone using ODBC? I was looking at Realbasic standard edition (not
professional), and thinking of downloading the demo and trying it with the ODBC.
Anyone here use Realbasic at all?

In Windows, what would you say is the easiest language to use which can talk
to Postgresql? Just curious.... e.g. I have Liberty Basic which is very
easy, but does not easily support ODBC...

Is anyone working with some form of Python on Windows. I downloaded Python,
but it seems to run only in some DOS window. I mentioned this on a
Dreamcard/Revolution board, and they said "Oh, you want PYTHON CARD."

Anyway, I would be interested to learn of an easy language which can access
Postgresql, together with some decent examples or tutorials to get me going.
I have a feeling that Realbasic will do the trick.

#2John DeSoi
desoi@pgedit.com
In reply to: Noname (#1)
Re: Postgresql Windows ODBC

On Apr 22, 2005, at 8:07 AM, Typing80wpm@aol.com wrote:

Tonight I shall install the Postgresql ODBC driver which I downloaded,
and experiment.
 
Is anyone using ODBC?  I was looking at Realbasic standard edition
(not professional), and thinking of downloading the demo and trying it
with the ODBC.  Anyone here use Realbasic at all?
 
In Windows, what would you say is the easiest language to use which
can talk to Postgresql? Just curious....    e.g. I have Liberty Basic
which is very easy, but does not easily support ODBC...
 
Is anyone working with some form of Python on Windows.  I downloaded
Python, but it seems to run only in some DOS window. I mentioned this
on a Dreamcard/Revolution board, and they said "Oh, you want PYTHON 
CARD."
 
Anyway, I would be interested to learn of an easy language which can
access Postgresql, together with some decent examples or tutorials to
get me going.  I have a feeling that Realbasic will do the trick.

My take is that the professional version is well worth the extra $300
if you are really serious about doing database development. It has
support for PostgreSQL and a lot of other databases already included.
If I was developing an application for some one else to use, ODBC would
be my last choice because of the configuration and setup hassles.

John DeSoi, Ph.D.
http://pgedit.com/
Power Tools for PostgreSQL

#3Tony Caduto
tony_caduto@amsoftwaredesign.com
In reply to: John DeSoi (#2)
Re: Postgresql Windows ODBC

In my opinion the easiest language for any database development is
Borland Delphi bar NONE.
You can get the pro version for for 499.99 as a upgrade or a personal
editon is also available for free or little cost.
You might even be able to get a copy of Delphi 7 on ebay for much less.

For Postgres development I use the Zeos components(www.zeoslib.net) and
PostgresDAC(www.micoolap.com).

Here is a quick example of how to execute a query with params in Delphi
with a tdataset compatible query component.

myquery.clear;
myquery.add('select firstname from companyinfo where lastname = :PARAM1');
parambyname('PARAM1').asstring:= 'smith';
myquery.open;

At this point if you have bound the query to a grid you will see the
data, or you could loop through the result set like this:

myquery.first;
while not myquery.eof do
begin
showmessage(myquery.fieldbyname('firstname').asstring);
myquery.next;
end;

The above code also works on Oracle, MS SQL, Mysql, DB2 etc etc as long
as you use a tdataset compatible component set.

I have used C#, VB.net and VB classic and NONE of them are as easy and
intuitive to use for database development as Delphi NONE.

Delphi 2005 also includes Delphi.net and C# along with native win32
development in pascal, you can also use the Kylix with the Zeos
components for development on Linux, and while there has not been a
update to Kylix in awhile, it still works great.

You can do lots more stuff with Delphi as well, just about anything you
could do in C or C++ minus device drivers.

Tony Caduto
AM Software Design
Home of PG Lightning Admin for Postgresql 8.x
http://www.amsoftwaredesign.com

Show quoted text

?

In Windows, what would you say is the easiest language to use which
can talk to Postgresql? Just curious.... e.g. I have Liberty Basic
which is very easy, but does not easily support ODBC...

Is anyone working with some form of Python on Windows. I downloaded
Python, but it seems to run only in some DOS window. I mentioned this
on a Dreamcard/Revolution board, and they said "Oh, you want PYTHON
CARD."

Anyway, I would be interested to learn of an easy language which can
access Postgresql, together with some decent examples or tutorials to
get me going. I have a feeling that Realbasic will do the trick.

#4Jeff Eckermann
jeff_eckermann@yahoo.com
In reply to: Noname (#1)
Re: Postgresql Windows ODBC

<Typing80wpm@aol.com> wrote in message news:99.5cf7f551.2f9a42e8@aol.com...

Tonight I shall install the Postgresql ODBC driver which I downloaded, and
experiment.

Is anyone using ODBC? I was looking at Realbasic standard edition (not
professional), and thinking of downloading the demo and trying it with the
ODBC.
Anyone here use Realbasic at all?

In Windows, what would you say is the easiest language to use which can
talk
to Postgresql? Just curious.... e.g. I have Liberty Basic which is
very
easy, but does not easily support ODBC...

Is anyone working with some form of Python on Windows. I downloaded
Python,
but it seems to run only in some DOS window. I mentioned this on a
Dreamcard/Revolution board, and they said "Oh, you want PYTHON CARD."

Anyway, I would be interested to learn of an easy language which can
access
Postgresql, together with some decent examples or tutorials to get me
going.
I have a feeling that Realbasic will do the trick.

Your question is too broad to be easily answered. What kind of application
do you want to create, to meet what need for whom? In what kind of business
environment will it be running?

#5Dann Corbit
DCorbit@connx.com
In reply to: Jeff Eckermann (#4)
Re: Postgresql Windows ODBC

________________________________

From: pgsql-general-owner@postgresql.org
[mailto:pgsql-general-owner@postgresql.org] On Behalf Of
Typing80wpm@aol.com
Sent: Friday, April 22, 2005 5:07 AM
To: pgsql-general@postgresql.org
Subject: [GENERAL] Postgresql Windows ODBC

Tonight I shall install the Postgresql ODBC driver which I downloaded,
and experiment.

Is anyone using ODBC?

We use PostgreSQL for lots of things. For instance, there is a tool we
wrote that synchronizes database systems from any platform and database
type into any alternative platform and database type. So (for instance)
you can take VSAM files and create an Oracle data warehouse from it. We
use PostgreSQL for intermediate steps and for doing customized metadata
storage. It performs admirably. We are using OLEDB as the interface
with VB.NET. We are using a driver we wrote ourselves, but I imagine
that the sourceforge one would serve well for most purposes. (PostgreSQL
can also be the source or target database and some customers are using
it for that).

<<

I was looking at Realbasic standard edition (not professional), and
thinking of downloading the demo and trying it with the ODBC. Anyone
here use Realbasic at all?

In Windows, what would you say is the easiest language to use which can
talk to Postgresql?

Use the language that you are most familiar with and that your customers
will be able to maintain.

<<

Just curious.... e.g. I have Liberty Basic which is very easy, but
does not easily support ODBC...

Is anyone working with some form of Python on Windows. I downloaded
Python, but it seems to run only in some DOS window. I mentioned this on
a Dreamcard/Revolution board, and they said "Oh, you want PYTHON CARD."

Anyway, I would be interested to learn of an easy language which can
access Postgresql, together with some decent examples or tutorials to
get me going. I have a feeling that Realbasic will do the trick.

I am guessing that there is some easy way to make it work. Surely,
there will be some kind of standardized interface like ODBC, OLEDB or a
.NET provider. If not, there may be a product very similar to RealBasic
that you can use. A web search might be helpful. Try this:

http://www.google.com/search?hl=en&amp;q=realbasic+AND+%28odbc+OR+oledb+OR+%
28%22.net+provider%22%29%29&btnG=Google+Search

<<

#6William Yu
wyu@talisys.com
In reply to: Noname (#1)
Re: Postgresql Windows ODBC

Depends for what purpose. I've found that if you're heavy into doing
user interface stuff on Windows, Delphi is great for that. Lots of
built-in widgets plus zillions of 3rd party addins makes it easy to drag
and drop your way to full-blown apps.

For data manipulaton, my opinion is nothing beats Visual FoxPro. While
it also has screen/forms/report designer stuff, it just doesn't feel as
fast and elegant as Delphi. But if you need to parse/alter/sort data
before dumping it into Postgres, VFP makes your life so easy. It's
especially good for power users doing adhocs. In theory, a power user
could write that perfect query that gets the data they precisely the way
they want it. In reality, it's a lot of trial and error. Using VFP, you
could just get the records and then use the plethora of XBase commands
to manipulate the results to your heart's desire.

For building web apps, I dunno too much about since I use Perl on Linux
for that. However, Ruby on Rails looks pretty UI friendly in being able
to build a website w/ limited coding.

Show quoted text

In Windows, what would you say is the easiest language to use which can
talk to Postgresql? Just curious.... e.g. I have Liberty Basic which
is very easy, but does not easily support ODBC...