diff --git a/src/bin/pgaccess/README b/src/bin/pgaccess/README index 69a920ab67..3771708a3d 100644 --- a/src/bin/pgaccess/README +++ b/src/bin/pgaccess/README @@ -22,7 +22,7 @@ PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. --------------------------------------------------------------------------- -PGACCESS 0.98 29 August 1999 +PGACCESS 0.98.4 29 January 2000 ================================ I dedicate this program to my little daughters Ana-Maria and Emilia and to my wife for their understanding. I hope they will forgive me for spending so many diff --git a/src/bin/pgaccess/demo/formdemo.sql b/src/bin/pgaccess/demo/formdemo.sql index 6062c0d200..c802abdc56 100644 --- a/src/bin/pgaccess/demo/formdemo.sql +++ b/src/bin/pgaccess/demo/formdemo.sql @@ -38,12 +38,10 @@ CREATE TABLE "pga_schema" ( REVOKE ALL on "pga_schema" from PUBLIC; GRANT ALL on "pga_schema" to PUBLIC; CREATE TABLE "cities" ( - "id" int4 DEFAULT nextval('"cities_id_seq"') NOT NULL, + "id" int4 DEFAULT nextval ( '"cities_id_seq"' ) NOT NULL, "name" character varying(32) NOT NULL, "prefix" character varying(16) NOT NULL); REVOKE ALL on "cities" from PUBLIC; -GRANT UPDATE,DELETE,SELECT,RULE on "cities" to "fane"; -GRANT ALL on "cities" to "liviu"; CREATE FUNCTION "getcityprefix" (int4 ) RETURNS varchar AS 'select prefix from cities where id = $1 ' LANGUAGE 'SQL'; COPY "pga_queries" FROM stdin; Query that can be saved as view S select * from phonebook where continent='usa' \N \N \N \N diff --git a/src/bin/pgaccess/doc/html/download.html b/src/bin/pgaccess/doc/html/download.html index efbe7bf50a..adc8286f86 100644 --- a/src/bin/pgaccess/doc/html/download.html +++ b/src/bin/pgaccess/doc/html/download.html @@ -14,11 +14,11 @@ Download @@ -28,11 +28,11 @@ be : diff --git a/src/bin/pgaccess/doc/html/faq.html b/src/bin/pgaccess/doc/html/faq.html index f66dd8321a..94d301e2ec 100644 --- a/src/bin/pgaccess/doc/html/faq.html +++ b/src/bin/pgaccess/doc/html/faq.html @@ -2,7 +2,7 @@ - + @@ -77,7 +77,32 @@ forget to send me a copy in order to include it into the standard distribution.< name "namespace" while executing "namespace eval Mainlib  ..."
That means 100% that you have an older version of Tcl/Tk that don't recognize namespaces command. Please upgrade to Tcl/Tk 8.0.x minimum
+9. When saving big forms with a lot of widgets and code inside, a big +error message appears, PgAccess crashes, cannot recover old form, pga_forms +table appears to be corrupted. +
Your form source is exceeding 8000 bytes. A PostgreSQL record +cannot hold more than 8 Kb and pga_forms table is corrupted. Sorry for +your work :-( , your old form cannot be recovered anymore if you don't +have a backup (dumped) database. Upgrade to PgAccess 0.98.3 that will prevent +saving of those big forms. In order to make your form sources smaller, +define some scripts for your form initialize routines or for other big +portions of code and call them from the form code with the command Scripts::execute +"Your space saving code script name"
+


10. I have a dual boot machine with Linux and Windows 9x installed. +PgAccess works fine from Linux but when trying to connect under Windows +it says something about wrong access rights to the same database. Tcl/Tk +version and PostgreSQL server version matches libpgtcl and libpq DLL's. +

Check your Windows TCP/IP configuration. If you configured +the Windows TCP/IP machine address to by dynamic allocated by the server +then it got another IP address, different from Linux. If you have host +based authentication then you have no rights for the database. Change the +Windows TCP/IP configuration and set up manually the same TCP/IP address +as from Linux installation or change the pg_hba.conf configuration file +from the server to allow access to the database from the whole domain not +from a single IP address.
+ +
 
 
 
  diff --git a/src/bin/pgaccess/doc/html/main.html b/src/bin/pgaccess/doc/html/main.html index 2bddfd61d4..afb7a1fc1a 100644 --- a/src/bin/pgaccess/doc/html/main.html +++ b/src/bin/pgaccess/doc/html/main.html @@ -2,7 +2,7 @@ - + @@ -14,14 +14,15 @@ PgAccess has been written by Constantin Teodorescu< using Visual Tcl, the best tool for developing Tcl/Tk applications I've ever seen.

Last version -
Last stable version is 0.98 , released on 29 August 1999. Read
what's -new in 0.98. +
Last stable version is 0.98.5 , released on 30 March 2000. Read what's +new .

Portability issues
PgAccess is available for every platform where PostgreSQL was ported and where a Tcl/Tk package is available. PgAccess has been reported running on :
- Linux
- FreeBSD +
- NetBSD
- Solaris
- HPUX
- Irix diff --git a/src/bin/pgaccess/doc/html/whatsnew.html b/src/bin/pgaccess/doc/html/whatsnew.html index f2faede015..187677f3ac 100644 --- a/src/bin/pgaccess/doc/html/whatsnew.html +++ b/src/bin/pgaccess/doc/html/whatsnew.html @@ -2,9 +2,47 @@ - + +30 March 2000 - PgAccess 0.98.5 +

+29 January 2000 - PgAccess 0.98.4 + +17 January 2000 - PgAccess 0.98.3 + 29 August 1999 - PgAccess 0.98 has been released!