Re: [INTERFACES] Using psqlodb.dll with a 16-bits application

From: James Olin Oden <joden(at)Lee(dot)k12(dot)nc(dot)us>
To: Alexander Elsenaar <a(dot)elsenaar(at)viewpoint(dot)nl>, pgsql-interfaces(at)postgresql(dot)org
Subject: Re: [INTERFACES] Using psqlodb.dll with a 16-bits application
Date: 1998-07-07 16:49:00
Message-ID: 81Jul6.114032edt.35713@gateway.lee.k12.nc.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

> It is not a regular application but a development environment. (Clarion for Windows 2.003) and I am trying to import a table definition. Any other sugestion?

If this is just a one time thing and you are going from Clarion to Postgress, just export the DBF files (I believe Clarion is DBF formated) as SDF format, and transfer this file over to the Postgres machine. Once there use the copy command to get them in, or write a quick awk script to generate a bunch of selects.

If your going the other way do a select on the table selecting all fields, such as:

select * from blah;

write this select statement to a file and then type:

psql -f queryfile > results

Now you have a fixed length text file (with little bars between each field). With a little massaging you should be able to export it into Clarion.

These are one time solutions though, and will not help you if you need to do this over and over again...james

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Peter T Mount 1998-07-08 05:36:33 Re: [INTERFACES] pb compiling JDBC interface
Previous Message The Hermit Hacker 1998-07-07 14:53:23 Re: [INTERFACES] Already asked?