- Do not read the start-up file /psql.rc or
+ Do not read the start-up file /psqlrc or
~/.psqlrc.
The autocommit-on mode is
PostgreSQL>'s traditional
behavior, but autocommit-off is closer to the SQL spec. If you
prefer autocommit-off, you may wish to set it in the system-wide
- psql.rc or your
+ psqlrc or your
.psqlrc file.
Before starting up,
psql attempts to
read and execute commands from the the system-wide
- psql.rc file and the
+ psqlrc file and the
$HOME/.psqlrc file in the user's home
- directory. See PREFIX>/share/psql.rc.sample>
+ directory. See PREFIX>/share/psqlrc.sample>
for information on setting up the system-wide file. It could be used
to set up the client or the server to taste (using the \set
and SET commands).
# Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
# Portions Copyright (c) 1994, Regents of the University of California
#
-# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.41 2004/04/22 01:53:37 momjian Exp $
+# $PostgreSQL: pgsql/src/bin/psql/Makefile,v 1.42 2004/04/22 14:33:45 momjian Exp $
#
#-------------------------------------------------------------------------
install: all installdirs
$(INSTALL_PROGRAM) psql$(X) $(DESTDIR)$(bindir)/psql$(X)
- $(INSTALL_DATA) $(srcdir)/psql.rc.sample $(DESTDIR)$(datadir)/psql.rc.sample
+ $(INSTALL_DATA) $(srcdir)/psqlrc.sample $(DESTDIR)$(datadir)/psqlrc.sample
installdirs:
$(mkinstalldirs) $(DESTDIR)$(bindir)
-- This file is read before the .psqlrc file in the user's home directory.
--
-- Copy this to your sysconf directory (typically /usr/local/pgsql/etc) and
--- rename it psql.rc.
+-- rename it psqlrc.
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.89 2004/04/22 01:53:37 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/startup.c,v 1.90 2004/04/22 14:33:49 momjian Exp $
*/
#include "postgres_fe.h"
PsqlSettings pset;
#define PSQLRC ".psqlrc"
-#define SYSPSQLRC "psql.rc"
+#define SYSPSQLRC "psqlrc"
/*
* Structures to pass information between the option parsing routine