aboutsummaryrefslogtreecommitdiff
path: root/src/bin/pgaccess
Commit message (Collapse)AuthorAge
* Remove pgaccess from CVS. It has its own home now.Bruce Momjian2002-08-30
|
* Another "$@" cleanup with new syntax, ${1+"$@"}.Bruce Momjian2002-07-19
|
* Fix "$@" to ${1:+"$@"} for older shells.Bruce Momjian2002-07-19
|
* Add missing pgaccess copyright file, same as ours.Bruce Momjian2002-07-03
|
* Update to pgaccess 0.91.Bruce Momjian2002-07-02
|
* Update copyright to 2002.Bruce Momjian2002-06-20
|
* Improve COPY syntax to use WITH clause, keep backward compatibility.Bruce Momjian2002-06-20
|
* This patch against 0.98.7 lib/tables.tcl will allow PGAccess to create newBruce Momjian2002-04-04
| | | | | | | | | | records containing apostrophes in text fields without altering the appearance of the entry in the GUI interface (by copying the fldval to fldvalfixed). This will alleviate the need for users to create a record and then go back to edit apostrophes into the text they entered. Ryan Grange
* Fix kanji-coversion key binding. This has been broken since 7.1Tatsuo Ishii2002-02-18
| | | | Per Yoshinori Ariie's report.
* Revert removal of relhaspkey support; fix unnecessary use of pg_index.oid.Tom Lane2001-08-10
|
* Untar copyright.html file and make good version.Bruce Momjian2001-06-18
|
* Remove more NULL lines.Bruce Momjian2001-06-14
|
* Fix nulls in HTML file.Bruce Momjian2001-06-14
| | | | Sergio Bruder
* Properly compute max sys oid for 7.0 and 7.1.Bruce Momjian2001-05-30
|
* Fix missing relation in FROM causing NOTICE. Cleanup.Bruce Momjian2001-05-30
|
* Remove reference to pg_class.relhaspkey from code. Column is unused.Bruce Momjian2001-05-30
|
* Put proper pgaccess Chinese big5 file in place.Bruce Momjian2001-03-29
|
* Here is the chinese_big5 patch for PgAccess. I've tested under ChineseBruce Momjian2001-03-05
| | | | | | | | Windows 2000 without any problem. Have fun. LM.Liu
* Allow pgaccess to input Japanese. See included mail.Tatsuo Ishii2001-02-26
| | | | | | | | | | | | | | | | | | | | | | | Subject: [HACKERS] pgaccess Japanese input capability patch From: Tatsuo Ishii <t-ishii@sra.co.jp> To: teo@flex.ro Cc: pgsql-hackers@postgresql.org, pgsql-interfaces@postgresql.org Date: Sat, 24 Feb 2001 21:41:14 +0900 Hi Teodorescu, I have made patches which enable pgaccess to input Japanese characters in the table editing window. As you might know, to input Japanese characters, we first type in "hiragana" then convert it to "kanji". To make this proccess transparent to tcl application programs, libraries are provided with localized version of Tcl/Tk. The patches bind certain keys to initiate a function (kanjiInput) that is responsible for the conversion process. If the function is not available, those keys will not be binded. Comments? -- Tatsuo Ishii
* chinese-gb -> chinese_gb.Bruce Momjian2001-02-23
|
* Rename to chinese-gbBruce Momjian2001-02-23
|
* The attachement is the Chinese (GB) patch for PgAccess, don't knowBruce Momjian2001-02-22
| | | | | | | | | | | | | | if it's correct to post here. It's simple to do the translation, And I've test in 7.0.2 & current CVS, seems pretty good. If anyone want this little thing, I'll very happy. use it is very simple, just gunzip it and copy to $PGDIR/share/pgaccess/lib/languages/ for current CVS version, and $PGDIR/pgaccess/lib/languages/ for 7.0* BTW: I havn't got the tools to translate it to BIG5 encoding, is there anybody to to it? He Weiping(Laser Henry)
* Add copyright mentions, per Tom Lane.Bruce Momjian2001-02-18
|
* Redo pgaccess' queries about views so that they will work in both 7.1Tom Lane2001-02-07
| | | | | and prior releases --- rely on pg_views view instead of direct access to pg_class and pg_rewrite.
* Not sure why this work script was in the repository ... but it doesn'tTom Lane2001-02-07
| | | | belong ...
* Use explicit path to libpgtcl.so, instead of relying on LD_LIBRARY_PATHTom Lane2001-02-07
| | | | | | or local equivalent. Also, honor --with-pgport configure option for default port number, and allow PGPORT environment variable to override this.
* Add missing pgaccess files.Bruce Momjian2001-01-27
|
* Update to pgaccess 0.98.7.Bruce Momjian2001-01-27
|
* Remove not-really-standard implementation of CREATE TABLE's UNDER clause,Tom Lane2001-01-05
| | | | | | | | | | | and revert documentation to describe the existing INHERITS clause instead, per recent discussion in pghackers. Also fix implementation of SQL_inheritance SET variable: it is not cool to look at this var during the initial parsing phase, only during parse_analyze(). See recent bug report concerning misinterpretation of date constants just after a SET TIMEZONE command. gram.y really has to be an invariant transformation of the query string to a raw parsetree; anything that can vary with time must be done during parse analysis.
* Change ET_WARN to ET_NOTICE to match internal codes, leave message asBruce Momjian2000-12-15
| | | | WARNING. Fix German FAQ mention about warning.
* Add support for VPATH builds, that is, building somewhere else than in thePeter Eisentraut2000-10-20
| | | | | | | | | source directory. This involves mostly makefiles using $(srcdir) when they might have used ".". (Regression tests don't work with this, yet.) Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS). Add "override" keyword in most places, to preserve necessary flags even when the user overrode the flags.
* Add proofreader's changes to docs.Bruce Momjian2000-10-05
| | | | Fix misspelling of disbursion to dispersion.
* Revise Tcl/Tk configuration. Make missing Tcl after --with-tcl an error,Peter Eisentraut2000-09-25
| | | | | | | add --without-tk option to disable Tk. We don't need the AC_PATH_XTRA test because tkConfig.sh already contains all the information about how to compile and link with X. Also make sure that libpq is up to date for libpgtcl. Remove executable bits from pgaccess.sh, but add it to pgaccess.
* Support for DESTDIR make variable. This is used as in `make installPeter Eisentraut2000-09-17
| | | | | | | | | | | | | | | | | | | | | | | | | | DESTDIR=/else/where' and prepends the value of DESTDIR to the full installation paths (e.g., /else/where/usr/local/pgsql/bin). This allows users to install the package into a location different from the one that was configured and hard-coded into various scripts, e.g., for creating binary packages. DESTDIR is in many cases preferrable over `make install prefix=/else/where' because a) `prefix' affects the path that is hard-coded into the files, which can lead to a `make install prefix=xxx' (as done by the regression test driver) corrupting the files in the source tree with wrong paths. b) it doesn't work at all if a directory was overridden to not depend on `prefix', e.g., --sysconfdir=/etc. (Updating the regression test driver to use DESTDIR is a separate undertaking.) See also autoconf@gnu.org, From: Akim Demaille <akim@epita.fr>, Date: 08 Sep 2000 12:48:59 +0200, Message-ID: <mv4em2vb1lw.fsf@nostromo.lrde.epita.fr>, Subject: Re: HTML format documentation.
* Fix relative path references so that make knowns which dependencies referPeter Eisentraut2000-08-31
| | | | | to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
* Makefile cleanup for interface tree. Now essentially with all thePeter Eisentraut2000-06-28
| | | | | | | | | | | | | | | | | | | | | standard targets and behaviour. Replaced Makefile.in's with Makefile's and declared the respective variables in Makefile.global. maintainer-clean target now available at top level, although it does not work in the backend tree yet. Cleanup pass over Makefile.shlib, renamed some targets and variables. The shared library symlink tests are now done by make, not the shell. ecpg: Remove one warning in sloppy flex output. PL/Perl and Perl interface: the MakeMaker documentation is confusing, the realclean target *does* "delete derived files", but it also uninstalls them. Don't use that. The submake targets in the various bin directories that update libpq should `make all', not `make libpq.a'. That is a) unportable, and b) doesn't build the shared library.
* Makefile cleanup for bin and pl subtrees. They should now supportPeter Eisentraut2000-06-27
| | | | | all the standard semantics. Also get rid of Makefile.in's on the way and instead declare all variables in Makefile.global.
* Inheritance overhaul by Chris Bitmead <chris@bitmead.com>Bruce Momjian2000-06-09
|
* Remove pgaccess dll's from the distribution.Bruce Momjian2000-05-27
|
* Fix create user for pgaccess.Bruce Momjian2000-05-14
|
* No ID file needed.Bruce Momjian2000-04-04
|
* Update QNX FAQBruce Momjian2000-04-04
|
* Hi,Bruce Momjian2000-04-03
| | | | | | | | | | | here is an updated version of the bit type with a bugfix and all the necessa ry SQL functions defined. This should replace what is currently in contrib. I'd appreciate any comments on what is there. Kind regards, Adriaan
* Fix pgaccess __wish__ thing.Bruce Momjian2000-03-31
|
* Add new pgaccess languages.Bruce Momjian2000-03-31
|
* Update pgaccess to 0.98.5Bruce Momjian2000-03-31
|
* I have done the QNX4 port with the current source tree. The number ofBruce Momjian1999-12-16
| | | | | | | | backend/Makefiles to be patched could significantly be reduced since they have been adopted to the QNX4 needs. Andreas Kardos
* Remove obsolete note about pg_vlock lock file.Tom Lane1999-11-28
|
* Update to pgaccess 0.98.Bruce Momjian1999-10-31
|
* Update for 0.98.Bruce Momjian1999-10-31
|