Mercurial > emacs
changeset 34704:7cb3b80e66b8
(sql-sybase-options): New option.
(sql-sybase): Use it. Add sql-database to the list of parameters
provided for login. The options -w 2048 -n are not used any more.
(sql-postgres-options): Changed default from "--pset" to "-P".
(sql-mysql-options): Doc change.
(sql-stop): Doc change.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 19 Dec 2000 10:08:55 +0000 |
parents | 19ac95df016c |
children | ae4ff8f7613c |
files | lisp/progmodes/sql.el |
diffstat | 1 files changed, 7 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/progmodes/sql.el Tue Dec 19 10:06:36 2000 +0000 +++ b/lisp/progmodes/sql.el Tue Dec 19 10:08:55 2000 +0000 @@ -4,7 +4,7 @@ ;; Author: Alex Schroeder <alex@gnu.org> ;; Maintainer: Alex Schroeder <alex@gnu.org> -;; Version: 1.4.23 +;; Version: 1.4.24 ;; Keywords: comm languages processes ;; This file is part of GNU Emacs. @@ -273,7 +273,9 @@ :group 'SQL) (defcustom sql-mysql-options nil - "*List of additional options for `sql-mysql-program'." + "*List of additional options for `sql-mysql-program'. +The following list of options is reported to make things work +on Windows: \"-C\" \"-t\" \"-f\" \"-n\"." :type '(repeat string) :version "20.8" :group 'SQL) @@ -351,10 +353,11 @@ :type 'file :group 'SQL) -(defcustom sql-postgres-options '("--pset" "pager=off") +(defcustom sql-postgres-options '("-P" "pager=off") "*List of additional options for `sql-postgres-program'. -The default setting includes the --pset option which breaks +The default setting includes the -P option which breaks older versions of the psql client (such as version 6.5.3). +The -P option is equivalent to the --pset option. If you want the psql to prompt you for a user name, add the string \"-u\" to the list of options." :type '(repeat string) @@ -1188,8 +1191,6 @@ Writes the input history to a history file using `comint-write-input-ring' and inserts a short message in the SQL buffer. -`comint-comint-input-ring-file-name' is temporarily bound to -`sql-input-ring-file-name'. This function is a sentinel watching the SQL interpreter process. Sentinels will always get the two parameters PROCESS and EVENT."