Backport the :end-of-capability fix
[emacs.git] / lisp / progmodes / sql.el
blob6fac2221f6f3d9958b0523f9c2ca711933cceb51
1 ;;; sql.el --- specialized comint.el for SQL interpreters -*- lexical-binding: t -*-
3 ;; Copyright (C) 1998-2015 Free Software Foundation, Inc.
5 ;; Author: Alex Schroeder <alex@gnu.org>
6 ;; Maintainer: Michael Mauger <michael@mauger.com>
7 ;; Version: 3.4
8 ;; Keywords: comm languages processes
9 ;; URL: http://savannah.gnu.org/projects/emacs/
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; Please send bug reports and bug fixes to the mailing list at
29 ;; help-gnu-emacs@gnu.org. If you want to subscribe to the mailing
30 ;; list, see the web page at
31 ;; http://lists.gnu.org/mailman/listinfo/help-gnu-emacs for
32 ;; instructions. I monitor this list actively. If you send an e-mail
33 ;; to Alex Schroeder it usually makes it to me when Alex has a chance
34 ;; to forward them along (Thanks, Alex).
36 ;; This file provides a sql-mode and a sql-interactive-mode. The
37 ;; original goals were two simple modes providing syntactic
38 ;; highlighting. The interactive mode had to provide a command-line
39 ;; history; the other mode had to provide "send region/buffer to SQL
40 ;; interpreter" functions. "simple" in this context means easy to
41 ;; use, easy to maintain and little or no bells and whistles. This
42 ;; has changed somewhat as experience with the mode has accumulated.
44 ;; Support for different flavors of SQL and command interpreters was
45 ;; available in early versions of sql.el. This support has been
46 ;; extended and formalized in later versions. Part of the impetus for
47 ;; the improved support of SQL flavors was borne out of the current
48 ;; maintainers consulting experience. In the past twenty years, I
49 ;; have used Oracle, Sybase, Informix, MySQL, Postgres, and SQLServer.
50 ;; On some assignments, I have used two or more of these concurrently.
52 ;; If anybody feels like extending this sql mode, take a look at the
53 ;; above mentioned modes and write a sqlx-mode on top of this one. If
54 ;; this proves to be difficult, please suggest changes that will
55 ;; facilitate your plans. Facilities have been provided to add
56 ;; products and product-specific configuration.
58 ;; sql-interactive-mode is used to interact with a SQL interpreter
59 ;; process in a SQLi buffer (usually called `*SQL*'). The SQLi buffer
60 ;; is created by calling a SQL interpreter-specific entry function or
61 ;; sql-product-interactive. Do *not* call sql-interactive-mode by
62 ;; itself.
64 ;; The list of currently supported interpreters and the corresponding
65 ;; entry function used to create the SQLi buffers is shown with
66 ;; `sql-help' (M-x sql-help).
68 ;; Since sql-interactive-mode is built on top of the general
69 ;; command-interpreter-in-a-buffer mode (comint mode), it shares a
70 ;; common base functionality, and a common set of bindings, with all
71 ;; modes derived from comint mode. This makes these modes easier to
72 ;; use.
74 ;; sql-mode can be used to keep editing SQL statements. The SQL
75 ;; statements can be sent to the SQL process in the SQLi buffer.
77 ;; For documentation on the functionality provided by comint mode, and
78 ;; the hooks available for customizing it, see the file `comint.el'.
80 ;; Hint for newbies: take a look at `dabbrev-expand', `abbrev-mode', and
81 ;; `imenu-add-menubar-index'.
83 ;;; Bugs:
85 ;; sql-ms now uses osql instead of isql. Osql flushes its error
86 ;; stream more frequently than isql so that error messages are
87 ;; available. There is no prompt and some output still is buffered.
88 ;; This improves the interaction under Emacs but it still is somewhat
89 ;; awkward.
91 ;; Quoted identifiers are not supported for highlighting. Most
92 ;; databases support the use of double quoted strings in place of
93 ;; identifiers; ms (Microsoft SQLServer) also supports identifiers
94 ;; enclosed within brackets [].
96 ;;; Product Support:
98 ;; To add support for additional SQL products the following steps
99 ;; must be followed ("xyz" is the name of the product in the examples
100 ;; below):
102 ;; 1) Add the product to the list of known products.
104 ;; (sql-add-product 'xyz "XyzDB"
105 ;; '(:free-software t))
107 ;; 2) Define font lock settings. All ANSI keywords will be
108 ;; highlighted automatically, so only product specific keywords
109 ;; need to be defined here.
111 ;; (defvar my-sql-mode-xyz-font-lock-keywords
112 ;; '(("\\b\\(red\\|orange\\|yellow\\)\\b"
113 ;; . font-lock-keyword-face))
114 ;; "XyzDB SQL keywords used by font-lock.")
116 ;; (sql-set-product-feature 'xyz
117 ;; :font-lock
118 ;; 'my-sql-mode-xyz-font-lock-keywords)
120 ;; 3) Define any special syntax characters including comments and
121 ;; identifier characters.
123 ;; (sql-set-product-feature 'xyz
124 ;; :syntax-alist ((?# . "_")))
126 ;; 4) Define the interactive command interpreter for the database
127 ;; product.
129 ;; (defcustom my-sql-xyz-program "ixyz"
130 ;; "Command to start ixyz by XyzDB."
131 ;; :type 'file
132 ;; :group 'SQL)
134 ;; (sql-set-product-feature 'xyz
135 ;; :sqli-program 'my-sql-xyz-program)
136 ;; (sql-set-product-feature 'xyz
137 ;; :prompt-regexp "^xyzdb> ")
138 ;; (sql-set-product-feature 'xyz
139 ;; :prompt-length 7)
141 ;; 5) Define login parameters and command line formatting.
143 ;; (defcustom my-sql-xyz-login-params '(user password server database)
144 ;; "Login parameters to needed to connect to XyzDB."
145 ;; :type 'sql-login-params
146 ;; :group 'SQL)
148 ;; (sql-set-product-feature 'xyz
149 ;; :sqli-login 'my-sql-xyz-login-params)
151 ;; (defcustom my-sql-xyz-options '("-X" "-Y" "-Z")
152 ;; "List of additional options for `sql-xyz-program'."
153 ;; :type '(repeat string)
154 ;; :group 'SQL)
156 ;; (sql-set-product-feature 'xyz
157 ;; :sqli-options 'my-sql-xyz-options))
159 ;; (defun my-sql-comint-xyz (product options)
160 ;; "Connect ti XyzDB in a comint buffer."
162 ;; ;; Do something with `sql-user', `sql-password',
163 ;; ;; `sql-database', and `sql-server'.
164 ;; (let ((params
165 ;; (append
166 ;; (if (not (string= "" sql-user))
167 ;; (list "-U" sql-user))
168 ;; (if (not (string= "" sql-password))
169 ;; (list "-P" sql-password))
170 ;; (if (not (string= "" sql-database))
171 ;; (list "-D" sql-database))
172 ;; (if (not (string= "" sql-server))
173 ;; (list "-S" sql-server))
174 ;; options)))
175 ;; (sql-comint product params)))
177 ;; (sql-set-product-feature 'xyz
178 ;; :sqli-comint-func 'my-sql-comint-xyz)
180 ;; 6) Define a convenience function to invoke the SQL interpreter.
182 ;; (defun my-sql-xyz (&optional buffer)
183 ;; "Run ixyz by XyzDB as an inferior process."
184 ;; (interactive "P")
185 ;; (sql-product-interactive 'xyz buffer))
187 ;;; To Do:
189 ;; Improve keyword highlighting for individual products. I have tried
190 ;; to update those database that I use. Feel free to send me updates,
191 ;; or direct me to the reference manuals for your favorite database.
193 ;; When there are no keywords defined, the ANSI keywords are
194 ;; highlighted. ANSI keywords are highlighted even if the keyword is
195 ;; not used for your current product. This should help identify
196 ;; portability concerns.
198 ;; Add different highlighting levels.
200 ;; Add support for listing available tables or the columns in a table.
202 ;;; Thanks to all the people who helped me out:
204 ;; Alex Schroeder <alex@gnu.org> -- the original author
205 ;; Kai Blauberg <kai.blauberg@metla.fi>
206 ;; <ibalaban@dalet.com>
207 ;; Yair Friedman <yfriedma@JohnBryce.Co.Il>
208 ;; Gregor Zych <zych@pool.informatik.rwth-aachen.de>
209 ;; nino <nino@inform.dk>
210 ;; Berend de Boer <berend@pobox.com>
211 ;; Adam Jenkins <adam@thejenkins.org>
212 ;; Michael Mauger <michael@mauger.com> -- improved product support
213 ;; Drew Adams <drew.adams@oracle.com> -- Emacs 20 support
214 ;; Harald Maier <maierh@myself.com> -- sql-send-string
215 ;; Stefan Monnier <monnier@iro.umontreal.ca> -- font-lock corrections;
216 ;; code polish
217 ;; Paul Sleigh <bat@flurf.net> -- MySQL keyword enhancement
218 ;; Andrew Schein <andrew@andrewschein.com> -- sql-port bug
219 ;; Ian Bjorhovde <idbjorh@dataproxy.com> -- db2 escape newlines
220 ;; incorrectly enabled by default
221 ;; Roman Scherer <roman.scherer@nugg.ad> -- Connection documentation
222 ;; Mark Wilkinson <wilkinsonmr@gmail.com> -- file-local variables ignored
227 ;;; Code:
229 (require 'cl-lib)
230 (require 'comint)
231 ;; Need the following to allow GNU Emacs 19 to compile the file.
232 (eval-when-compile
233 (require 'regexp-opt))
234 (require 'custom)
235 (require 'thingatpt)
236 (require 'view)
238 (defvar font-lock-keyword-face)
239 (defvar font-lock-set-defaults)
240 (defvar font-lock-string-face)
242 ;;; Allow customization
244 (defgroup SQL nil
245 "Running a SQL interpreter from within Emacs buffers."
246 :version "20.4"
247 :group 'languages
248 :group 'processes)
250 ;; These five variables will be used as defaults, if set.
252 (defcustom sql-user ""
253 "Default username."
254 :type 'string
255 :group 'SQL
256 :safe 'stringp)
258 (defcustom sql-password ""
259 "Default password.
260 If you customize this, the value will be stored in your init
261 file. Since that is a plaintext file, this could be dangerous."
262 :type 'string
263 :group 'SQL
264 :risky t)
266 (defcustom sql-database ""
267 "Default database."
268 :type 'string
269 :group 'SQL
270 :safe 'stringp)
272 (defcustom sql-server ""
273 "Default server or host."
274 :type 'string
275 :group 'SQL
276 :safe 'stringp)
278 (defcustom sql-port 0
279 "Default port for connecting to a MySQL or Postgres server."
280 :version "24.1"
281 :type 'number
282 :group 'SQL
283 :safe 'numberp)
285 ;; Login parameter type
287 (define-widget 'sql-login-params 'lazy
288 "Widget definition of the login parameters list"
289 :tag "Login Parameters"
290 :type '(set :tag "Login Parameters"
291 (choice :tag "user"
292 :value user
293 (const user)
294 (list :tag "Specify a default"
295 (const user)
296 (list :tag "Default"
297 :inline t (const :default) string)))
298 (const password)
299 (choice :tag "server"
300 :value server
301 (const server)
302 (list :tag "Specify a default"
303 (const server)
304 (list :tag "Default"
305 :inline t (const :default) string))
306 (list :tag "file"
307 (const :format "" server)
308 (const :format "" :file)
309 regexp)
310 (list :tag "completion"
311 (const :format "" server)
312 (const :format "" :completion)
313 (restricted-sexp
314 :match-alternatives (listp stringp))))
315 (choice :tag "database"
316 :value database
317 (const database)
318 (list :tag "Specify a default"
319 (const database)
320 (list :tag "Default"
321 :inline t (const :default) string))
322 (list :tag "file"
323 (const :format "" database)
324 (const :format "" :file)
325 regexp)
326 (list :tag "completion"
327 (const :format "" database)
328 (const :format "" :completion)
329 (restricted-sexp
330 :match-alternatives (listp stringp))))
331 (const port)))
333 ;; SQL Product support
335 (defvar sql-interactive-product nil
336 "Product under `sql-interactive-mode'.")
338 (defvar sql-connection nil
339 "Connection name if interactive session started by `sql-connect'.")
341 (defvar sql-product-alist
342 '((ansi
343 :name "ANSI"
344 :font-lock sql-mode-ansi-font-lock-keywords
345 :statement sql-ansi-statement-starters)
347 (db2
348 :name "DB2"
349 :font-lock sql-mode-db2-font-lock-keywords
350 :sqli-program sql-db2-program
351 :sqli-options sql-db2-options
352 :sqli-login sql-db2-login-params
353 :sqli-comint-func sql-comint-db2
354 :prompt-regexp "^db2 => "
355 :prompt-length 7
356 :prompt-cont-regexp "^db2 (cont\.) => "
357 :input-filter sql-escape-newlines-filter)
359 (informix
360 :name "Informix"
361 :font-lock sql-mode-informix-font-lock-keywords
362 :sqli-program sql-informix-program
363 :sqli-options sql-informix-options
364 :sqli-login sql-informix-login-params
365 :sqli-comint-func sql-comint-informix
366 :prompt-regexp "^> "
367 :prompt-length 2
368 :syntax-alist ((?{ . "<") (?} . ">")))
370 (ingres
371 :name "Ingres"
372 :font-lock sql-mode-ingres-font-lock-keywords
373 :sqli-program sql-ingres-program
374 :sqli-options sql-ingres-options
375 :sqli-login sql-ingres-login-params
376 :sqli-comint-func sql-comint-ingres
377 :prompt-regexp "^\* "
378 :prompt-length 2
379 :prompt-cont-regexp "^\* ")
381 (interbase
382 :name "Interbase"
383 :font-lock sql-mode-interbase-font-lock-keywords
384 :sqli-program sql-interbase-program
385 :sqli-options sql-interbase-options
386 :sqli-login sql-interbase-login-params
387 :sqli-comint-func sql-comint-interbase
388 :prompt-regexp "^SQL> "
389 :prompt-length 5)
391 (linter
392 :name "Linter"
393 :font-lock sql-mode-linter-font-lock-keywords
394 :sqli-program sql-linter-program
395 :sqli-options sql-linter-options
396 :sqli-login sql-linter-login-params
397 :sqli-comint-func sql-comint-linter
398 :prompt-regexp "^SQL>"
399 :prompt-length 4)
402 :name "Microsoft"
403 :font-lock sql-mode-ms-font-lock-keywords
404 :sqli-program sql-ms-program
405 :sqli-options sql-ms-options
406 :sqli-login sql-ms-login-params
407 :sqli-comint-func sql-comint-ms
408 :prompt-regexp "^[0-9]*>"
409 :prompt-length 5
410 :syntax-alist ((?@ . "_"))
411 :terminator ("^go" . "go"))
413 (mysql
414 :name "MySQL"
415 :free-software t
416 :font-lock sql-mode-mysql-font-lock-keywords
417 :sqli-program sql-mysql-program
418 :sqli-options sql-mysql-options
419 :sqli-login sql-mysql-login-params
420 :sqli-comint-func sql-comint-mysql
421 :list-all "SHOW TABLES;"
422 :list-table "DESCRIBE %s;"
423 :prompt-regexp "^mysql> "
424 :prompt-length 6
425 :prompt-cont-regexp "^ -> "
426 :syntax-alist ((?# . "< b"))
427 :input-filter sql-remove-tabs-filter)
429 (oracle
430 :name "Oracle"
431 :font-lock sql-mode-oracle-font-lock-keywords
432 :sqli-program sql-oracle-program
433 :sqli-options sql-oracle-options
434 :sqli-login sql-oracle-login-params
435 :sqli-comint-func sql-comint-oracle
436 :list-all sql-oracle-list-all
437 :list-table sql-oracle-list-table
438 :completion-object sql-oracle-completion-object
439 :prompt-regexp "^SQL> "
440 :prompt-length 5
441 :prompt-cont-regexp "^\\(?:[ ][ ][1-9]\\|[ ][1-9][0-9]\\|[1-9][0-9]\\{2\\}\\)[ ]\\{2\\}"
442 :statement sql-oracle-statement-starters
443 :syntax-alist ((?$ . "_") (?# . "_"))
444 :terminator ("\\(^/\\|;\\)$" . "/")
445 :input-filter sql-placeholders-filter)
447 (postgres
448 :name "Postgres"
449 :free-software t
450 :font-lock sql-mode-postgres-font-lock-keywords
451 :sqli-program sql-postgres-program
452 :sqli-options sql-postgres-options
453 :sqli-login sql-postgres-login-params
454 :sqli-comint-func sql-comint-postgres
455 :list-all ("\\d+" . "\\dS+")
456 :list-table ("\\d+ %s" . "\\dS+ %s")
457 :completion-object sql-postgres-completion-object
458 :prompt-regexp "^\\w*=[#>] "
459 :prompt-length 5
460 :prompt-cont-regexp "^\\w*[-(][#>] "
461 :input-filter sql-remove-tabs-filter
462 :terminator ("\\(^\\s-*\\\\g$\\|;\\)" . "\\g"))
464 (solid
465 :name "Solid"
466 :font-lock sql-mode-solid-font-lock-keywords
467 :sqli-program sql-solid-program
468 :sqli-options sql-solid-options
469 :sqli-login sql-solid-login-params
470 :sqli-comint-func sql-comint-solid
471 :prompt-regexp "^"
472 :prompt-length 0)
474 (sqlite
475 :name "SQLite"
476 :free-software t
477 :font-lock sql-mode-sqlite-font-lock-keywords
478 :sqli-program sql-sqlite-program
479 :sqli-options sql-sqlite-options
480 :sqli-login sql-sqlite-login-params
481 :sqli-comint-func sql-comint-sqlite
482 :list-all ".tables"
483 :list-table ".schema %s"
484 :completion-object sql-sqlite-completion-object
485 :prompt-regexp "^sqlite> "
486 :prompt-length 8
487 :prompt-cont-regexp "^ \.\.\.> "
488 :terminator ";")
490 (sybase
491 :name "Sybase"
492 :font-lock sql-mode-sybase-font-lock-keywords
493 :sqli-program sql-sybase-program
494 :sqli-options sql-sybase-options
495 :sqli-login sql-sybase-login-params
496 :sqli-comint-func sql-comint-sybase
497 :prompt-regexp "^SQL> "
498 :prompt-length 5
499 :syntax-alist ((?@ . "_"))
500 :terminator ("^go" . "go"))
502 "An alist of product specific configuration settings.
504 Without an entry in this list a product will not be properly
505 highlighted and will not support `sql-interactive-mode'.
507 Each element in the list is in the following format:
509 \(PRODUCT FEATURE VALUE ...)
511 where PRODUCT is the appropriate value of `sql-product'. The
512 product name is then followed by FEATURE-VALUE pairs. If a
513 FEATURE is not specified, its VALUE is treated as nil. FEATURE
514 may be any one of the following:
516 :name string containing the displayable name of
517 the product.
519 :free-software is the product Free (as in Freedom) software?
521 :font-lock name of the variable containing the product
522 specific font lock highlighting patterns.
524 :sqli-program name of the variable containing the product
525 specific interactive program name.
527 :sqli-options name of the variable containing the list
528 of product specific options.
530 :sqli-login name of the variable containing the list of
531 login parameters (i.e., user, password,
532 database and server) needed to connect to
533 the database.
535 :sqli-comint-func name of a function which accepts no
536 parameters that will use the values of
537 `sql-user', `sql-password',
538 `sql-database', `sql-server' and
539 `sql-port' to open a comint buffer and
540 connect to the database. Do product
541 specific configuration of comint in this
542 function.
544 :list-all Command string or function which produces
545 a listing of all objects in the database.
546 If it's a cons cell, then the car
547 produces the standard list of objects and
548 the cdr produces an enhanced list of
549 objects. What \"enhanced\" means is
550 dependent on the SQL product and may not
551 exist. In general though, the
552 \"enhanced\" list should include visible
553 objects from other schemas.
555 :list-table Command string or function which produces
556 a detailed listing of a specific database
557 table. If its a cons cell, then the car
558 produces the standard list and the cdr
559 produces an enhanced list.
561 :completion-object A function that returns a list of
562 objects. Called with a single
563 parameter--if nil then list objects
564 accessible in the current schema, if
565 not-nil it is the name of a schema whose
566 objects should be listed.
568 :completion-column A function that returns a list of
569 columns. Called with a single
570 parameter--if nil then list objects
571 accessible in the current schema, if
572 not-nil it is the name of a schema whose
573 objects should be listed.
575 :prompt-regexp regular expression string that matches
576 the prompt issued by the product
577 interpreter.
579 :prompt-length length of the prompt on the line.
581 :prompt-cont-regexp regular expression string that matches
582 the continuation prompt issued by the
583 product interpreter.
585 :input-filter function which can filter strings sent to
586 the command interpreter. It is also used
587 by the `sql-send-string',
588 `sql-send-region', `sql-send-paragraph'
589 and `sql-send-buffer' functions. The
590 function is passed the string sent to the
591 command interpreter and must return the
592 filtered string. May also be a list of
593 such functions.
595 :statement name of a variable containing a regexp that
596 matches the beginning of SQL statements.
598 :terminator the terminator to be sent after a
599 `sql-send-string', `sql-send-region',
600 `sql-send-paragraph' and
601 `sql-send-buffer' command. May be the
602 literal string or a cons of a regexp to
603 match an existing terminator in the
604 string and the terminator to be used if
605 its absent. By default \";\".
607 :syntax-alist alist of syntax table entries to enable
608 special character treatment by font-lock
609 and imenu.
611 Other features can be stored but they will be ignored. However,
612 you can develop new functionality which is product independent by
613 using `sql-get-product-feature' to lookup the product specific
614 settings.")
616 (defvar sql-indirect-features
617 '(:font-lock :sqli-program :sqli-options :sqli-login :statement))
619 (defcustom sql-connection-alist nil
620 "An alist of connection parameters for interacting with a SQL product.
621 Each element of the alist is as follows:
623 \(CONNECTION \(SQL-VARIABLE VALUE) ...)
625 Where CONNECTION is a case-insensitive string identifying the
626 connection, SQL-VARIABLE is the symbol name of a SQL mode
627 variable, and VALUE is the value to be assigned to the variable.
628 The most common SQL-VARIABLE settings associated with a
629 connection are: `sql-product', `sql-user', `sql-password',
630 `sql-port', `sql-server', and `sql-database'.
632 If a SQL-VARIABLE is part of the connection, it will not be
633 prompted for during login. The command `sql-connect' starts a
634 predefined SQLi session using the parameters from this list.
635 Connections defined here appear in the submenu SQL->Start... for
636 making new SQLi sessions."
637 :type `(alist :key-type (string :tag "Connection")
638 :value-type
639 (set
640 (group (const :tag "Product" sql-product)
641 (choice
642 ,@(mapcar
643 (lambda (prod-info)
644 `(const :tag
645 ,(or (plist-get (cdr prod-info) :name)
646 (capitalize
647 (symbol-name (car prod-info))))
648 (quote ,(car prod-info))))
649 sql-product-alist)))
650 (group (const :tag "Username" sql-user) string)
651 (group (const :tag "Password" sql-password) string)
652 (group (const :tag "Server" sql-server) string)
653 (group (const :tag "Database" sql-database) string)
654 (group (const :tag "Port" sql-port) integer)
655 (repeat :inline t
656 (list :tab "Other"
657 (symbol :tag " Variable Symbol")
658 (sexp :tag "Value Expression")))))
659 :version "24.1"
660 :group 'SQL)
662 (defcustom sql-product 'ansi
663 "Select the SQL database product used.
664 This allows highlighting buffers properly when you open them."
665 :type `(choice
666 ,@(mapcar (lambda (prod-info)
667 `(const :tag
668 ,(or (plist-get (cdr prod-info) :name)
669 (capitalize (symbol-name (car prod-info))))
670 ,(car prod-info)))
671 sql-product-alist))
672 :group 'SQL
673 :safe 'symbolp)
674 (defvaralias 'sql-dialect 'sql-product)
676 ;; misc customization of sql.el behavior
678 (defcustom sql-electric-stuff nil
679 "Treat some input as electric.
680 If set to the symbol `semicolon', then hitting `;' will send current
681 input in the SQLi buffer to the process.
682 If set to the symbol `go', then hitting `go' on a line by itself will
683 send current input in the SQLi buffer to the process.
684 If set to nil, then you must use \\[comint-send-input] in order to send
685 current input in the SQLi buffer to the process."
686 :type '(choice (const :tag "Nothing" nil)
687 (const :tag "The semicolon `;'" semicolon)
688 (const :tag "The string `go' by itself" go))
689 :version "20.8"
690 :group 'SQL)
692 (defcustom sql-send-terminator nil
693 "When non-nil, add a terminator to text sent to the SQL interpreter.
695 When text is sent to the SQL interpreter (via `sql-send-string',
696 `sql-send-region', `sql-send-paragraph' or `sql-send-buffer'), a
697 command terminator can be automatically sent as well. The
698 terminator is not sent, if the string sent already ends with the
699 terminator.
701 If this value is t, then the default command terminator for the
702 SQL interpreter is sent. If this value is a string, then the
703 string is sent.
705 If the value is a cons cell of the form (PAT . TERM), then PAT is
706 a regexp used to match the terminator in the string and TERM is
707 the terminator to be sent. This form is useful if the SQL
708 interpreter has more than one way of submitting a SQL command.
709 The PAT regexp can match any of them, and TERM is the way we do
710 it automatically."
712 :type '(choice (const :tag "No Terminator" nil)
713 (const :tag "Default Terminator" t)
714 (string :tag "Terminator String")
715 (cons :tag "Terminator Pattern and String"
716 (string :tag "Terminator Pattern")
717 (string :tag "Terminator String")))
718 :version "22.2"
719 :group 'SQL)
721 (defvar sql-contains-names nil
722 "When non-nil, the current buffer contains database names.
724 Globally should be set to nil; it will be non-nil in `sql-mode',
725 `sql-interactive-mode' and list all buffers.")
727 (defvar sql-login-delay 7.5 ;; Secs
728 "Maximum number of seconds you are willing to wait for a login connection.")
730 (defcustom sql-pop-to-buffer-after-send-region nil
731 "When non-nil, pop to the buffer SQL statements are sent to.
733 After a call to `sql-sent-string', `sql-send-region',
734 `sql-send-paragraph' or `sql-send-buffer', the window is split
735 and the SQLi buffer is shown. If this variable is not nil, that
736 buffer's window will be selected by calling `pop-to-buffer'. If
737 this variable is nil, that buffer is shown using
738 `display-buffer'."
739 :type 'boolean
740 :group 'SQL)
742 ;; imenu support for sql-mode.
744 (defvar sql-imenu-generic-expression
745 ;; Items are in reverse order because they are rendered in reverse.
746 '(("Rules/Defaults" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*\\(?:rule\\|default\\)\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\s-+\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
747 ("Sequences" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*sequence\\s-+\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
748 ("Triggers" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*trigger\\s-+\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
749 ("Functions" "^\\s-*\\(?:create\\s-+\\(?:\\w+\\s-+\\)*\\)?function\\s-+\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
750 ("Procedures" "^\\s-*\\(?:create\\s-+\\(?:\\w+\\s-+\\)*\\)?proc\\(?:edure\\)?\\s-+\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
751 ("Packages" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*package\\s-+\\(?:body\\s-+\\)?\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
752 ("Types" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*type\\s-+\\(?:body\\s-+\\)?\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
753 ("Indexes" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*index\\s-+\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1)
754 ("Tables/Views" "^\\s-*create\\s-+\\(?:\\w+\\s-+\\)*\\(?:table\\|view\\)\\s-+\\(?:if\\s-+not\\s-+exists\\s-+\\)?\\(\\(?:\\w+\\s-*[.]\\s-*\\)*\\w+\\)" 1))
755 "Define interesting points in the SQL buffer for `imenu'.
757 This is used to set `imenu-generic-expression' when SQL mode is
758 entered. Subsequent changes to `sql-imenu-generic-expression' will
759 not affect existing SQL buffers because imenu-generic-expression is
760 a local variable.")
762 ;; history file
764 (defcustom sql-input-ring-file-name nil
765 "If non-nil, name of the file to read/write input history.
767 You have to set this variable if you want the history of your commands
768 saved from one Emacs session to the next. If this variable is set,
769 exiting the SQL interpreter in an SQLi buffer will write the input
770 history to the specified file. Starting a new process in a SQLi buffer
771 will read the input history from the specified file.
773 This is used to initialize `comint-input-ring-file-name'.
775 Note that the size of the input history is determined by the variable
776 `comint-input-ring-size'."
777 :type '(choice (const :tag "none" nil)
778 (file))
779 :group 'SQL)
781 (defcustom sql-input-ring-separator "\n--\n"
782 "Separator between commands in the history file.
784 If set to \"\\n\", each line in the history file will be interpreted as
785 one command. Multi-line commands are split into several commands when
786 the input ring is initialized from a history file.
788 This variable used to initialize `comint-input-ring-separator'.
789 `comint-input-ring-separator' is part of Emacs 21; if your Emacs
790 does not have it, setting `sql-input-ring-separator' will have no
791 effect. In that case multiline commands will be split into several
792 commands when the input history is read, as if you had set
793 `sql-input-ring-separator' to \"\\n\"."
794 :type 'string
795 :group 'SQL)
797 ;; The usual hooks
799 (defcustom sql-interactive-mode-hook '()
800 "Hook for customizing `sql-interactive-mode'."
801 :type 'hook
802 :group 'SQL)
804 (defcustom sql-mode-hook '()
805 "Hook for customizing `sql-mode'."
806 :type 'hook
807 :group 'SQL)
809 (defcustom sql-set-sqli-hook '()
810 "Hook for reacting to changes of `sql-buffer'.
812 This is called by `sql-set-sqli-buffer' when the value of `sql-buffer'
813 is changed."
814 :type 'hook
815 :group 'SQL)
817 (defcustom sql-login-hook '()
818 "Hook for interacting with a buffer in `sql-interactive-mode'.
820 This hook is invoked in a buffer once it is ready to accept input
821 for the first time."
822 :version "24.1"
823 :type 'hook
824 :group 'SQL)
826 ;; Customization for ANSI
828 (defcustom sql-ansi-statement-starters
829 (regexp-opt '("create" "alter" "drop"
830 "select" "insert" "update" "delete" "merge"
831 "grant" "revoke"))
832 "Regexp of keywords that start SQL commands.
834 All products share this list; products should define a regexp to
835 identify additional keywords in a variable defined by
836 the :statement feature."
837 :version "24.1"
838 :type 'string
839 :group 'SQL)
841 ;; Customization for Oracle
843 (defcustom sql-oracle-program "sqlplus"
844 "Command to start sqlplus by Oracle.
846 Starts `sql-interactive-mode' after doing some setup.
848 On Windows, \"sqlplus\" usually starts the sqlplus \"GUI\". In order
849 to start the sqlplus console, use \"plus33\" or something similar.
850 You will find the file in your Orant\\bin directory."
851 :type 'file
852 :group 'SQL)
854 (defcustom sql-oracle-options '("-L")
855 "List of additional options for `sql-oracle-program'."
856 :type '(repeat string)
857 :version "24.4"
858 :group 'SQL)
860 (defcustom sql-oracle-login-params '(user password database)
861 "List of login parameters needed to connect to Oracle."
862 :type 'sql-login-params
863 :version "24.1"
864 :group 'SQL)
866 (defcustom sql-oracle-statement-starters
867 (regexp-opt '("declare" "begin" "with"))
868 "Additional statement starting keywords in Oracle."
869 :version "24.1"
870 :type 'string
871 :group 'SQL)
873 (defcustom sql-oracle-scan-on t
874 "Non-nil if placeholders should be replaced in Oracle SQLi.
876 When non-nil, Emacs will scan text sent to sqlplus and prompt
877 for replacement text for & placeholders as sqlplus does. This
878 is needed on Windows where SQL*Plus output is buffered and the
879 prompts are not shown until after the text is entered.
881 You need to issue the following command in SQL*Plus to be safe:
883 SET DEFINE OFF
885 In older versions of SQL*Plus, this was the SET SCAN OFF command."
886 :version "24.1"
887 :type 'boolean
888 :group 'SQL)
890 (defcustom sql-db2-escape-newlines nil
891 "Non-nil if newlines should be escaped by a backslash in DB2 SQLi.
893 When non-nil, Emacs will automatically insert a space and
894 backslash prior to every newline in multi-line SQL statements as
895 they are submitted to an interactive DB2 session."
896 :version "24.3"
897 :type 'boolean
898 :group 'SQL)
900 ;; Customization for SQLite
902 (defcustom sql-sqlite-program (or (executable-find "sqlite3")
903 (executable-find "sqlite")
904 "sqlite")
905 "Command to start SQLite.
907 Starts `sql-interactive-mode' after doing some setup."
908 :type 'file
909 :group 'SQL)
911 (defcustom sql-sqlite-options nil
912 "List of additional options for `sql-sqlite-program'."
913 :type '(repeat string)
914 :version "20.8"
915 :group 'SQL)
917 (defcustom sql-sqlite-login-params '((database :file ".*\\.\\(db\\|sqlite[23]?\\)"))
918 "List of login parameters needed to connect to SQLite."
919 :type 'sql-login-params
920 :version "24.1"
921 :group 'SQL)
923 ;; Customization for MySQL
925 (defcustom sql-mysql-program "mysql"
926 "Command to start mysql by TcX.
928 Starts `sql-interactive-mode' after doing some setup."
929 :type 'file
930 :group 'SQL)
932 (defcustom sql-mysql-options nil
933 "List of additional options for `sql-mysql-program'.
934 The following list of options is reported to make things work
935 on Windows: \"-C\" \"-t\" \"-f\" \"-n\"."
936 :type '(repeat string)
937 :version "20.8"
938 :group 'SQL)
940 (defcustom sql-mysql-login-params '(user password database server)
941 "List of login parameters needed to connect to MySQL."
942 :type 'sql-login-params
943 :version "24.1"
944 :group 'SQL)
946 ;; Customization for Solid
948 (defcustom sql-solid-program "solsql"
949 "Command to start SOLID SQL Editor.
951 Starts `sql-interactive-mode' after doing some setup."
952 :type 'file
953 :group 'SQL)
955 (defcustom sql-solid-login-params '(user password server)
956 "List of login parameters needed to connect to Solid."
957 :type 'sql-login-params
958 :version "24.1"
959 :group 'SQL)
961 ;; Customization for Sybase
963 (defcustom sql-sybase-program "isql"
964 "Command to start isql by Sybase.
966 Starts `sql-interactive-mode' after doing some setup."
967 :type 'file
968 :group 'SQL)
970 (defcustom sql-sybase-options nil
971 "List of additional options for `sql-sybase-program'.
972 Some versions of isql might require the -n option in order to work."
973 :type '(repeat string)
974 :version "20.8"
975 :group 'SQL)
977 (defcustom sql-sybase-login-params '(server user password database)
978 "List of login parameters needed to connect to Sybase."
979 :type 'sql-login-params
980 :version "24.1"
981 :group 'SQL)
983 ;; Customization for Informix
985 (defcustom sql-informix-program "dbaccess"
986 "Command to start dbaccess by Informix.
988 Starts `sql-interactive-mode' after doing some setup."
989 :type 'file
990 :group 'SQL)
992 (defcustom sql-informix-login-params '(database)
993 "List of login parameters needed to connect to Informix."
994 :type 'sql-login-params
995 :version "24.1"
996 :group 'SQL)
998 ;; Customization for Ingres
1000 (defcustom sql-ingres-program "sql"
1001 "Command to start sql by Ingres.
1003 Starts `sql-interactive-mode' after doing some setup."
1004 :type 'file
1005 :group 'SQL)
1007 (defcustom sql-ingres-login-params '(database)
1008 "List of login parameters needed to connect to Ingres."
1009 :type 'sql-login-params
1010 :version "24.1"
1011 :group 'SQL)
1013 ;; Customization for Microsoft
1015 (defcustom sql-ms-program "osql"
1016 "Command to start osql by Microsoft.
1018 Starts `sql-interactive-mode' after doing some setup."
1019 :type 'file
1020 :group 'SQL)
1022 (defcustom sql-ms-options '("-w" "300" "-n")
1023 ;; -w is the linesize
1024 "List of additional options for `sql-ms-program'."
1025 :type '(repeat string)
1026 :version "22.1"
1027 :group 'SQL)
1029 (defcustom sql-ms-login-params '(user password server database)
1030 "List of login parameters needed to connect to Microsoft."
1031 :type 'sql-login-params
1032 :version "24.1"
1033 :group 'SQL)
1035 ;; Customization for Postgres
1037 (defcustom sql-postgres-program "psql"
1038 "Command to start psql by Postgres.
1040 Starts `sql-interactive-mode' after doing some setup."
1041 :type 'file
1042 :group 'SQL)
1044 (defcustom sql-postgres-options '("-P" "pager=off")
1045 "List of additional options for `sql-postgres-program'.
1046 The default setting includes the -P option which breaks older versions
1047 of the psql client (such as version 6.5.3). The -P option is equivalent
1048 to the --pset option. If you want the psql to prompt you for a user
1049 name, add the string \"-u\" to the list of options. If you want to
1050 provide a user name on the command line (newer versions such as 7.1),
1051 add your name with a \"-U\" prefix (such as \"-Umark\") to the list."
1052 :type '(repeat string)
1053 :version "20.8"
1054 :group 'SQL)
1056 (defcustom sql-postgres-login-params `((user :default ,(user-login-name))
1057 (database :default ,(user-login-name))
1058 server)
1059 "List of login parameters needed to connect to Postgres."
1060 :type 'sql-login-params
1061 :version "24.1"
1062 :group 'SQL)
1064 ;; Customization for Interbase
1066 (defcustom sql-interbase-program "isql"
1067 "Command to start isql by Interbase.
1069 Starts `sql-interactive-mode' after doing some setup."
1070 :type 'file
1071 :group 'SQL)
1073 (defcustom sql-interbase-options nil
1074 "List of additional options for `sql-interbase-program'."
1075 :type '(repeat string)
1076 :version "20.8"
1077 :group 'SQL)
1079 (defcustom sql-interbase-login-params '(user password database)
1080 "List of login parameters needed to connect to Interbase."
1081 :type 'sql-login-params
1082 :version "24.1"
1083 :group 'SQL)
1085 ;; Customization for DB2
1087 (defcustom sql-db2-program "db2"
1088 "Command to start db2 by IBM.
1090 Starts `sql-interactive-mode' after doing some setup."
1091 :type 'file
1092 :group 'SQL)
1094 (defcustom sql-db2-options nil
1095 "List of additional options for `sql-db2-program'."
1096 :type '(repeat string)
1097 :version "20.8"
1098 :group 'SQL)
1100 (defcustom sql-db2-login-params nil
1101 "List of login parameters needed to connect to DB2."
1102 :type 'sql-login-params
1103 :version "24.1"
1104 :group 'SQL)
1106 ;; Customization for Linter
1108 (defcustom sql-linter-program "inl"
1109 "Command to start inl by RELEX.
1111 Starts `sql-interactive-mode' after doing some setup."
1112 :type 'file
1113 :group 'SQL)
1115 (defcustom sql-linter-options nil
1116 "List of additional options for `sql-linter-program'."
1117 :type '(repeat string)
1118 :version "21.3"
1119 :group 'SQL)
1121 (defcustom sql-linter-login-params '(user password database server)
1122 "Login parameters to needed to connect to Linter."
1123 :type 'sql-login-params
1124 :version "24.1"
1125 :group 'SQL)
1129 ;;; Variables which do not need customization
1131 (defvar sql-user-history nil
1132 "History of usernames used.")
1134 (defvar sql-database-history nil
1135 "History of databases used.")
1137 (defvar sql-server-history nil
1138 "History of servers used.")
1140 ;; Passwords are not kept in a history.
1142 (defvar sql-product-history nil
1143 "History of products used.")
1145 (defvar sql-connection-history nil
1146 "History of connections used.")
1148 (defvar sql-buffer nil
1149 "Current SQLi buffer.
1151 The global value of `sql-buffer' is the name of the latest SQLi buffer
1152 created. Any SQL buffer created will make a local copy of this value.
1153 See `sql-interactive-mode' for more on multiple sessions. If you want
1154 to change the SQLi buffer a SQL mode sends its SQL strings to, change
1155 the local value of `sql-buffer' using \\[sql-set-sqli-buffer].")
1157 (defvar sql-prompt-regexp nil
1158 "Prompt used to initialize `comint-prompt-regexp'.
1160 You can change `sql-prompt-regexp' on `sql-interactive-mode-hook'.")
1162 (defvar sql-prompt-length 0
1163 "Prompt used to set `left-margin' in `sql-interactive-mode'.
1165 You can change `sql-prompt-length' on `sql-interactive-mode-hook'.")
1167 (defvar sql-prompt-cont-regexp nil
1168 "Prompt pattern of statement continuation prompts.")
1170 (defvar sql-alternate-buffer-name nil
1171 "Buffer-local string used to possibly rename the SQLi buffer.
1173 Used by `sql-rename-buffer'.")
1175 (defun sql-buffer-live-p (buffer &optional product connection)
1176 "Return non-nil if the process associated with buffer is live.
1178 BUFFER can be a buffer object or a buffer name. The buffer must
1179 be a live buffer, have a running process attached to it, be in
1180 `sql-interactive-mode', and, if PRODUCT or CONNECTION are
1181 specified, it's `sql-product' or `sql-connection' must match."
1183 (when buffer
1184 (setq buffer (get-buffer buffer))
1185 (and buffer
1186 (buffer-live-p buffer)
1187 (comint-check-proc buffer)
1188 (with-current-buffer buffer
1189 (and (derived-mode-p 'sql-interactive-mode)
1190 (or (not product)
1191 (eq product sql-product))
1192 (or (not connection)
1193 (eq connection sql-connection)))))))
1195 ;; Keymap for sql-interactive-mode.
1197 (defvar sql-interactive-mode-map
1198 (let ((map (make-sparse-keymap)))
1199 (if (fboundp 'set-keymap-parent)
1200 (set-keymap-parent map comint-mode-map); Emacs
1201 (if (fboundp 'set-keymap-parents)
1202 (set-keymap-parents map (list comint-mode-map)))); XEmacs
1203 (if (fboundp 'set-keymap-name)
1204 (set-keymap-name map 'sql-interactive-mode-map)); XEmacs
1205 (define-key map (kbd "C-j") 'sql-accumulate-and-indent)
1206 (define-key map (kbd "C-c C-w") 'sql-copy-column)
1207 (define-key map (kbd "O") 'sql-magic-go)
1208 (define-key map (kbd "o") 'sql-magic-go)
1209 (define-key map (kbd ";") 'sql-magic-semicolon)
1210 (define-key map (kbd "C-c C-l a") 'sql-list-all)
1211 (define-key map (kbd "C-c C-l t") 'sql-list-table)
1212 map)
1213 "Mode map used for `sql-interactive-mode'.
1214 Based on `comint-mode-map'.")
1216 ;; Keymap for sql-mode.
1218 (defvar sql-mode-map
1219 (let ((map (make-sparse-keymap)))
1220 (define-key map (kbd "C-c C-c") 'sql-send-paragraph)
1221 (define-key map (kbd "C-c C-r") 'sql-send-region)
1222 (define-key map (kbd "C-c C-s") 'sql-send-string)
1223 (define-key map (kbd "C-c C-b") 'sql-send-buffer)
1224 (define-key map (kbd "C-c C-i") 'sql-product-interactive)
1225 (define-key map (kbd "C-c C-l a") 'sql-list-all)
1226 (define-key map (kbd "C-c C-l t") 'sql-list-table)
1227 (define-key map [remap beginning-of-defun] 'sql-beginning-of-statement)
1228 (define-key map [remap end-of-defun] 'sql-end-of-statement)
1229 map)
1230 "Mode map used for `sql-mode'.")
1232 ;; easy menu for sql-mode.
1234 (easy-menu-define
1235 sql-mode-menu sql-mode-map
1236 "Menu for `sql-mode'."
1237 `("SQL"
1238 ["Send Paragraph" sql-send-paragraph (sql-buffer-live-p sql-buffer)]
1239 ["Send Region" sql-send-region (and mark-active
1240 (sql-buffer-live-p sql-buffer))]
1241 ["Send Buffer" sql-send-buffer (sql-buffer-live-p sql-buffer)]
1242 ["Send String" sql-send-string (sql-buffer-live-p sql-buffer)]
1243 "--"
1244 ["List all objects" sql-list-all (and (sql-buffer-live-p sql-buffer)
1245 (sql-get-product-feature sql-product :list-all))]
1246 ["List table details" sql-list-table (and (sql-buffer-live-p sql-buffer)
1247 (sql-get-product-feature sql-product :list-table))]
1248 "--"
1249 ["Start SQLi session" sql-product-interactive
1250 :visible (not sql-connection-alist)
1251 :enable (sql-get-product-feature sql-product :sqli-comint-func)]
1252 ("Start..."
1253 :visible sql-connection-alist
1254 :filter sql-connection-menu-filter
1255 "--"
1256 ["New SQLi Session" sql-product-interactive (sql-get-product-feature sql-product :sqli-comint-func)])
1257 ["--"
1258 :visible sql-connection-alist]
1259 ["Show SQLi buffer" sql-show-sqli-buffer t]
1260 ["Set SQLi buffer" sql-set-sqli-buffer t]
1261 ["Pop to SQLi buffer after send"
1262 sql-toggle-pop-to-buffer-after-send-region
1263 :style toggle
1264 :selected sql-pop-to-buffer-after-send-region]
1265 ["--" nil nil]
1266 ("Product"
1267 ,@(mapcar (lambda (prod-info)
1268 (let* ((prod (pop prod-info))
1269 (name (or (plist-get prod-info :name)
1270 (capitalize (symbol-name prod))))
1271 (cmd (intern (format "sql-highlight-%s-keywords" prod))))
1272 (fset cmd `(lambda () ,(format "Highlight %s SQL keywords." name)
1273 (interactive)
1274 (sql-set-product ',prod)))
1275 (vector name cmd
1276 :style 'radio
1277 :selected `(eq sql-product ',prod))))
1278 sql-product-alist))))
1280 ;; easy menu for sql-interactive-mode.
1282 (easy-menu-define
1283 sql-interactive-mode-menu sql-interactive-mode-map
1284 "Menu for `sql-interactive-mode'."
1285 '("SQL"
1286 ["Rename Buffer" sql-rename-buffer t]
1287 ["Save Connection" sql-save-connection (not sql-connection)]
1288 "--"
1289 ["List all objects" sql-list-all (sql-get-product-feature sql-product :list-all)]
1290 ["List table details" sql-list-table (sql-get-product-feature sql-product :list-table)]))
1292 ;; Abbreviations -- if you want more of them, define them in your init
1293 ;; file. Abbrevs have to be enabled in your init file, too.
1295 (define-abbrev-table 'sql-mode-abbrev-table
1296 '(("ins" "insert" nil nil t)
1297 ("upd" "update" nil nil t)
1298 ("del" "delete" nil nil t)
1299 ("sel" "select" nil nil t)
1300 ("proc" "procedure" nil nil t)
1301 ("func" "function" nil nil t)
1302 ("cr" "create" nil nil t))
1303 "Abbrev table used in `sql-mode' and `sql-interactive-mode'.")
1305 ;; Syntax Table
1307 (defvar sql-mode-syntax-table
1308 (let ((table (make-syntax-table)))
1309 ;; C-style comments /**/ (see elisp manual "Syntax Flags"))
1310 (modify-syntax-entry ?/ ". 14" table)
1311 (modify-syntax-entry ?* ". 23" table)
1312 ;; double-dash starts comments
1313 (modify-syntax-entry ?- ". 12b" table)
1314 ;; newline and formfeed end comments
1315 (modify-syntax-entry ?\n "> b" table)
1316 (modify-syntax-entry ?\f "> b" table)
1317 ;; single quotes (') delimit strings
1318 (modify-syntax-entry ?' "\"" table)
1319 ;; double quotes (") don't delimit strings
1320 (modify-syntax-entry ?\" "." table)
1321 ;; Make these all punctuation
1322 (mapc #'(lambda (c) (modify-syntax-entry c "." table))
1323 (string-to-list "!#$%&+,.:;<=>?@\\|"))
1324 table)
1325 "Syntax table used in `sql-mode' and `sql-interactive-mode'.")
1327 ;; Font lock support
1329 (defvar sql-mode-font-lock-object-name
1330 (eval-when-compile
1331 (list (concat "^\\s-*\\(?:create\\|drop\\|alter\\)\\s-+" ;; lead off with CREATE, DROP or ALTER
1332 "\\(?:\\w+\\s-+\\)*" ;; optional intervening keywords
1333 "\\(?:table\\|view\\|\\(?:package\\|type\\)\\(?:\\s-+body\\)?\\|proc\\(?:edure\\)?"
1334 "\\|function\\|trigger\\|sequence\\|rule\\|default\\)\\s-+"
1335 "\\(?:if\\s-+not\\s-+exists\\s-+\\)?" ;; IF NOT EXISTS
1336 "\\(\\w+\\(?:\\s-*[.]\\s-*\\w+\\)*\\)")
1337 1 'font-lock-function-name-face))
1339 "Pattern to match the names of top-level objects.
1341 The pattern matches the name in a CREATE, DROP or ALTER
1342 statement. The format of variable should be a valid
1343 `font-lock-keywords' entry.")
1345 ;; While there are international and American standards for SQL, they
1346 ;; are not followed closely, and most vendors offer significant
1347 ;; capabilities beyond those defined in the standard specifications.
1349 ;; SQL mode provides support for highlighting based on the product. In
1350 ;; addition to highlighting the product keywords, any ANSI keywords not
1351 ;; used by the product are also highlighted. This will help identify
1352 ;; keywords that could be restricted in future versions of the product
1353 ;; or might be a problem if ported to another product.
1355 ;; To reduce the complexity and size of the regular expressions
1356 ;; generated to match keywords, ANSI keywords are filtered out of
1357 ;; product keywords if they are equivalent. To do this, we define a
1358 ;; function `sql-font-lock-keywords-builder' that removes any keywords
1359 ;; that are matched by the ANSI patterns and results in the same face
1360 ;; being applied. For this to work properly, we must play some games
1361 ;; with the execution and compile time behavior. This code is a
1362 ;; little tricky but works properly.
1364 ;; When defining the keywords for individual products you should
1365 ;; include all of the keywords that you want matched. The filtering
1366 ;; against the ANSI keywords will be automatic if you use the
1367 ;; `sql-font-lock-keywords-builder' function and follow the
1368 ;; implementation pattern used for the other products in this file.
1370 (eval-when-compile
1371 (defvar sql-mode-ansi-font-lock-keywords)
1372 (setq sql-mode-ansi-font-lock-keywords nil))
1374 (eval-and-compile
1375 (defun sql-font-lock-keywords-builder (face boundaries &rest keywords)
1376 "Generation of regexp matching any one of KEYWORDS."
1378 (let ((bdy (or boundaries '("\\b" . "\\b")))
1379 kwd)
1381 ;; Remove keywords that are defined in ANSI
1382 (setq kwd keywords)
1383 ;; (dolist (k keywords)
1384 ;; (catch 'next
1385 ;; (dolist (a sql-mode-ansi-font-lock-keywords)
1386 ;; (when (and (eq face (cdr a))
1387 ;; (eq (string-match (car a) k 0) 0)
1388 ;; (eq (match-end 0) (length k)))
1389 ;; (setq kwd (delq k kwd))
1390 ;; (throw 'next nil)))))
1392 ;; Create a properly formed font-lock-keywords item
1393 (cons (concat (car bdy)
1394 (regexp-opt kwd t)
1395 (cdr bdy))
1396 face)))
1398 (defun sql-regexp-abbrev (keyword)
1399 (let ((brk (string-match "[~]" keyword))
1400 (len (length keyword))
1401 (sep "\\(?:")
1402 re i)
1403 (if (not brk)
1404 keyword
1405 (setq re (substring keyword 0 brk)
1406 i (+ 2 brk)
1407 brk (1+ brk))
1408 (while (<= i len)
1409 (setq re (concat re sep (substring keyword brk i))
1410 sep "\\|"
1411 i (1+ i)))
1412 (concat re "\\)?"))))
1414 (defun sql-regexp-abbrev-list (&rest keyw-list)
1415 (let ((re nil)
1416 (sep "\\<\\(?:"))
1417 (while keyw-list
1418 (setq re (concat re sep (sql-regexp-abbrev (car keyw-list)))
1419 sep "\\|"
1420 keyw-list (cdr keyw-list)))
1421 (concat re "\\)\\>"))))
1423 (eval-when-compile
1424 (setq sql-mode-ansi-font-lock-keywords
1425 (list
1426 ;; ANSI Non Reserved keywords
1427 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
1428 "ada" "asensitive" "assignment" "asymmetric" "atomic" "between"
1429 "bitvar" "called" "catalog_name" "chain" "character_set_catalog"
1430 "character_set_name" "character_set_schema" "checked" "class_origin"
1431 "cobol" "collation_catalog" "collation_name" "collation_schema"
1432 "column_name" "command_function" "command_function_code" "committed"
1433 "condition_number" "connection_name" "constraint_catalog"
1434 "constraint_name" "constraint_schema" "contains" "cursor_name"
1435 "datetime_interval_code" "datetime_interval_precision" "defined"
1436 "definer" "dispatch" "dynamic_function" "dynamic_function_code"
1437 "existing" "exists" "final" "fortran" "generated" "granted"
1438 "hierarchy" "hold" "implementation" "infix" "insensitive" "instance"
1439 "instantiable" "invoker" "key_member" "key_type" "length" "m"
1440 "message_length" "message_octet_length" "message_text" "method" "more"
1441 "mumps" "name" "nullable" "number" "options" "overlaps" "overriding"
1442 "parameter_mode" "parameter_name" "parameter_ordinal_position"
1443 "parameter_specific_catalog" "parameter_specific_name"
1444 "parameter_specific_schema" "pascal" "pli" "position" "repeatable"
1445 "returned_length" "returned_octet_length" "returned_sqlstate"
1446 "routine_catalog" "routine_name" "routine_schema" "row_count" "scale"
1447 "schema_name" "security" "self" "sensitive" "serializable"
1448 "server_name" "similar" "simple" "source" "specific_name" "style"
1449 "subclass_origin" "sublist" "symmetric" "system" "table_name"
1450 "transaction_active" "transactions_committed"
1451 "transactions_rolled_back" "transform" "transforms" "trigger_catalog"
1452 "trigger_name" "trigger_schema" "type" "uncommitted" "unnamed"
1453 "user_defined_type_catalog" "user_defined_type_name"
1454 "user_defined_type_schema"
1457 ;; ANSI Reserved keywords
1458 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
1459 "absolute" "action" "add" "admin" "after" "aggregate" "alias" "all"
1460 "allocate" "alter" "and" "any" "are" "as" "asc" "assertion" "at"
1461 "authorization" "before" "begin" "both" "breadth" "by" "call"
1462 "cascade" "cascaded" "case" "catalog" "check" "class" "close"
1463 "collate" "collation" "column" "commit" "completion" "connect"
1464 "connection" "constraint" "constraints" "constructor" "continue"
1465 "corresponding" "create" "cross" "cube" "current" "cursor" "cycle"
1466 "data" "day" "deallocate" "declare" "default" "deferrable" "deferred"
1467 "delete" "depth" "deref" "desc" "describe" "descriptor" "destroy"
1468 "destructor" "deterministic" "diagnostics" "dictionary" "disconnect"
1469 "distinct" "domain" "drop" "dynamic" "each" "else" "end" "equals"
1470 "escape" "every" "except" "exception" "exec" "execute" "external"
1471 "false" "fetch" "first" "for" "foreign" "found" "free" "from" "full"
1472 "function" "general" "get" "global" "go" "goto" "grant" "group"
1473 "grouping" "having" "host" "hour" "identity" "ignore" "immediate" "in"
1474 "indicator" "initialize" "initially" "inner" "inout" "input" "insert"
1475 "intersect" "into" "is" "isolation" "iterate" "join" "key" "language"
1476 "last" "lateral" "leading" "left" "less" "level" "like" "limit"
1477 "local" "locator" "map" "match" "minute" "modifies" "modify" "module"
1478 "month" "names" "natural" "new" "next" "no" "none" "not" "null" "of"
1479 "off" "old" "on" "only" "open" "operation" "option" "or" "order"
1480 "ordinality" "out" "outer" "output" "pad" "parameter" "parameters"
1481 "partial" "path" "postfix" "prefix" "preorder" "prepare" "preserve"
1482 "primary" "prior" "privileges" "procedure" "public" "read" "reads"
1483 "recursive" "references" "referencing" "relative" "restrict" "result"
1484 "return" "returns" "revoke" "right" "role" "rollback" "rollup"
1485 "routine" "rows" "savepoint" "schema" "scroll" "search" "second"
1486 "section" "select" "sequence" "session" "set" "sets" "size" "some"
1487 "space" "specific" "specifictype" "sql" "sqlexception" "sqlstate"
1488 "sqlwarning" "start" "state" "statement" "static" "structure" "table"
1489 "temporary" "terminate" "than" "then" "timezone_hour"
1490 "timezone_minute" "to" "trailing" "transaction" "translation"
1491 "trigger" "true" "under" "union" "unique" "unknown" "unnest" "update"
1492 "usage" "using" "value" "values" "variable" "view" "when" "whenever"
1493 "where" "with" "without" "work" "write" "year"
1496 ;; ANSI Functions
1497 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
1498 "abs" "avg" "bit_length" "cardinality" "cast" "char_length"
1499 "character_length" "coalesce" "convert" "count" "current_date"
1500 "current_path" "current_role" "current_time" "current_timestamp"
1501 "current_user" "extract" "localtime" "localtimestamp" "lower" "max"
1502 "min" "mod" "nullif" "octet_length" "overlay" "placing" "session_user"
1503 "substring" "sum" "system_user" "translate" "treat" "trim" "upper"
1504 "user"
1507 ;; ANSI Data Types
1508 (sql-font-lock-keywords-builder 'font-lock-type-face nil
1509 "array" "binary" "bit" "blob" "boolean" "char" "character" "clob"
1510 "date" "dec" "decimal" "double" "float" "int" "integer" "interval"
1511 "large" "national" "nchar" "nclob" "numeric" "object" "precision"
1512 "real" "ref" "row" "scope" "smallint" "time" "timestamp" "varchar"
1513 "varying" "zone"
1514 ))))
1516 (defvar sql-mode-ansi-font-lock-keywords
1517 (eval-when-compile sql-mode-ansi-font-lock-keywords)
1518 "ANSI SQL keywords used by font-lock.
1520 This variable is used by `sql-mode' and `sql-interactive-mode'. The
1521 regular expressions are created during compilation by calling the
1522 function `regexp-opt'. Therefore, take a look at the source before
1523 you define your own `sql-mode-ansi-font-lock-keywords'. You may want
1524 to add functions and PL/SQL keywords.")
1526 (defun sql--oracle-show-reserved-words ()
1527 ;; This function is for use by the maintainer of SQL.EL only.
1528 (if (or (and (not (derived-mode-p 'sql-mode))
1529 (not (derived-mode-p 'sql-interactive-mode)))
1530 (not sql-buffer)
1531 (not (eq sql-product 'oracle)))
1532 (user-error "Not an Oracle buffer")
1534 (let ((b "*RESERVED WORDS*"))
1535 (sql-execute sql-buffer b
1536 (concat "SELECT "
1537 " keyword "
1538 ", reserved AS \"Res\" "
1539 ", res_type AS \"Type\" "
1540 ", res_attr AS \"Attr\" "
1541 ", res_semi AS \"Semi\" "
1542 ", duplicate AS \"Dup\" "
1543 "FROM V$RESERVED_WORDS "
1544 "WHERE length > 1 "
1545 "AND SUBSTR(keyword, 1, 1) BETWEEN 'A' AND 'Z' "
1546 "ORDER BY 2 DESC, 3 DESC, 4 DESC, 5 DESC, 6 DESC, 1;")
1547 nil nil)
1548 (with-current-buffer b
1549 (set (make-local-variable 'sql-product) 'oracle)
1550 (sql-product-font-lock t nil)
1551 (font-lock-mode +1)))))
1553 (defvar sql-mode-oracle-font-lock-keywords
1554 (eval-when-compile
1555 (list
1556 ;; Oracle SQL*Plus Commands
1557 ;; Only recognized in they start in column 1 and the
1558 ;; abbreviation is followed by a space or the end of line.
1560 "\\|"
1561 (list (concat "^" (sql-regexp-abbrev "rem~ark") "\\(?:\\s-.*\\)?$")
1562 0 'font-lock-comment-face t)
1564 (list
1565 (concat
1566 "^\\(?:"
1567 (sql-regexp-abbrev-list
1568 "[@]\\{1,2\\}" "acc~ept" "a~ppend" "archive" "attribute"
1569 "bre~ak" "bti~tle" "c~hange" "cl~ear" "col~umn" "conn~ect"
1570 "copy" "def~ine" "del" "desc~ribe" "disc~onnect" "ed~it"
1571 "exec~ute" "exit" "get" "help" "ho~st" "[$]" "i~nput" "l~ist"
1572 "passw~ord" "pau~se" "pri~nt" "pro~mpt" "quit" "recover"
1573 "repf~ooter" "reph~eader" "r~un" "sav~e" "sho~w" "shutdown"
1574 "spo~ol" "sta~rt" "startup" "store" "tim~ing" "tti~tle"
1575 "undef~ine" "var~iable" "whenever")
1576 "\\|"
1577 (concat "\\(?:"
1578 (sql-regexp-abbrev "comp~ute")
1579 "\\s-+"
1580 (sql-regexp-abbrev-list
1581 "avg" "cou~nt" "min~imum" "max~imum" "num~ber" "sum"
1582 "std" "var~iance")
1583 "\\)")
1584 "\\|"
1585 (concat "\\(?:set\\s-+"
1586 (sql-regexp-abbrev-list
1587 "appi~nfo" "array~size" "auto~commit" "autop~rint"
1588 "autorecovery" "autot~race" "blo~ckterminator"
1589 "cmds~ep" "colsep" "com~patibility" "con~cat"
1590 "copyc~ommit" "copytypecheck" "def~ine" "describe"
1591 "echo" "editf~ile" "emb~edded" "esc~ape" "feed~back"
1592 "flagger" "flu~sh" "hea~ding" "heads~ep" "instance"
1593 "lin~esize" "lobof~fset" "long" "longc~hunksize"
1594 "mark~up" "newp~age" "null" "numf~ormat" "num~width"
1595 "pages~ize" "pau~se" "recsep" "recsepchar"
1596 "scan" "serverout~put" "shift~inout" "show~mode"
1597 "sqlbl~anklines" "sqlc~ase" "sqlco~ntinue"
1598 "sqln~umber" "sqlpluscompat~ibility" "sqlpre~fix"
1599 "sqlp~rompt" "sqlt~erminator" "suf~fix" "tab"
1600 "term~out" "ti~me" "timi~ng" "trim~out" "trims~pool"
1601 "und~erline" "ver~ify" "wra~p")
1602 "\\)")
1604 "\\)\\(?:\\s-.*\\)?\\(?:[-]\n.*\\)*$")
1605 0 'font-lock-doc-face t)
1606 '("&?&\\(?:\\sw\\|\\s_\\)+[.]?" 0 font-lock-preprocessor-face t)
1608 ;; Oracle Functions
1609 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
1610 "abs" "acos" "add_months" "appendchildxml" "ascii" "asciistr" "asin"
1611 "atan" "atan2" "avg" "bfilename" "bin_to_num" "bitand" "cardinality"
1612 "cast" "ceil" "chartorowid" "chr" "cluster_id" "cluster_probability"
1613 "cluster_set" "coalesce" "collect" "compose" "concat" "convert" "corr"
1614 "connect_by_root" "connect_by_iscycle" "connect_by_isleaf"
1615 "corr_k" "corr_s" "cos" "cosh" "count" "covar_pop" "covar_samp"
1616 "cube_table" "cume_dist" "current_date" "current_timestamp" "cv"
1617 "dataobj_to_partition" "dbtimezone" "decode" "decompose" "deletexml"
1618 "dense_rank" "depth" "deref" "dump" "empty_blob" "empty_clob"
1619 "existsnode" "exp" "extract" "extractvalue" "feature_id" "feature_set"
1620 "feature_value" "first" "first_value" "floor" "from_tz" "greatest"
1621 "grouping" "grouping_id" "group_id" "hextoraw" "initcap"
1622 "insertchildxml" "insertchildxmlafter" "insertchildxmlbefore"
1623 "insertxmlafter" "insertxmlbefore" "instr" "instr2" "instr4" "instrb"
1624 "instrc" "iteration_number" "lag" "last" "last_day" "last_value"
1625 "lead" "least" "length" "length2" "length4" "lengthb" "lengthc"
1626 "listagg" "ln" "lnnvl" "localtimestamp" "log" "lower" "lpad" "ltrim"
1627 "make_ref" "max" "median" "min" "mod" "months_between" "nanvl" "nchr"
1628 "new_time" "next_day" "nlssort" "nls_charset_decl_len"
1629 "nls_charset_id" "nls_charset_name" "nls_initcap" "nls_lower"
1630 "nls_upper" "nth_value" "ntile" "nullif" "numtodsinterval"
1631 "numtoyminterval" "nvl" "nvl2" "ora_dst_affected" "ora_dst_convert"
1632 "ora_dst_error" "ora_hash" "path" "percentile_cont" "percentile_disc"
1633 "percent_rank" "power" "powermultiset" "powermultiset_by_cardinality"
1634 "prediction" "prediction_bounds" "prediction_cost"
1635 "prediction_details" "prediction_probability" "prediction_set"
1636 "presentnnv" "presentv" "previous" "rank" "ratio_to_report" "rawtohex"
1637 "rawtonhex" "ref" "reftohex" "regexp_count" "regexp_instr"
1638 "regexp_replace" "regexp_substr" "regr_avgx" "regr_avgy" "regr_count"
1639 "regr_intercept" "regr_r2" "regr_slope" "regr_sxx" "regr_sxy"
1640 "regr_syy" "remainder" "replace" "round" "rowidtochar" "rowidtonchar"
1641 "row_number" "rpad" "rtrim" "scn_to_timestamp" "sessiontimezone" "set"
1642 "sign" "sin" "sinh" "soundex" "sqrt" "stats_binomial_test"
1643 "stats_crosstab" "stats_f_test" "stats_ks_test" "stats_mode"
1644 "stats_mw_test" "stats_one_way_anova" "stats_t_test_indep"
1645 "stats_t_test_indepu" "stats_t_test_one" "stats_t_test_paired"
1646 "stats_wsr_test" "stddev" "stddev_pop" "stddev_samp" "substr"
1647 "substr2" "substr4" "substrb" "substrc" "sum" "sysdate" "systimestamp"
1648 "sys_connect_by_path" "sys_context" "sys_dburigen" "sys_extract_utc"
1649 "sys_guid" "sys_typeid" "sys_xmlagg" "sys_xmlgen" "tan" "tanh"
1650 "timestamp_to_scn" "to_binary_double" "to_binary_float" "to_blob"
1651 "to_char" "to_clob" "to_date" "to_dsinterval" "to_lob" "to_multi_byte"
1652 "to_nchar" "to_nclob" "to_number" "to_single_byte" "to_timestamp"
1653 "to_timestamp_tz" "to_yminterval" "translate" "treat" "trim" "trunc"
1654 "tz_offset" "uid" "unistr" "updatexml" "upper" "user" "userenv"
1655 "value" "variance" "var_pop" "var_samp" "vsize" "width_bucket"
1656 "xmlagg" "xmlcast" "xmlcdata" "xmlcolattval" "xmlcomment" "xmlconcat"
1657 "xmldiff" "xmlelement" "xmlexists" "xmlforest" "xmlisvalid" "xmlparse"
1658 "xmlpatch" "xmlpi" "xmlquery" "xmlroot" "xmlsequence" "xmlserialize"
1659 "xmltable" "xmltransform"
1662 ;; See the table V$RESERVED_WORDS
1663 ;; Oracle Keywords
1664 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
1665 "abort" "access" "accessed" "account" "activate" "add" "admin"
1666 "advise" "after" "agent" "aggregate" "all" "allocate" "allow" "alter"
1667 "always" "analyze" "ancillary" "and" "any" "apply" "archive"
1668 "archivelog" "array" "as" "asc" "associate" "at" "attribute"
1669 "attributes" "audit" "authenticated" "authid" "authorization" "auto"
1670 "autoallocate" "automatic" "availability" "backup" "before" "begin"
1671 "behalf" "between" "binding" "bitmap" "block" "blocksize" "body"
1672 "both" "buffer_pool" "build" "by" "cache" "call" "cancel"
1673 "cascade" "case" "category" "certificate" "chained" "change" "check"
1674 "checkpoint" "child" "chunk" "class" "clear" "clone" "close" "cluster"
1675 "column" "column_value" "columns" "comment" "commit" "committed"
1676 "compatibility" "compile" "complete" "composite_limit" "compress"
1677 "compute" "connect" "connect_time" "consider" "consistent"
1678 "constraint" "constraints" "constructor" "contents" "context"
1679 "continue" "controlfile" "corruption" "cost" "cpu_per_call"
1680 "cpu_per_session" "create" "cross" "cube" "current" "currval" "cycle"
1681 "dangling" "data" "database" "datafile" "datafiles" "day" "ddl"
1682 "deallocate" "debug" "default" "deferrable" "deferred" "definer"
1683 "delay" "delete" "demand" "desc" "determines" "deterministic"
1684 "dictionary" "dimension" "directory" "disable" "disassociate"
1685 "disconnect" "distinct" "distinguished" "distributed" "dml" "drop"
1686 "each" "element" "else" "enable" "end" "equals_path" "escape"
1687 "estimate" "except" "exceptions" "exchange" "excluding" "exists"
1688 "expire" "explain" "extent" "external" "externally"
1689 "failed_login_attempts" "fast" "file" "final" "finish" "flush" "for"
1690 "force" "foreign" "freelist" "freelists" "freepools" "fresh" "from"
1691 "full" "function" "functions" "generated" "global" "global_name"
1692 "globally" "grant" "group" "grouping" "groups" "guard" "hash"
1693 "hashkeys" "having" "heap" "hierarchy" "id" "identified" "identifier"
1694 "idle_time" "immediate" "in" "including" "increment" "index" "indexed"
1695 "indexes" "indextype" "indextypes" "indicator" "initial" "initialized"
1696 "initially" "initrans" "inner" "insert" "instance" "instantiable"
1697 "instead" "intersect" "into" "invalidate" "is" "isolation" "java"
1698 "join" "keep" "key" "kill" "language" "left" "less" "level"
1699 "levels" "library" "like" "like2" "like4" "likec" "limit" "link"
1700 "list" "lob" "local" "location" "locator" "lock" "log" "logfile"
1701 "logging" "logical" "logical_reads_per_call"
1702 "logical_reads_per_session" "managed" "management" "manual" "map"
1703 "mapping" "master" "matched" "materialized" "maxdatafiles"
1704 "maxextents" "maximize" "maxinstances" "maxlogfiles" "maxloghistory"
1705 "maxlogmembers" "maxsize" "maxtrans" "maxvalue" "member" "memory"
1706 "merge" "migrate" "minextents" "minimize" "minimum" "minus" "minvalue"
1707 "mode" "modify" "monitoring" "month" "mount" "move" "movement" "name"
1708 "named" "natural" "nested" "never" "new" "next" "nextval" "no"
1709 "noarchivelog" "noaudit" "nocache" "nocompress" "nocopy" "nocycle"
1710 "nodelay" "noforce" "nologging" "nomapping" "nomaxvalue" "nominimize"
1711 "nominvalue" "nomonitoring" "none" "noorder" "noparallel" "norely"
1712 "noresetlogs" "noreverse" "normal" "norowdependencies" "nosort"
1713 "noswitch" "not" "nothing" "notimeout" "novalidate" "nowait" "null"
1714 "nulls" "object" "of" "off" "offline" "oidindex" "old" "on" "online"
1715 "only" "open" "operator" "optimal" "option" "or" "order"
1716 "organization" "out" "outer" "outline" "over" "overflow" "overriding"
1717 "package" "packages" "parallel" "parallel_enable" "parameters"
1718 "parent" "partition" "partitions" "password" "password_grace_time"
1719 "password_life_time" "password_lock_time" "password_reuse_max"
1720 "password_reuse_time" "password_verify_function" "pctfree"
1721 "pctincrease" "pctthreshold" "pctused" "pctversion" "percent"
1722 "performance" "permanent" "pfile" "physical" "pipelined" "plan"
1723 "post_transaction" "pragma" "prebuilt" "preserve" "primary" "private"
1724 "private_sga" "privileges" "procedure" "profile" "protection" "public"
1725 "purge" "query" "quiesce" "quota" "range" "read" "reads" "rebuild"
1726 "records_per_block" "recover" "recovery" "recycle" "reduced" "ref"
1727 "references" "referencing" "refresh" "register" "reject" "relational"
1728 "rely" "rename" "reset" "resetlogs" "resize" "resolve" "resolver"
1729 "resource" "restrict" "restrict_references" "restricted" "result"
1730 "resumable" "resume" "retention" "return" "returning" "reuse"
1731 "reverse" "revoke" "rewrite" "right" "rnds" "rnps" "role" "roles"
1732 "rollback" "rollup" "row" "rowdependencies" "rownum" "rows" "sample"
1733 "savepoint" "scan" "schema" "scn" "scope" "segment" "select"
1734 "selectivity" "self" "sequence" "serializable" "session"
1735 "sessions_per_user" "set" "sets" "settings" "shared" "shared_pool"
1736 "shrink" "shutdown" "siblings" "sid" "single" "size" "skip" "some"
1737 "sort" "source" "space" "specification" "spfile" "split" "standby"
1738 "start" "statement_id" "static" "statistics" "stop" "storage" "store"
1739 "structure" "subpartition" "subpartitions" "substitutable"
1740 "successful" "supplemental" "suspend" "switch" "switchover" "synonym"
1741 "sys" "system" "table" "tables" "tablespace" "tempfile" "template"
1742 "temporary" "test" "than" "then" "thread" "through" "time_zone"
1743 "timeout" "to" "trace" "transaction" "trigger" "triggers" "truncate"
1744 "trust" "type" "types" "unarchived" "under" "under_path" "undo"
1745 "uniform" "union" "unique" "unlimited" "unlock" "unquiesce"
1746 "unrecoverable" "until" "unusable" "unused" "update" "upgrade" "usage"
1747 "use" "using" "validate" "validation" "value" "values" "variable"
1748 "varray" "version" "view" "wait" "when" "whenever" "where" "with"
1749 "without" "wnds" "wnps" "work" "write" "xmldata" "xmlschema" "xmltype"
1752 ;; Oracle Data Types
1753 (sql-font-lock-keywords-builder 'font-lock-type-face nil
1754 "bfile" "binary_double" "binary_float" "blob" "byte" "char" "charbyte"
1755 "clob" "date" "day" "float" "interval" "local" "long" "longraw"
1756 "minute" "month" "nchar" "nclob" "number" "nvarchar2" "raw" "rowid" "second"
1757 "time" "timestamp" "urowid" "varchar2" "with" "year" "zone"
1760 ;; Oracle PL/SQL Attributes
1761 (sql-font-lock-keywords-builder 'font-lock-builtin-face '("%" . "\\b")
1762 "bulk_exceptions" "bulk_rowcount" "found" "isopen" "notfound"
1763 "rowcount" "rowtype" "type"
1766 ;; Oracle PL/SQL Functions
1767 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
1768 "delete" "trim" "extend" "exists" "first" "last" "count" "limit"
1769 "prior" "next" "sqlcode" "sqlerrm"
1772 ;; Oracle PL/SQL Reserved words
1773 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
1774 "all" "alter" "and" "any" "as" "asc" "at" "begin" "between" "by"
1775 "case" "check" "clusters" "cluster" "colauth" "columns" "compress"
1776 "connect" "crash" "create" "cursor" "declare" "default" "desc"
1777 "distinct" "drop" "else" "end" "exception" "exclusive" "fetch" "for"
1778 "from" "function" "goto" "grant" "group" "having" "identified" "if"
1779 "in" "index" "indexes" "insert" "intersect" "into" "is" "like" "lock"
1780 "minus" "mode" "nocompress" "not" "nowait" "null" "of" "on" "option"
1781 "or" "order" "overlaps" "procedure" "public" "resource" "revoke"
1782 "select" "share" "size" "sql" "start" "subtype" "tabauth" "table"
1783 "then" "to" "type" "union" "unique" "update" "values" "view" "views"
1784 "when" "where" "with"
1786 "true" "false"
1787 "raise_application_error"
1790 ;; Oracle PL/SQL Keywords
1791 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
1792 "a" "add" "agent" "aggregate" "array" "attribute" "authid" "avg"
1793 "bfile_base" "binary" "blob_base" "block" "body" "both" "bound" "bulk"
1794 "byte" "c" "call" "calling" "cascade" "char" "char_base" "character"
1795 "charset" "charsetform" "charsetid" "clob_base" "close" "collect"
1796 "comment" "commit" "committed" "compiled" "constant" "constructor"
1797 "context" "continue" "convert" "count" "current" "customdatum"
1798 "dangling" "data" "date" "date_base" "day" "define" "delete"
1799 "deterministic" "double" "duration" "element" "elsif" "empty" "escape"
1800 "except" "exceptions" "execute" "exists" "exit" "external" "final"
1801 "fixed" "float" "forall" "force" "general" "hash" "heap" "hidden"
1802 "hour" "immediate" "including" "indicator" "indices" "infinite"
1803 "instantiable" "int" "interface" "interval" "invalidate" "isolation"
1804 "java" "language" "large" "leading" "length" "level" "library" "like2"
1805 "like4" "likec" "limit" "limited" "local" "long" "loop" "map" "max"
1806 "maxlen" "member" "merge" "min" "minute" "mod" "modify" "month"
1807 "multiset" "name" "nan" "national" "native" "nchar" "new" "nocopy"
1808 "number_base" "object" "ocicoll" "ocidate" "ocidatetime" "ociduration"
1809 "ociinterval" "ociloblocator" "ocinumber" "ociraw" "ociref"
1810 "ocirefcursor" "ocirowid" "ocistring" "ocitype" "old" "only" "opaque"
1811 "open" "operator" "oracle" "oradata" "organization" "orlany" "orlvary"
1812 "others" "out" "overriding" "package" "parallel_enable" "parameter"
1813 "parameters" "parent" "partition" "pascal" "pipe" "pipelined" "pragma"
1814 "precision" "prior" "private" "raise" "range" "raw" "read" "record"
1815 "ref" "reference" "relies_on" "rem" "remainder" "rename" "result"
1816 "result_cache" "return" "returning" "reverse" "rollback" "row"
1817 "sample" "save" "savepoint" "sb1" "sb2" "sb4" "second" "segment"
1818 "self" "separate" "sequence" "serializable" "set" "short" "size_t"
1819 "some" "sparse" "sqlcode" "sqldata" "sqlname" "sqlstate" "standard"
1820 "static" "stddev" "stored" "string" "struct" "style" "submultiset"
1821 "subpartition" "substitutable" "sum" "synonym" "tdo" "the" "time"
1822 "timestamp" "timezone_abbr" "timezone_hour" "timezone_minute"
1823 "timezone_region" "trailing" "transaction" "transactional" "trusted"
1824 "ub1" "ub2" "ub4" "under" "unsigned" "untrusted" "use" "using"
1825 "valist" "value" "variable" "variance" "varray" "varying" "void"
1826 "while" "work" "wrapped" "write" "year" "zone"
1827 ;; Pragma
1828 "autonomous_transaction" "exception_init" "inline"
1829 "restrict_references" "serially_reusable"
1832 ;; Oracle PL/SQL Data Types
1833 (sql-font-lock-keywords-builder 'font-lock-type-face nil
1834 "\"BINARY LARGE OBJECT\"" "\"CHAR LARGE OBJECT\"" "\"CHAR VARYING\""
1835 "\"CHARACTER LARGE OBJECT\"" "\"CHARACTER VARYING\""
1836 "\"DOUBLE PRECISION\"" "\"INTERVAL DAY TO SECOND\""
1837 "\"INTERVAL YEAR TO MONTH\"" "\"LONG RAW\"" "\"NATIONAL CHAR\""
1838 "\"NATIONAL CHARACTER LARGE OBJECT\"" "\"NATIONAL CHARACTER\""
1839 "\"NCHAR LARGE OBJECT\"" "\"NCHAR\"" "\"NCLOB\"" "\"NVARCHAR2\""
1840 "\"TIME WITH TIME ZONE\"" "\"TIMESTAMP WITH LOCAL TIME ZONE\""
1841 "\"TIMESTAMP WITH TIME ZONE\""
1842 "bfile" "bfile_base" "binary_double" "binary_float" "binary_integer"
1843 "blob" "blob_base" "boolean" "char" "character" "char_base" "clob"
1844 "clob_base" "cursor" "date" "day" "dec" "decimal"
1845 "dsinterval_unconstrained" "float" "int" "integer" "interval" "local"
1846 "long" "mlslabel" "month" "natural" "naturaln" "nchar_cs" "number"
1847 "number_base" "numeric" "pls_integer" "positive" "positiven" "raw"
1848 "real" "ref" "rowid" "second" "signtype" "simple_double"
1849 "simple_float" "simple_integer" "smallint" "string" "time" "timestamp"
1850 "timestamp_ltz_unconstrained" "timestamp_tz_unconstrained"
1851 "timestamp_unconstrained" "time_tz_unconstrained" "time_unconstrained"
1852 "to" "urowid" "varchar" "varchar2" "with" "year"
1853 "yminterval_unconstrained" "zone"
1856 ;; Oracle PL/SQL Exceptions
1857 (sql-font-lock-keywords-builder 'font-lock-warning-face nil
1858 "access_into_null" "case_not_found" "collection_is_null"
1859 "cursor_already_open" "dup_val_on_index" "invalid_cursor"
1860 "invalid_number" "login_denied" "no_data_found" "no_data_needed"
1861 "not_logged_on" "program_error" "rowtype_mismatch" "self_is_null"
1862 "storage_error" "subscript_beyond_count" "subscript_outside_limit"
1863 "sys_invalid_rowid" "timeout_on_resource" "too_many_rows"
1864 "value_error" "zero_divide"
1867 "Oracle SQL keywords used by font-lock.
1869 This variable is used by `sql-mode' and `sql-interactive-mode'. The
1870 regular expressions are created during compilation by calling the
1871 function `regexp-opt'. Therefore, take a look at the source before
1872 you define your own `sql-mode-oracle-font-lock-keywords'. You may want
1873 to add functions and PL/SQL keywords.")
1875 (defvar sql-mode-postgres-font-lock-keywords
1876 (eval-when-compile
1877 (list
1878 ;; Postgres psql commands
1879 '("^\\s-*\\\\.*$" . font-lock-doc-face)
1881 ;; Postgres unreserved words but may have meaning
1882 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil "a"
1883 "abs" "absent" "according" "ada" "alias" "allocate" "are" "array_agg"
1884 "asensitive" "atomic" "attribute" "attributes" "avg" "base64"
1885 "bernoulli" "bit_length" "bitvar" "blob" "blocked" "bom" "breadth" "c"
1886 "call" "cardinality" "catalog_name" "ceil" "ceiling" "char_length"
1887 "character_length" "character_set_catalog" "character_set_name"
1888 "character_set_schema" "characters" "checked" "class_origin" "clob"
1889 "cobol" "collation" "collation_catalog" "collation_name"
1890 "collation_schema" "collect" "column_name" "columns"
1891 "command_function" "command_function_code" "completion" "condition"
1892 "condition_number" "connect" "connection_name" "constraint_catalog"
1893 "constraint_name" "constraint_schema" "constructor" "contains"
1894 "control" "convert" "corr" "corresponding" "count" "covar_pop"
1895 "covar_samp" "cube" "cume_dist" "current_default_transform_group"
1896 "current_path" "current_transform_group_for_type" "cursor_name"
1897 "datalink" "datetime_interval_code" "datetime_interval_precision" "db"
1898 "defined" "degree" "dense_rank" "depth" "deref" "derived" "describe"
1899 "descriptor" "destroy" "destructor" "deterministic" "diagnostics"
1900 "disconnect" "dispatch" "dlnewcopy" "dlpreviouscopy" "dlurlcomplete"
1901 "dlurlcompleteonly" "dlurlcompletewrite" "dlurlpath" "dlurlpathonly"
1902 "dlurlpathwrite" "dlurlscheme" "dlurlserver" "dlvalue" "dynamic"
1903 "dynamic_function" "dynamic_function_code" "element" "empty"
1904 "end-exec" "equals" "every" "exception" "exec" "existing" "exp" "file"
1905 "filter" "final" "first_value" "flag" "floor" "fortran" "found" "free"
1906 "fs" "fusion" "g" "general" "generated" "get" "go" "goto" "grouping"
1907 "hex" "hierarchy" "host" "id" "ignore" "implementation" "import"
1908 "indent" "indicator" "infix" "initialize" "instance" "instantiable"
1909 "integrity" "intersection" "iterate" "k" "key_member" "key_type" "lag"
1910 "last_value" "lateral" "lead" "length" "less" "library" "like_regex"
1911 "link" "ln" "locator" "lower" "m" "map" "matched" "max"
1912 "max_cardinality" "member" "merge" "message_length"
1913 "message_octet_length" "message_text" "method" "min" "mod" "modifies"
1914 "modify" "module" "more" "multiset" "mumps" "namespace" "nclob"
1915 "nesting" "new" "nfc" "nfd" "nfkc" "nfkd" "nil" "normalize"
1916 "normalized" "nth_value" "ntile" "nullable" "number"
1917 "occurrences_regex" "octet_length" "octets" "old" "open" "operation"
1918 "ordering" "ordinality" "others" "output" "overriding" "p" "pad"
1919 "parameter" "parameter_mode" "parameter_name"
1920 "parameter_ordinal_position" "parameter_specific_catalog"
1921 "parameter_specific_name" "parameter_specific_schema" "parameters"
1922 "pascal" "passing" "passthrough" "percent_rank" "percentile_cont"
1923 "percentile_disc" "permission" "pli" "position_regex" "postfix"
1924 "power" "prefix" "preorder" "public" "rank" "reads" "recovery" "ref"
1925 "referencing" "regr_avgx" "regr_avgy" "regr_count" "regr_intercept"
1926 "regr_r2" "regr_slope" "regr_sxx" "regr_sxy" "regr_syy" "requiring"
1927 "respect" "restore" "result" "return" "returned_cardinality"
1928 "returned_length" "returned_octet_length" "returned_sqlstate" "rollup"
1929 "routine" "routine_catalog" "routine_name" "routine_schema"
1930 "row_count" "row_number" "scale" "schema_name" "scope" "scope_catalog"
1931 "scope_name" "scope_schema" "section" "selective" "self" "sensitive"
1932 "server_name" "sets" "size" "source" "space" "specific"
1933 "specific_name" "specifictype" "sql" "sqlcode" "sqlerror"
1934 "sqlexception" "sqlstate" "sqlwarning" "sqrt" "state" "static"
1935 "stddev_pop" "stddev_samp" "structure" "style" "subclass_origin"
1936 "sublist" "submultiset" "substring_regex" "sum" "system_user" "t"
1937 "table_name" "tablesample" "terminate" "than" "ties" "timezone_hour"
1938 "timezone_minute" "token" "top_level_count" "transaction_active"
1939 "transactions_committed" "transactions_rolled_back" "transform"
1940 "transforms" "translate" "translate_regex" "translation"
1941 "trigger_catalog" "trigger_name" "trigger_schema" "trim_array"
1942 "uescape" "under" "unlink" "unnamed" "unnest" "untyped" "upper" "uri"
1943 "usage" "user_defined_type_catalog" "user_defined_type_code"
1944 "user_defined_type_name" "user_defined_type_schema" "var_pop"
1945 "var_samp" "varbinary" "variable" "whenever" "width_bucket" "within"
1946 "xmlagg" "xmlbinary" "xmlcast" "xmlcomment" "xmldeclaration"
1947 "xmldocument" "xmlexists" "xmliterate" "xmlnamespaces" "xmlquery"
1948 "xmlschema" "xmltable" "xmltext" "xmlvalidate"
1951 ;; Postgres non-reserved words
1952 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
1953 "abort" "absolute" "access" "action" "add" "admin" "after" "aggregate"
1954 "also" "alter" "always" "assertion" "assignment" "at" "attribute" "backward"
1955 "before" "begin" "between" "by" "cache" "called" "cascade" "cascaded"
1956 "catalog" "chain" "characteristics" "checkpoint" "class" "close"
1957 "cluster" "coalesce" "comment" "comments" "commit" "committed"
1958 "configuration" "connection" "constraints" "content" "continue"
1959 "conversion" "copy" "cost" "createdb" "createrole" "createuser" "csv"
1960 "current" "cursor" "cycle" "data" "database" "day" "deallocate" "dec"
1961 "declare" "defaults" "deferred" "definer" "delete" "delimiter"
1962 "delimiters" "dictionary" "disable" "discard" "document" "domain"
1963 "drop" "each" "enable" "encoding" "encrypted" "enum" "escape"
1964 "exclude" "excluding" "exclusive" "execute" "exists" "explain"
1965 "extension" "external" "extract" "family" "first" "float" "following" "force"
1966 "forward" "function" "functions" "global" "granted" "greatest"
1967 "handler" "header" "hold" "hour" "identity" "if" "immediate"
1968 "immutable" "implicit" "including" "increment" "index" "indexes"
1969 "inherit" "inherits" "inline" "inout" "input" "insensitive" "insert"
1970 "instead" "invoker" "isolation" "key" "label" "language" "large" "last"
1971 "lc_collate" "lc_ctype" "leakproof" "least" "level" "listen" "load" "local"
1972 "location" "lock" "login" "mapping" "match" "maxvalue" "minute"
1973 "minvalue" "mode" "month" "move" "names" "national" "nchar"
1974 "next" "no" "nocreatedb" "nocreaterole" "nocreateuser" "noinherit"
1975 "nologin" "none" "noreplication" "nosuperuser" "nothing" "notify" "nowait" "nullif"
1976 "nulls" "object" "of" "off" "oids" "operator" "option" "options" "out"
1977 "overlay" "owned" "owner" "parser" "partial" "partition" "passing" "password"
1978 "plans" "position" "preceding" "precision" "prepare" "prepared" "preserve" "prior"
1979 "privileges" "procedural" "procedure" "quote" "range" "read"
1980 "reassign" "recheck" "recursive" "ref" "reindex" "relative" "release"
1981 "rename" "repeatable" "replace" "replica" "replication" "reset" "restart" "restrict"
1982 "returns" "revoke" "role" "rollback" "row" "rows" "rule" "savepoint"
1983 "schema" "scroll" "search" "second" "security" "sequence"
1984 "serializable" "server" "session" "set" "setof" "share" "show"
1985 "simple" "snapshot" "stable" "standalone" "start" "statement" "statistics"
1986 "stdin" "stdout" "storage" "strict" "strip" "substring" "superuser"
1987 "sysid" "system" "tables" "tablespace" "temp" "template" "temporary"
1988 "transaction" "treat" "trim" "truncate" "trusted" "type" "types"
1989 "unbounded" "uncommitted" "unencrypted" "unlisten" "unlogged" "until"
1990 "update" "vacuum" "valid" "validate" "validator" "value" "values" "varying" "version"
1991 "view" "volatile" "whitespace" "without" "work" "wrapper" "write"
1992 "xmlattributes" "xmlconcat" "xmlelement" "xmlexists" "xmlforest" "xmlparse"
1993 "xmlpi" "xmlroot" "xmlserialize" "year" "yes" "zone"
1996 ;; Postgres Reserved
1997 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
1998 "all" "analyse" "analyze" "and" "array" "asc" "as" "asymmetric"
1999 "authorization" "binary" "both" "case" "cast" "check" "collate"
2000 "column" "concurrently" "constraint" "create" "cross"
2001 "current_catalog" "current_date" "current_role" "current_schema"
2002 "current_time" "current_timestamp" "current_user" "default"
2003 "deferrable" "desc" "distinct" "do" "else" "end" "except" "false"
2004 "fetch" "foreign" "for" "freeze" "from" "full" "grant" "group"
2005 "having" "ilike" "initially" "inner" "in" "intersect" "into" "isnull"
2006 "is" "join" "leading" "left" "like" "limit" "localtime"
2007 "localtimestamp" "natural" "notnull" "not" "null" "offset"
2008 "only" "on" "order" "or" "outer" "overlaps" "over" "placing" "primary"
2009 "references" "returning" "right" "select" "session_user" "similar"
2010 "some" "symmetric" "table" "then" "to" "trailing" "true" "union"
2011 "unique" "user" "using" "variadic" "verbose" "when" "where" "window"
2012 "with"
2015 ;; Postgres PL/pgSQL
2016 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
2017 "assign" "if" "case" "loop" "while" "for" "foreach" "exit" "elsif" "return"
2018 "raise" "execsql" "dynexecute" "perform" "getdiag" "open" "fetch" "move" "close"
2021 ;; Postgres Data Types
2022 (sql-font-lock-keywords-builder 'font-lock-type-face nil
2023 "bigint" "bigserial" "bit" "bool" "boolean" "box" "bytea" "char"
2024 "character" "cidr" "circle" "date" "decimal" "double" "float4"
2025 "float8" "inet" "int" "int2" "int4" "int8" "integer" "interval" "line"
2026 "lseg" "macaddr" "money" "name" "numeric" "path" "point" "polygon"
2027 "precision" "real" "serial" "serial4" "serial8" "sequences" "smallint" "text"
2028 "time" "timestamp" "timestamptz" "timetz" "tsquery" "tsvector"
2029 "txid_snapshot" "unknown" "uuid" "varbit" "varchar" "varying" "without"
2030 "xml" "zone"
2033 "Postgres SQL keywords used by font-lock.
2035 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2036 regular expressions are created during compilation by calling the
2037 function `regexp-opt'. Therefore, take a look at the source before
2038 you define your own `sql-mode-postgres-font-lock-keywords'.")
2040 (defvar sql-mode-linter-font-lock-keywords
2041 (eval-when-compile
2042 (list
2043 ;; Linter Keywords
2044 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
2045 "autocommit" "autoinc" "autorowid" "cancel" "cascade" "channel"
2046 "committed" "count" "countblob" "cross" "current" "data" "database"
2047 "datafile" "datafiles" "datesplit" "dba" "dbname" "default" "deferred"
2048 "denied" "description" "device" "difference" "directory" "error"
2049 "escape" "euc" "exclusive" "external" "extfile" "false" "file"
2050 "filename" "filesize" "filetime" "filter" "findblob" "first" "foreign"
2051 "full" "fuzzy" "global" "granted" "ignore" "immediate" "increment"
2052 "indexes" "indexfile" "indexfiles" "indextime" "initial" "integrity"
2053 "internal" "key" "last_autoinc" "last_rowid" "limit" "linter"
2054 "linter_file_device" "linter_file_size" "linter_name_length" "ln"
2055 "local" "login" "maxisn" "maxrow" "maxrowid" "maxvalue" "message"
2056 "minvalue" "module" "names" "national" "natural" "new" "new_table"
2057 "no" "node" "noneuc" "nulliferror" "numbers" "off" "old" "old_table"
2058 "only" "operation" "optimistic" "option" "page" "partially" "password"
2059 "phrase" "plan" "precision" "primary" "priority" "privileges"
2060 "proc_info_size" "proc_par_name_len" "protocol" "quant" "range" "raw"
2061 "read" "record" "records" "references" "remote" "rename" "replication"
2062 "restart" "rewrite" "root" "row" "rule" "savepoint" "security"
2063 "sensitive" "sequence" "serializable" "server" "since" "size" "some"
2064 "startup" "statement" "station" "success" "sys_guid" "tables" "test"
2065 "timeout" "trace" "transaction" "translation" "trigger"
2066 "trigger_info_size" "true" "trunc" "uncommitted" "unicode" "unknown"
2067 "unlimited" "unlisted" "user" "utf8" "value" "varying" "volumes"
2068 "wait" "windows_code" "workspace" "write" "xml"
2071 ;; Linter Reserved
2072 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
2073 "access" "action" "add" "address" "after" "all" "alter" "always" "and"
2074 "any" "append" "as" "asc" "ascic" "async" "at_begin" "at_end" "audit"
2075 "aud_obj_name_len" "backup" "base" "before" "between" "blobfile"
2076 "blobfiles" "blobpct" "brief" "browse" "by" "case" "cast" "check"
2077 "clear" "close" "column" "comment" "commit" "connect" "contains"
2078 "correct" "create" "delete" "desc" "disable" "disconnect" "distinct"
2079 "drop" "each" "ef" "else" "enable" "end" "event" "except" "exclude"
2080 "execute" "exists" "extract" "fetch" "finish" "for" "from" "get"
2081 "grant" "group" "having" "identified" "in" "index" "inner" "insert"
2082 "instead" "intersect" "into" "is" "isolation" "join" "left" "level"
2083 "like" "lock" "mode" "modify" "not" "nowait" "null" "of" "on" "open"
2084 "or" "order" "outer" "owner" "press" "prior" "procedure" "public"
2085 "purge" "rebuild" "resource" "restrict" "revoke" "right" "role"
2086 "rollback" "rownum" "select" "session" "set" "share" "shutdown"
2087 "start" "stop" "sync" "synchronize" "synonym" "sysdate" "table" "then"
2088 "to" "union" "unique" "unlock" "until" "update" "using" "values"
2089 "view" "when" "where" "with" "without"
2092 ;; Linter Functions
2093 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
2094 "abs" "acos" "asin" "atan" "atan2" "avg" "ceil" "cos" "cosh" "divtime"
2095 "exp" "floor" "getbits" "getblob" "getbyte" "getlong" "getraw"
2096 "getstr" "gettext" "getword" "hextoraw" "lenblob" "length" "log"
2097 "lower" "lpad" "ltrim" "max" "min" "mod" "monthname" "nvl"
2098 "octet_length" "power" "rand" "rawtohex" "repeat_string"
2099 "right_substr" "round" "rpad" "rtrim" "sign" "sin" "sinh" "soundex"
2100 "sqrt" "sum" "tan" "tanh" "timeint_to_days" "to_char" "to_date"
2101 "to_gmtime" "to_localtime" "to_number" "trim" "upper" "decode"
2102 "substr" "substring" "chr" "dayname" "days" "greatest" "hex" "initcap"
2103 "instr" "least" "multime" "replace" "width"
2106 ;; Linter Data Types
2107 (sql-font-lock-keywords-builder 'font-lock-type-face nil
2108 "bigint" "bitmap" "blob" "boolean" "char" "character" "date"
2109 "datetime" "dec" "decimal" "double" "float" "int" "integer" "nchar"
2110 "number" "numeric" "real" "smallint" "varbyte" "varchar" "byte"
2111 "cursor" "long"
2114 "Linter SQL keywords used by font-lock.
2116 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2117 regular expressions are created during compilation by calling the
2118 function `regexp-opt'.")
2120 (defvar sql-mode-ms-font-lock-keywords
2121 (eval-when-compile
2122 (list
2123 ;; MS isql/osql Commands
2124 (cons
2125 (concat
2126 "^\\(?:\\(?:set\\s-+\\(?:"
2127 (regexp-opt '(
2128 "datefirst" "dateformat" "deadlock_priority" "lock_timeout"
2129 "concat_null_yields_null" "cursor_close_on_commit"
2130 "disable_def_cnst_chk" "fips_flagger" "identity_insert" "language"
2131 "offsets" "quoted_identifier" "arithabort" "arithignore" "fmtonly"
2132 "nocount" "noexec" "numeric_roundabort" "parseonly"
2133 "query_governor_cost_limit" "rowcount" "textsize" "ansi_defaults"
2134 "ansi_null_dflt_off" "ansi_null_dflt_on" "ansi_nulls" "ansi_padding"
2135 "ansi_warnings" "forceplan" "showplan_all" "showplan_text"
2136 "statistics" "implicit_transactions" "remote_proc_transactions"
2137 "transaction" "xact_abort"
2138 ) t)
2139 "\\)\\)\\|go\\s-*\\|use\\s-+\\|setuser\\s-+\\|dbcc\\s-+\\).*$")
2140 'font-lock-doc-face)
2142 ;; MS Reserved
2143 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
2144 "absolute" "add" "all" "alter" "and" "any" "as" "asc" "authorization"
2145 "avg" "backup" "begin" "between" "break" "browse" "bulk" "by"
2146 "cascade" "case" "check" "checkpoint" "close" "clustered" "coalesce"
2147 "column" "commit" "committed" "compute" "confirm" "constraint"
2148 "contains" "containstable" "continue" "controlrow" "convert" "count"
2149 "create" "cross" "current" "current_date" "current_time"
2150 "current_timestamp" "current_user" "database" "deallocate" "declare"
2151 "default" "delete" "deny" "desc" "disk" "distinct" "distributed"
2152 "double" "drop" "dummy" "dump" "else" "end" "errlvl" "errorexit"
2153 "escape" "except" "exec" "execute" "exists" "exit" "fetch" "file"
2154 "fillfactor" "first" "floppy" "for" "foreign" "freetext"
2155 "freetexttable" "from" "full" "goto" "grant" "group" "having"
2156 "holdlock" "identity" "identity_insert" "identitycol" "if" "in"
2157 "index" "inner" "insert" "intersect" "into" "is" "isolation" "join"
2158 "key" "kill" "last" "left" "level" "like" "lineno" "load" "max" "min"
2159 "mirrorexit" "national" "next" "nocheck" "nolock" "nonclustered" "not"
2160 "null" "nullif" "of" "off" "offsets" "on" "once" "only" "open"
2161 "opendatasource" "openquery" "openrowset" "option" "or" "order"
2162 "outer" "output" "over" "paglock" "percent" "perm" "permanent" "pipe"
2163 "plan" "precision" "prepare" "primary" "print" "prior" "privileges"
2164 "proc" "procedure" "processexit" "public" "raiserror" "read"
2165 "readcommitted" "readpast" "readtext" "readuncommitted" "reconfigure"
2166 "references" "relative" "repeatable" "repeatableread" "replication"
2167 "restore" "restrict" "return" "revoke" "right" "rollback" "rowcount"
2168 "rowguidcol" "rowlock" "rule" "save" "schema" "select" "serializable"
2169 "session_user" "set" "shutdown" "some" "statistics" "sum"
2170 "system_user" "table" "tablock" "tablockx" "tape" "temp" "temporary"
2171 "textsize" "then" "to" "top" "tran" "transaction" "trigger" "truncate"
2172 "tsequal" "uncommitted" "union" "unique" "update" "updatetext"
2173 "updlock" "use" "user" "values" "view" "waitfor" "when" "where"
2174 "while" "with" "work" "writetext" "collate" "function" "openxml"
2175 "returns"
2178 ;; MS Functions
2179 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
2180 "@@connections" "@@cpu_busy" "@@cursor_rows" "@@datefirst" "@@dbts"
2181 "@@error" "@@fetch_status" "@@identity" "@@idle" "@@io_busy"
2182 "@@langid" "@@language" "@@lock_timeout" "@@max_connections"
2183 "@@max_precision" "@@nestlevel" "@@options" "@@pack_received"
2184 "@@pack_sent" "@@packet_errors" "@@procid" "@@remserver" "@@rowcount"
2185 "@@servername" "@@servicename" "@@spid" "@@textsize" "@@timeticks"
2186 "@@total_errors" "@@total_read" "@@total_write" "@@trancount"
2187 "@@version" "abs" "acos" "and" "app_name" "ascii" "asin" "atan" "atn2"
2188 "avg" "case" "cast" "ceiling" "char" "charindex" "coalesce"
2189 "col_length" "col_name" "columnproperty" "containstable" "convert"
2190 "cos" "cot" "count" "current_timestamp" "current_user" "cursor_status"
2191 "databaseproperty" "datalength" "dateadd" "datediff" "datename"
2192 "datepart" "day" "db_id" "db_name" "degrees" "difference" "exp"
2193 "file_id" "file_name" "filegroup_id" "filegroup_name"
2194 "filegroupproperty" "fileproperty" "floor" "formatmessage"
2195 "freetexttable" "fulltextcatalogproperty" "fulltextserviceproperty"
2196 "getansinull" "getdate" "grouping" "host_id" "host_name" "ident_incr"
2197 "ident_seed" "identity" "index_col" "indexproperty" "is_member"
2198 "is_srvrolemember" "isdate" "isnull" "isnumeric" "left" "len" "log"
2199 "log10" "lower" "ltrim" "max" "min" "month" "nchar" "newid" "nullif"
2200 "object_id" "object_name" "objectproperty" "openquery" "openrowset"
2201 "parsename" "patindex" "patindex" "permissions" "pi" "power"
2202 "quotename" "radians" "rand" "replace" "replicate" "reverse" "right"
2203 "round" "rtrim" "session_user" "sign" "sin" "soundex" "space" "sqrt"
2204 "square" "stats_date" "stdev" "stdevp" "str" "stuff" "substring" "sum"
2205 "suser_id" "suser_name" "suser_sid" "suser_sname" "system_user" "tan"
2206 "textptr" "textvalid" "typeproperty" "unicode" "upper" "user"
2207 "user_id" "user_name" "var" "varp" "year"
2210 ;; MS Variables
2211 '("\\b@[a-zA-Z0-9_]*\\b" . font-lock-variable-name-face)
2213 ;; MS Types
2214 (sql-font-lock-keywords-builder 'font-lock-type-face nil
2215 "binary" "bit" "char" "character" "cursor" "datetime" "dec" "decimal"
2216 "double" "float" "image" "int" "integer" "money" "national" "nchar"
2217 "ntext" "numeric" "numeric" "nvarchar" "precision" "real"
2218 "smalldatetime" "smallint" "smallmoney" "text" "timestamp" "tinyint"
2219 "uniqueidentifier" "varbinary" "varchar" "varying"
2222 "Microsoft SQLServer SQL keywords used by font-lock.
2224 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2225 regular expressions are created during compilation by calling the
2226 function `regexp-opt'. Therefore, take a look at the source before
2227 you define your own `sql-mode-ms-font-lock-keywords'.")
2229 (defvar sql-mode-sybase-font-lock-keywords nil
2230 "Sybase SQL keywords used by font-lock.
2232 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2233 regular expressions are created during compilation by calling the
2234 function `regexp-opt'. Therefore, take a look at the source before
2235 you define your own `sql-mode-sybase-font-lock-keywords'.")
2237 (defvar sql-mode-informix-font-lock-keywords nil
2238 "Informix SQL keywords used by font-lock.
2240 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2241 regular expressions are created during compilation by calling the
2242 function `regexp-opt'. Therefore, take a look at the source before
2243 you define your own `sql-mode-informix-font-lock-keywords'.")
2245 (defvar sql-mode-interbase-font-lock-keywords nil
2246 "Interbase SQL keywords used by font-lock.
2248 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2249 regular expressions are created during compilation by calling the
2250 function `regexp-opt'. Therefore, take a look at the source before
2251 you define your own `sql-mode-interbase-font-lock-keywords'.")
2253 (defvar sql-mode-ingres-font-lock-keywords nil
2254 "Ingres SQL keywords used by font-lock.
2256 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2257 regular expressions are created during compilation by calling the
2258 function `regexp-opt'. Therefore, take a look at the source before
2259 you define your own `sql-mode-interbase-font-lock-keywords'.")
2261 (defvar sql-mode-solid-font-lock-keywords nil
2262 "Solid SQL keywords used by font-lock.
2264 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2265 regular expressions are created during compilation by calling the
2266 function `regexp-opt'. Therefore, take a look at the source before
2267 you define your own `sql-mode-solid-font-lock-keywords'.")
2269 (defvar sql-mode-mysql-font-lock-keywords
2270 (eval-when-compile
2271 (list
2272 ;; MySQL Functions
2273 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
2274 "ascii" "avg" "bdmpolyfromtext" "bdmpolyfromwkb" "bdpolyfromtext"
2275 "bdpolyfromwkb" "benchmark" "bin" "bit_and" "bit_length" "bit_or"
2276 "bit_xor" "both" "cast" "char_length" "character_length" "coalesce"
2277 "concat" "concat_ws" "connection_id" "conv" "convert" "count"
2278 "curdate" "current_date" "current_time" "current_timestamp" "curtime"
2279 "elt" "encrypt" "export_set" "field" "find_in_set" "found_rows" "from"
2280 "geomcollfromtext" "geomcollfromwkb" "geometrycollectionfromtext"
2281 "geometrycollectionfromwkb" "geometryfromtext" "geometryfromwkb"
2282 "geomfromtext" "geomfromwkb" "get_lock" "group_concat" "hex" "ifnull"
2283 "instr" "interval" "isnull" "last_insert_id" "lcase" "leading"
2284 "length" "linefromtext" "linefromwkb" "linestringfromtext"
2285 "linestringfromwkb" "load_file" "locate" "lower" "lpad" "ltrim"
2286 "make_set" "master_pos_wait" "max" "mid" "min" "mlinefromtext"
2287 "mlinefromwkb" "mpointfromtext" "mpointfromwkb" "mpolyfromtext"
2288 "mpolyfromwkb" "multilinestringfromtext" "multilinestringfromwkb"
2289 "multipointfromtext" "multipointfromwkb" "multipolygonfromtext"
2290 "multipolygonfromwkb" "now" "nullif" "oct" "octet_length" "ord"
2291 "pointfromtext" "pointfromwkb" "polyfromtext" "polyfromwkb"
2292 "polygonfromtext" "polygonfromwkb" "position" "quote" "rand"
2293 "release_lock" "repeat" "replace" "reverse" "rpad" "rtrim" "soundex"
2294 "space" "std" "stddev" "substring" "substring_index" "sum" "sysdate"
2295 "trailing" "trim" "ucase" "unix_timestamp" "upper" "user" "variance"
2298 ;; MySQL Keywords
2299 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
2300 "action" "add" "after" "against" "all" "alter" "and" "as" "asc"
2301 "auto_increment" "avg_row_length" "bdb" "between" "by" "cascade"
2302 "case" "change" "character" "check" "checksum" "close" "collate"
2303 "collation" "column" "columns" "comment" "committed" "concurrent"
2304 "constraint" "create" "cross" "data" "database" "default"
2305 "delay_key_write" "delayed" "delete" "desc" "directory" "disable"
2306 "distinct" "distinctrow" "do" "drop" "dumpfile" "duplicate" "else" "elseif"
2307 "enable" "enclosed" "end" "escaped" "exists" "fields" "first" "for"
2308 "force" "foreign" "from" "full" "fulltext" "global" "group" "handler"
2309 "having" "heap" "high_priority" "if" "ignore" "in" "index" "infile"
2310 "inner" "insert" "insert_method" "into" "is" "isam" "isolation" "join"
2311 "key" "keys" "last" "left" "level" "like" "limit" "lines" "load"
2312 "local" "lock" "low_priority" "match" "max_rows" "merge" "min_rows"
2313 "mode" "modify" "mrg_myisam" "myisam" "natural" "next" "no" "not"
2314 "null" "offset" "oj" "on" "open" "optionally" "or" "order" "outer"
2315 "outfile" "pack_keys" "partial" "password" "prev" "primary"
2316 "procedure" "quick" "raid0" "raid_type" "read" "references" "rename"
2317 "repeatable" "restrict" "right" "rollback" "rollup" "row_format"
2318 "savepoint" "select" "separator" "serializable" "session" "set"
2319 "share" "show" "sql_big_result" "sql_buffer_result" "sql_cache"
2320 "sql_calc_found_rows" "sql_no_cache" "sql_small_result" "starting"
2321 "straight_join" "striped" "table" "tables" "temporary" "terminated"
2322 "then" "to" "transaction" "truncate" "type" "uncommitted" "union"
2323 "unique" "unlock" "update" "use" "using" "values" "when" "where"
2324 "with" "write" "xor"
2327 ;; MySQL Data Types
2328 (sql-font-lock-keywords-builder 'font-lock-type-face nil
2329 "bigint" "binary" "bit" "blob" "bool" "boolean" "char" "curve" "date"
2330 "datetime" "dec" "decimal" "double" "enum" "fixed" "float" "geometry"
2331 "geometrycollection" "int" "integer" "line" "linearring" "linestring"
2332 "longblob" "longtext" "mediumblob" "mediumint" "mediumtext"
2333 "multicurve" "multilinestring" "multipoint" "multipolygon"
2334 "multisurface" "national" "numeric" "point" "polygon" "precision"
2335 "real" "smallint" "surface" "text" "time" "timestamp" "tinyblob"
2336 "tinyint" "tinytext" "unsigned" "varchar" "year" "year2" "year4"
2337 "zerofill"
2340 "MySQL SQL keywords used by font-lock.
2342 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2343 regular expressions are created during compilation by calling the
2344 function `regexp-opt'. Therefore, take a look at the source before
2345 you define your own `sql-mode-mysql-font-lock-keywords'.")
2347 (defvar sql-mode-sqlite-font-lock-keywords
2348 (eval-when-compile
2349 (list
2350 ;; SQLite commands
2351 '("^[.].*$" . font-lock-doc-face)
2353 ;; SQLite Keyword
2354 (sql-font-lock-keywords-builder 'font-lock-keyword-face nil
2355 "abort" "action" "add" "after" "all" "alter" "analyze" "and" "as"
2356 "asc" "attach" "autoincrement" "before" "begin" "between" "by"
2357 "cascade" "case" "cast" "check" "collate" "column" "commit" "conflict"
2358 "constraint" "create" "cross" "database" "default" "deferrable"
2359 "deferred" "delete" "desc" "detach" "distinct" "drop" "each" "else"
2360 "end" "escape" "except" "exclusive" "exists" "explain" "fail" "for"
2361 "foreign" "from" "full" "glob" "group" "having" "if" "ignore"
2362 "immediate" "in" "index" "indexed" "initially" "inner" "insert"
2363 "instead" "intersect" "into" "is" "isnull" "join" "key" "left" "like"
2364 "limit" "match" "natural" "no" "not" "notnull" "null" "of" "offset"
2365 "on" "or" "order" "outer" "plan" "pragma" "primary" "query" "raise"
2366 "references" "regexp" "reindex" "release" "rename" "replace"
2367 "restrict" "right" "rollback" "row" "savepoint" "select" "set" "table"
2368 "temp" "temporary" "then" "to" "transaction" "trigger" "union"
2369 "unique" "update" "using" "vacuum" "values" "view" "virtual" "when"
2370 "where"
2372 ;; SQLite Data types
2373 (sql-font-lock-keywords-builder 'font-lock-type-face nil
2374 "int" "integer" "tinyint" "smallint" "mediumint" "bigint" "unsigned"
2375 "big" "int2" "int8" "character" "varchar" "varying" "nchar" "native"
2376 "nvarchar" "text" "clob" "blob" "real" "double" "precision" "float"
2377 "numeric" "number" "decimal" "boolean" "date" "datetime"
2379 ;; SQLite Functions
2380 (sql-font-lock-keywords-builder 'font-lock-builtin-face nil
2381 ;; Core functions
2382 "abs" "changes" "coalesce" "glob" "ifnull" "hex" "last_insert_rowid"
2383 "length" "like" "load_extension" "lower" "ltrim" "max" "min" "nullif"
2384 "quote" "random" "randomblob" "replace" "round" "rtrim" "soundex"
2385 "sqlite_compileoption_get" "sqlite_compileoption_used"
2386 "sqlite_source_id" "sqlite_version" "substr" "total_changes" "trim"
2387 "typeof" "upper" "zeroblob"
2388 ;; Date/time functions
2389 "time" "julianday" "strftime"
2390 "current_date" "current_time" "current_timestamp"
2391 ;; Aggregate functions
2392 "avg" "count" "group_concat" "max" "min" "sum" "total"
2395 "SQLite SQL keywords used by font-lock.
2397 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2398 regular expressions are created during compilation by calling the
2399 function `regexp-opt'. Therefore, take a look at the source before
2400 you define your own `sql-mode-sqlite-font-lock-keywords'.")
2402 (defvar sql-mode-db2-font-lock-keywords nil
2403 "DB2 SQL keywords used by font-lock.
2405 This variable is used by `sql-mode' and `sql-interactive-mode'. The
2406 regular expressions are created during compilation by calling the
2407 function `regexp-opt'. Therefore, take a look at the source before
2408 you define your own `sql-mode-db2-font-lock-keywords'.")
2410 (defvar sql-mode-font-lock-keywords nil
2411 "SQL keywords used by font-lock.
2413 Setting this variable directly no longer has any affect. Use
2414 `sql-product' and `sql-add-product-keywords' to control the
2415 highlighting rules in SQL mode.")
2419 ;;; SQL Product support functions
2421 (defun sql-read-product (prompt &optional initial)
2422 "Read a valid SQL product."
2423 (let ((init (or (and initial (symbol-name initial)) "ansi")))
2424 (intern (completing-read
2425 prompt
2426 (mapcar #'(lambda (info) (symbol-name (car info)))
2427 sql-product-alist)
2428 nil 'require-match
2429 init 'sql-product-history init))))
2431 (defun sql-add-product (product display &rest plist)
2432 "Add support for a database product in `sql-mode'.
2434 Add PRODUCT to `sql-product-alist' which enables `sql-mode' to
2435 properly support syntax highlighting and interactive interaction.
2436 DISPLAY is the name of the SQL product that will appear in the
2437 menu bar and in messages. PLIST initializes the product
2438 configuration."
2440 ;; Don't do anything if the product is already supported
2441 (if (assoc product sql-product-alist)
2442 (user-error "Product `%s' is already defined" product)
2444 ;; Add product to the alist
2445 (add-to-list 'sql-product-alist `(,product :name ,display . ,plist))
2446 ;; Add a menu item to the SQL->Product menu
2447 (easy-menu-add-item sql-mode-menu '("Product")
2448 ;; Each product is represented by a radio
2449 ;; button with it's display name.
2450 `[,display
2451 (sql-set-product ',product)
2452 :style radio
2453 :selected (eq sql-product ',product)]
2454 ;; Maintain the product list in
2455 ;; (case-insensitive) alphabetic order of the
2456 ;; display names. Loop thru each keymap item
2457 ;; looking for an item whose display name is
2458 ;; after this product's name.
2459 (let ((next-item)
2460 (down-display (downcase display)))
2461 (map-keymap #'(lambda (k b)
2462 (when (and (not next-item)
2463 (string-lessp down-display
2464 (downcase (cadr b))))
2465 (setq next-item k)))
2466 (easy-menu-get-map sql-mode-menu '("Product")))
2467 next-item))
2468 product))
2470 (defun sql-del-product (product)
2471 "Remove support for PRODUCT in `sql-mode'."
2473 ;; Remove the menu item based on the display name
2474 (easy-menu-remove-item sql-mode-menu '("Product") (sql-get-product-feature product :name))
2475 ;; Remove the product alist item
2476 (setq sql-product-alist (assq-delete-all product sql-product-alist))
2477 nil)
2479 (defun sql-set-product-feature (product feature newvalue)
2480 "Set FEATURE of database PRODUCT to NEWVALUE.
2482 The PRODUCT must be a symbol which identifies the database
2483 product. The product must have already exist on the product
2484 list. See `sql-add-product' to add new products. The FEATURE
2485 argument must be a plist keyword accepted by
2486 `sql-product-alist'."
2488 (let* ((p (assoc product sql-product-alist))
2489 (v (plist-get (cdr p) feature)))
2490 (if p
2491 (if (and
2492 (member feature sql-indirect-features)
2493 (symbolp v))
2494 (set v newvalue)
2495 (setcdr p (plist-put (cdr p) feature newvalue)))
2496 (error "`%s' is not a known product; use `sql-add-product' to add it first." product))))
2498 (defun sql-get-product-feature (product feature &optional fallback not-indirect)
2499 "Lookup FEATURE associated with a SQL PRODUCT.
2501 If the FEATURE is nil for PRODUCT, and FALLBACK is specified,
2502 then the FEATURE associated with the FALLBACK product is
2503 returned.
2505 If the FEATURE is in the list `sql-indirect-features', and the
2506 NOT-INDIRECT parameter is not set, then the value of the symbol
2507 stored in the connect alist is returned.
2509 See `sql-product-alist' for a list of products and supported features."
2510 (let* ((p (assoc product sql-product-alist))
2511 (v (plist-get (cdr p) feature)))
2513 (if p
2514 ;; If no value and fallback, lookup feature for fallback
2515 (if (and (not v)
2516 fallback
2517 (not (eq product fallback)))
2518 (sql-get-product-feature fallback feature)
2520 (if (and
2521 (member feature sql-indirect-features)
2522 (not not-indirect)
2523 (symbolp v))
2524 (symbol-value v)
2526 (error "`%s' is not a known product; use `sql-add-product' to add it first." product)
2527 nil)))
2529 (defun sql-product-font-lock (keywords-only imenu)
2530 "Configure font-lock and imenu with product-specific settings.
2532 The KEYWORDS-ONLY flag is passed to font-lock to specify whether
2533 only keywords should be highlighted and syntactic highlighting
2534 skipped. The IMENU flag indicates whether `imenu-mode' should
2535 also be configured."
2537 (let
2538 ;; Get the product-specific syntax-alist.
2539 ((syntax-alist (sql-product-font-lock-syntax-alist)))
2541 ;; Get the product-specific keywords.
2542 (set (make-local-variable 'sql-mode-font-lock-keywords)
2543 (append
2544 (unless (eq sql-product 'ansi)
2545 (sql-get-product-feature sql-product :font-lock))
2546 ;; Always highlight ANSI keywords
2547 (sql-get-product-feature 'ansi :font-lock)
2548 ;; Fontify object names in CREATE, DROP and ALTER DDL
2549 ;; statements
2550 (list sql-mode-font-lock-object-name)))
2552 ;; Setup font-lock. Force re-parsing of `font-lock-defaults'.
2553 (kill-local-variable 'font-lock-set-defaults)
2554 (set (make-local-variable 'font-lock-defaults)
2555 (list 'sql-mode-font-lock-keywords
2556 keywords-only t syntax-alist))
2558 ;; Force font lock to reinitialize if it is already on
2559 ;; Otherwise, we can wait until it can be started.
2560 (when (and (fboundp 'font-lock-mode)
2561 (boundp 'font-lock-mode)
2562 font-lock-mode)
2563 (font-lock-mode-internal nil)
2564 (font-lock-mode-internal t))
2566 (add-hook 'font-lock-mode-hook
2567 #'(lambda ()
2568 ;; Provide defaults for new font-lock faces.
2569 (defvar font-lock-builtin-face
2570 (if (boundp 'font-lock-preprocessor-face)
2571 font-lock-preprocessor-face
2572 font-lock-keyword-face))
2573 (defvar font-lock-doc-face font-lock-string-face))
2574 nil t)
2576 ;; Setup imenu; it needs the same syntax-alist.
2577 (when imenu
2578 (setq imenu-syntax-alist syntax-alist))))
2580 ;;;###autoload
2581 (defun sql-add-product-keywords (product keywords &optional append)
2582 "Add highlighting KEYWORDS for SQL PRODUCT.
2584 PRODUCT should be a symbol, the name of a SQL product, such as
2585 `oracle'. KEYWORDS should be a list; see the variable
2586 `font-lock-keywords'. By default they are added at the beginning
2587 of the current highlighting list. If optional argument APPEND is
2588 `set', they are used to replace the current highlighting list.
2589 If APPEND is any other non-nil value, they are added at the end
2590 of the current highlighting list.
2592 For example:
2594 (sql-add-product-keywords 'ms
2595 '((\"\\\\b\\\\w+_t\\\\b\" . font-lock-type-face)))
2597 adds a fontification pattern to fontify identifiers ending in
2598 `_t' as data types."
2600 (let* ((sql-indirect-features nil)
2601 (font-lock-var (sql-get-product-feature product :font-lock))
2602 (old-val))
2604 (setq old-val (symbol-value font-lock-var))
2605 (set font-lock-var
2606 (if (eq append 'set)
2607 keywords
2608 (if append
2609 (append old-val keywords)
2610 (append keywords old-val))))))
2612 (defun sql-for-each-login (login-params body)
2613 "Iterate through login parameters and return a list of results."
2614 (delq nil
2615 (mapcar
2616 #'(lambda (param)
2617 (let ((token (or (car-safe param) param))
2618 (plist (cdr-safe param)))
2619 (funcall body token plist)))
2620 login-params)))
2624 ;;; Functions to switch highlighting
2626 (defun sql-product-syntax-table ()
2627 (let ((table (copy-syntax-table sql-mode-syntax-table)))
2628 (mapc #'(lambda (entry)
2629 (modify-syntax-entry (car entry) (cdr entry) table))
2630 (sql-get-product-feature sql-product :syntax-alist))
2631 table))
2633 (defun sql-product-font-lock-syntax-alist ()
2634 (append
2635 ;; Change all symbol character to word characters
2636 (mapcar
2637 #'(lambda (entry) (if (string= (substring (cdr entry) 0 1) "_")
2638 (cons (car entry)
2639 (concat "w" (substring (cdr entry) 1)))
2640 entry))
2641 (sql-get-product-feature sql-product :syntax-alist))
2642 '((?_ . "w"))))
2644 (defun sql-highlight-product ()
2645 "Turn on the font highlighting for the SQL product selected."
2646 (when (derived-mode-p 'sql-mode)
2647 ;; Enhance the syntax table for the product
2648 (set-syntax-table (sql-product-syntax-table))
2650 ;; Setup font-lock
2651 (sql-product-font-lock nil t)
2653 ;; Set the mode name to include the product.
2654 (setq mode-name (concat "SQL[" (or (sql-get-product-feature sql-product :name)
2655 (symbol-name sql-product)) "]"))))
2657 (defun sql-set-product (product)
2658 "Set `sql-product' to PRODUCT and enable appropriate highlighting."
2659 (interactive
2660 (list (sql-read-product "SQL product: ")))
2661 (if (stringp product) (setq product (intern product)))
2662 (when (not (assoc product sql-product-alist))
2663 (user-error "SQL product %s is not supported; treated as ANSI" product)
2664 (setq product 'ansi))
2666 ;; Save product setting and fontify.
2667 (setq sql-product product)
2668 (sql-highlight-product))
2671 ;;; Compatibility functions
2673 (if (not (fboundp 'comint-line-beginning-position))
2674 ;; comint-line-beginning-position is defined in Emacs 21
2675 (defun comint-line-beginning-position ()
2676 "Return the buffer position of the beginning of the line, after any prompt.
2677 The prompt is assumed to be any text at the beginning of the line
2678 matching the regular expression `comint-prompt-regexp', a buffer
2679 local variable."
2680 (save-excursion (comint-bol nil) (point))))
2682 ;;; SMIE support
2684 ;; Needs a lot more love than I can provide. --Stef
2686 ;; (require 'smie)
2688 ;; (defconst sql-smie-grammar
2689 ;; (smie-prec2->grammar
2690 ;; (smie-bnf->prec2
2691 ;; ;; Partly based on http://www.h2database.com/html/grammar.html
2692 ;; '((cmd ("SELECT" select-exp "FROM" select-table-exp)
2693 ;; )
2694 ;; (select-exp ("*") (exp) (exp "AS" column-alias))
2695 ;; (column-alias)
2696 ;; (select-table-exp (table-exp "WHERE" exp) (table-exp))
2697 ;; (table-exp)
2698 ;; (exp ("CASE" exp "WHEN" exp "THEN" exp "ELSE" exp "END")
2699 ;; ("CASE" exp "WHEN" exp "THEN" exp "END"))
2700 ;; ;; Random ad-hoc additions.
2701 ;; (foo (foo "," foo))
2702 ;; )
2703 ;; '((assoc ",")))))
2705 ;; (defun sql-smie-rules (kind token)
2706 ;; (pcase (cons kind token)
2707 ;; (`(:list-intro . ,_) t)
2708 ;; (`(:before . "(") (smie-rule-parent))))
2710 ;;; Motion Functions
2712 (defun sql-statement-regexp (prod)
2713 (let* ((ansi-stmt (sql-get-product-feature 'ansi :statement))
2714 (prod-stmt (sql-get-product-feature prod :statement)))
2715 (concat "^\\<"
2716 (if prod-stmt
2717 ansi-stmt
2718 (concat "\\(" ansi-stmt "\\|" prod-stmt "\\)"))
2719 "\\>")))
2721 (defun sql-beginning-of-statement (arg)
2722 "Move to the beginning of the current SQL statement."
2723 (interactive "p")
2725 (let ((here (point))
2726 (regexp (sql-statement-regexp sql-product))
2727 last next)
2729 ;; Go to the end of the statement before the start we desire
2730 (setq last (or (sql-end-of-statement (- arg))
2731 (point-min)))
2732 ;; And find the end after that
2733 (setq next (or (sql-end-of-statement 1)
2734 (point-max)))
2736 ;; Our start must be between them
2737 (goto-char last)
2738 ;; Find an beginning-of-stmt that's not in a comment
2739 (while (and (re-search-forward regexp next t 1)
2740 (nth 7 (syntax-ppss)))
2741 (goto-char (match-end 0)))
2742 (goto-char
2743 (if (match-data)
2744 (match-beginning 0)
2745 last))
2746 (beginning-of-line)
2747 ;; If we didn't move, try again
2748 (when (= here (point))
2749 (sql-beginning-of-statement (* 2 (cl-signum arg))))))
2751 (defun sql-end-of-statement (arg)
2752 "Move to the end of the current SQL statement."
2753 (interactive "p")
2754 (let ((term (sql-get-product-feature sql-product :terminator))
2755 (re-search (if (> 0 arg) 're-search-backward 're-search-forward))
2756 (here (point))
2757 (n 0))
2758 (when (consp term)
2759 (setq term (car term)))
2760 ;; Iterate until we've moved the desired number of stmt ends
2761 (while (not (= (cl-signum arg) 0))
2762 ;; if we're looking at the terminator, jump by 2
2763 (if (or (and (> 0 arg) (looking-back term))
2764 (and (< 0 arg) (looking-at term)))
2765 (setq n 2)
2766 (setq n 1))
2767 ;; If we found another end-of-stmt
2768 (if (not (apply re-search term nil t n nil))
2769 (setq arg 0)
2770 ;; count it if we're not in a comment
2771 (unless (nth 7 (syntax-ppss))
2772 (setq arg (- arg (cl-signum arg))))))
2773 (goto-char (if (match-data)
2774 (match-end 0)
2775 here))))
2777 ;;; Small functions
2779 (defun sql-magic-go (arg)
2780 "Insert \"o\" and call `comint-send-input'.
2781 `sql-electric-stuff' must be the symbol `go'."
2782 (interactive "P")
2783 (self-insert-command (prefix-numeric-value arg))
2784 (if (and (equal sql-electric-stuff 'go)
2785 (save-excursion
2786 (comint-bol nil)
2787 (looking-at "go\\b")))
2788 (comint-send-input)))
2789 (put 'sql-magic-go 'delete-selection t)
2791 (defun sql-magic-semicolon (arg)
2792 "Insert semicolon and call `comint-send-input'.
2793 `sql-electric-stuff' must be the symbol `semicolon'."
2794 (interactive "P")
2795 (self-insert-command (prefix-numeric-value arg))
2796 (if (equal sql-electric-stuff 'semicolon)
2797 (comint-send-input)))
2798 (put 'sql-magic-semicolon 'delete-selection t)
2800 (defun sql-accumulate-and-indent ()
2801 "Continue SQL statement on the next line."
2802 (interactive)
2803 (if (fboundp 'comint-accumulate)
2804 (comint-accumulate)
2805 (newline))
2806 (indent-according-to-mode))
2808 (defun sql-help-list-products (indent freep)
2809 "Generate listing of products available for use under SQLi.
2811 List products with :free-software attribute set to FREEP. Indent
2812 each line with INDENT."
2814 (let (sqli-func doc)
2815 (setq doc "")
2816 (dolist (p sql-product-alist)
2817 (setq sqli-func (intern (concat "sql-" (symbol-name (car p)))))
2819 (if (and (fboundp sqli-func)
2820 (eq (sql-get-product-feature (car p) :free-software) freep))
2821 (setq doc
2822 (concat doc
2823 indent
2824 (or (sql-get-product-feature (car p) :name)
2825 (symbol-name (car p)))
2826 ":\t"
2827 "\\["
2828 (symbol-name sqli-func)
2829 "]\n"))))
2830 doc))
2832 (defun sql-help ()
2833 "Show short help for the SQL modes."
2834 (interactive)
2835 (describe-function 'sql-help))
2836 (put 'sql-help 'function-documentation '(sql--make-help-docstring))
2838 (defvar sql--help-docstring
2839 "Show short help for the SQL modes.
2840 Use an entry function to open an interactive SQL buffer. This buffer is
2841 usually named `*SQL*'. The name of the major mode is SQLi.
2843 Use the following commands to start a specific SQL interpreter:
2845 \\\\FREE
2847 Other non-free SQL implementations are also supported:
2849 \\\\NONFREE
2851 But we urge you to choose a free implementation instead of these.
2853 You can also use \\[sql-product-interactive] to invoke the
2854 interpreter for the current `sql-product'.
2856 Once you have the SQLi buffer, you can enter SQL statements in the
2857 buffer. The output generated is appended to the buffer and a new prompt
2858 is generated. See the In/Out menu in the SQLi buffer for some functions
2859 that help you navigate through the buffer, the input history, etc.
2861 If you have a really complex SQL statement or if you are writing a
2862 procedure, you can do this in a separate buffer. Put the new buffer in
2863 `sql-mode' by calling \\[sql-mode]. The name of this buffer can be
2864 anything. The name of the major mode is SQL.
2866 In this SQL buffer (SQL mode), you can send the region or the entire
2867 buffer to the interactive SQL buffer (SQLi mode). The results are
2868 appended to the SQLi buffer without disturbing your SQL buffer.")
2870 (defun sql--make-help-docstring ()
2871 "Return a docstring for `sql-help' listing loaded SQL products."
2872 (let ((doc sql--help-docstring))
2873 ;; Insert FREE software list
2874 (when (string-match "^\\(\\s-*\\)[\\\\][\\\\]FREE\\s-*$" doc 0)
2875 (setq doc (replace-match (sql-help-list-products (match-string 1 doc) t)
2876 t t doc 0)))
2877 ;; Insert non-FREE software list
2878 (when (string-match "^\\(\\s-*\\)[\\\\][\\\\]NONFREE\\s-*$" doc 0)
2879 (setq doc (replace-match (sql-help-list-products (match-string 1 doc) nil)
2880 t t doc 0)))
2881 doc))
2883 (defun sql-default-value (var)
2884 "Fetch the value of a variable.
2886 If the current buffer is in `sql-interactive-mode', then fetch
2887 the global value, otherwise use the buffer local value."
2888 (if (derived-mode-p 'sql-interactive-mode)
2889 (default-value var)
2890 (buffer-local-value var (current-buffer))))
2892 (defun sql-get-login-ext (symbol prompt history-var plist)
2893 "Prompt user with extended login parameters.
2895 The global value of SYMBOL is the last value and the global value
2896 of the SYMBOL is set based on the user's input.
2898 If PLIST is nil, then the user is simply prompted for a string
2899 value.
2901 The property `:default' specifies the default value. If the
2902 `:number' property is non-nil then ask for a number.
2904 The `:file' property prompts for a file name that must match the
2905 regexp pattern specified in its value.
2907 The `:completion' property prompts for a string specified by its
2908 value. (The property value is used as the PREDICATE argument to
2909 `completing-read'.)"
2910 (set-default
2911 symbol
2912 (let* ((default (plist-get plist :default))
2913 (last-value (sql-default-value symbol))
2914 (prompt-def
2915 (if default
2916 (if (string-match "\\(\\):[ \t]*\\'" prompt)
2917 (replace-match (format " (default \"%s\")" default) t t prompt 1)
2918 (replace-regexp-in-string "[ \t]*\\'"
2919 (format " (default \"%s\") " default)
2920 prompt t t))
2921 prompt))
2922 (use-dialog-box nil))
2923 (cond
2924 ((plist-member plist :file)
2925 (expand-file-name
2926 (read-file-name prompt
2927 (file-name-directory last-value) default t
2928 (file-name-nondirectory last-value)
2929 (when (plist-get plist :file)
2930 `(lambda (f)
2931 (string-match
2932 (concat "\\<" ,(plist-get plist :file) "\\>")
2933 (file-name-nondirectory f)))))))
2935 ((plist-member plist :completion)
2936 (completing-read prompt-def (plist-get plist :completion) nil t
2937 last-value history-var default))
2939 ((plist-get plist :number)
2940 (read-number prompt (or default last-value 0)))
2943 (read-string prompt-def last-value history-var default))))))
2945 (defun sql-get-login (&rest what)
2946 "Get username, password and database from the user.
2948 The variables `sql-user', `sql-password', `sql-server', and
2949 `sql-database' can be customized. They are used as the default values.
2950 Usernames, servers and databases are stored in `sql-user-history',
2951 `sql-server-history' and `database-history'. Passwords are not stored
2952 in a history.
2954 Parameter WHAT is a list of tokens passed as arguments in the
2955 function call. The function asks for the username if WHAT
2956 contains the symbol `user', for the password if it contains the
2957 symbol `password', for the server if it contains the symbol
2958 `server', and for the database if it contains the symbol
2959 `database'. The members of WHAT are processed in the order in
2960 which they are provided.
2962 Each token may also be a list with the token in the car and a
2963 plist of options as the cdr. The following properties are
2964 supported:
2966 :file <filename-regexp>
2967 :completion <list-of-strings-or-function>
2968 :default <default-value>
2969 :number t
2971 In order to ask the user for username, password and database, call the
2972 function like this: (sql-get-login 'user 'password 'database)."
2973 (dolist (w what)
2974 (let ((plist (cdr-safe w)))
2975 (pcase (or (car-safe w) w)
2976 (`user
2977 (sql-get-login-ext 'sql-user "User: " 'sql-user-history plist))
2979 (`password
2980 (setq-default sql-password
2981 (read-passwd "Password: " nil (sql-default-value 'sql-password))))
2983 (`server
2984 (sql-get-login-ext 'sql-server "Server: " 'sql-server-history plist))
2986 (`database
2987 (sql-get-login-ext 'sql-database "Database: "
2988 'sql-database-history plist))
2990 (`port
2991 (sql-get-login-ext 'sql-port "Port: "
2992 nil (append '(:number t) plist)))))))
2994 (defun sql-find-sqli-buffer (&optional product connection)
2995 "Return the name of the current default SQLi buffer or nil.
2996 In order to qualify, the SQLi buffer must be alive, be in
2997 `sql-interactive-mode' and have a process."
2998 (let ((buf sql-buffer)
2999 (prod (or product sql-product)))
3001 ;; Current sql-buffer, if there is one.
3002 (and (sql-buffer-live-p buf prod connection)
3003 buf)
3004 ;; Global sql-buffer
3005 (and (setq buf (default-value 'sql-buffer))
3006 (sql-buffer-live-p buf prod connection)
3007 buf)
3008 ;; Look thru each buffer
3009 (car (apply #'append
3010 (mapcar #'(lambda (b)
3011 (and (sql-buffer-live-p b prod connection)
3012 (list (buffer-name b))))
3013 (buffer-list)))))))
3015 (defun sql-set-sqli-buffer-generally ()
3016 "Set SQLi buffer for all SQL buffers that have none.
3017 This function checks all SQL buffers for their SQLi buffer. If their
3018 SQLi buffer is nonexistent or has no process, it is set to the current
3019 default SQLi buffer. The current default SQLi buffer is determined
3020 using `sql-find-sqli-buffer'. If `sql-buffer' is set,
3021 `sql-set-sqli-hook' is run."
3022 (interactive)
3023 (save-excursion
3024 (let ((buflist (buffer-list))
3025 (default-buffer (sql-find-sqli-buffer)))
3026 (setq-default sql-buffer default-buffer)
3027 (while (not (null buflist))
3028 (let ((candidate (car buflist)))
3029 (set-buffer candidate)
3030 (if (and (derived-mode-p 'sql-mode)
3031 (not (sql-buffer-live-p sql-buffer)))
3032 (progn
3033 (setq sql-buffer default-buffer)
3034 (when default-buffer
3035 (run-hooks 'sql-set-sqli-hook)))))
3036 (setq buflist (cdr buflist))))))
3038 (defun sql-set-sqli-buffer ()
3039 "Set the SQLi buffer SQL strings are sent to.
3041 Call this function in a SQL buffer in order to set the SQLi buffer SQL
3042 strings are sent to. Calling this function sets `sql-buffer' and runs
3043 `sql-set-sqli-hook'.
3045 If you call it from a SQL buffer, this sets the local copy of
3046 `sql-buffer'.
3048 If you call it from anywhere else, it sets the global copy of
3049 `sql-buffer'."
3050 (interactive)
3051 (let ((default-buffer (sql-find-sqli-buffer)))
3052 (if (null default-buffer)
3053 (user-error "There is no suitable SQLi buffer")
3054 (let ((new-buffer (read-buffer "New SQLi buffer: " default-buffer t)))
3055 (if (null (sql-buffer-live-p new-buffer))
3056 (user-error "Buffer %s is not a working SQLi buffer" new-buffer)
3057 (when new-buffer
3058 (setq sql-buffer new-buffer)
3059 (run-hooks 'sql-set-sqli-hook)))))))
3061 (defun sql-show-sqli-buffer ()
3062 "Show the name of current SQLi buffer.
3064 This is the buffer SQL strings are sent to. It is stored in the
3065 variable `sql-buffer'. See `sql-help' on how to create such a buffer."
3066 (interactive)
3067 (if (or (null sql-buffer)
3068 (null (buffer-live-p (get-buffer sql-buffer))))
3069 (user-error "%s has no SQLi buffer set" (buffer-name (current-buffer)))
3070 (if (null (get-buffer-process sql-buffer))
3071 (user-error "Buffer %s has no process" sql-buffer)
3072 (user-error "Current SQLi buffer is %s" sql-buffer))))
3074 (defun sql-make-alternate-buffer-name ()
3075 "Return a string that can be used to rename a SQLi buffer.
3077 This is used to set `sql-alternate-buffer-name' within
3078 `sql-interactive-mode'.
3080 If the session was started with `sql-connect' then the alternate
3081 name would be the name of the connection.
3083 Otherwise, it uses the parameters identified by the :sqlilogin
3084 parameter.
3086 If all else fails, the alternate name would be the user and
3087 server/database name."
3089 (let ((name ""))
3091 ;; Build a name using the :sqli-login setting
3092 (setq name
3093 (apply #'concat
3094 (cdr
3095 (apply #'append nil
3096 (sql-for-each-login
3097 (sql-get-product-feature sql-product :sqli-login)
3098 #'(lambda (token plist)
3099 (pcase token
3100 (`user
3101 (unless (string= "" sql-user)
3102 (list "/" sql-user)))
3103 (`port
3104 (unless (or (not (numberp sql-port))
3105 (= 0 sql-port))
3106 (list ":" (number-to-string sql-port))))
3107 (`server
3108 (unless (string= "" sql-server)
3109 (list "."
3110 (if (plist-member plist :file)
3111 (file-name-nondirectory sql-server)
3112 sql-server))))
3113 (`database
3114 (unless (string= "" sql-database)
3115 (list "@"
3116 (if (plist-member plist :file)
3117 (file-name-nondirectory sql-database)
3118 sql-database))))
3120 ;; (`password nil)
3121 (_ nil))))))))
3123 ;; If there's a connection, use it and the name thus far
3124 (if sql-connection
3125 (format "<%s>%s" sql-connection (or name ""))
3127 ;; If there is no name, try to create something meaningful
3128 (if (string= "" (or name ""))
3129 (concat
3130 (if (string= "" sql-user)
3131 (if (string= "" (user-login-name))
3133 (concat (user-login-name) "/"))
3134 (concat sql-user "/"))
3135 (if (string= "" sql-database)
3136 (if (string= "" sql-server)
3137 (system-name)
3138 sql-server)
3139 sql-database))
3141 ;; Use the name we've got
3142 name))))
3144 (defun sql-rename-buffer (&optional new-name)
3145 "Rename a SQL interactive buffer.
3147 Prompts for the new name if command is preceded by
3148 \\[universal-argument]. If no buffer name is provided, then the
3149 `sql-alternate-buffer-name' is used.
3151 The actual buffer name set will be \"*SQL: NEW-NAME*\". If
3152 NEW-NAME is empty, then the buffer name will be \"*SQL*\"."
3153 (interactive "P")
3155 (if (not (derived-mode-p 'sql-interactive-mode))
3156 (user-error "Current buffer is not a SQL interactive buffer")
3158 (setq sql-alternate-buffer-name
3159 (cond
3160 ((stringp new-name) new-name)
3161 ((consp new-name)
3162 (read-string "Buffer name (\"*SQL: XXX*\"; enter `XXX'): "
3163 sql-alternate-buffer-name))
3164 (t sql-alternate-buffer-name)))
3166 (setq sql-alternate-buffer-name (substring-no-properties sql-alternate-buffer-name))
3167 (rename-buffer (if (string= "" sql-alternate-buffer-name)
3168 "*SQL*"
3169 (format "*SQL: %s*" sql-alternate-buffer-name))
3170 t)))
3172 (defun sql-copy-column ()
3173 "Copy current column to the end of buffer.
3174 Inserts SELECT or commas if appropriate."
3175 (interactive)
3176 (let ((column))
3177 (save-excursion
3178 (setq column (buffer-substring-no-properties
3179 (progn (forward-char 1) (backward-sexp 1) (point))
3180 (progn (forward-sexp 1) (point))))
3181 (goto-char (point-max))
3182 (let ((bol (comint-line-beginning-position)))
3183 (cond
3184 ;; if empty command line, insert SELECT
3185 ((= bol (point))
3186 (insert "SELECT "))
3187 ;; else if appending to INTO .* (, SELECT or ORDER BY, insert a comma
3188 ((save-excursion
3189 (re-search-backward "\\b\\(\\(into\\s-+\\S-+\\s-+(\\)\\|select\\|order by\\) .+"
3190 bol t))
3191 (insert ", "))
3192 ;; else insert a space
3194 (if (eq (preceding-char) ?\s)
3196 (insert " ")))))
3197 ;; in any case, insert the column
3198 (insert column)
3199 (message "%s" column))))
3201 ;; On Windows, SQL*Plus for Oracle turns on full buffering for stdout
3202 ;; if it is not attached to a character device; therefore placeholder
3203 ;; replacement by SQL*Plus is fully buffered. The workaround lets
3204 ;; Emacs query for the placeholders.
3206 (defvar sql-placeholder-history nil
3207 "History of placeholder values used.")
3209 (defun sql-placeholders-filter (string)
3210 "Replace placeholders in STRING.
3211 Placeholders are words starting with an ampersand like &this."
3213 (when sql-oracle-scan-on
3214 (while (string-match "&?&\\(\\(?:\\sw\\|\\s_\\)+\\)[.]?" string)
3215 (setq string (replace-match
3216 (read-from-minibuffer
3217 (format "Enter value for %s: " (match-string 1 string))
3218 nil nil nil 'sql-placeholder-history)
3219 t t string))))
3220 string)
3222 ;; Using DB2 interactively, newlines must be escaped with " \".
3223 ;; The space before the backslash is relevant.
3225 (defun sql-escape-newlines-filter (string)
3226 "Escape newlines in STRING.
3227 Every newline in STRING will be preceded with a space and a backslash."
3228 (if (not sql-db2-escape-newlines)
3229 string
3230 (let ((result "") (start 0) mb me)
3231 (while (string-match "\n" string start)
3232 (setq mb (match-beginning 0)
3233 me (match-end 0)
3234 result (concat result
3235 (substring string start mb)
3236 (if (and (> mb 1)
3237 (string-equal " \\" (substring string (- mb 2) mb)))
3238 "" " \\\n"))
3239 start me))
3240 (concat result (substring string start)))))
3244 ;;; Input sender for SQLi buffers
3246 (defvar sql-output-newline-count 0
3247 "Number of newlines in the input string.
3249 Allows the suppression of continuation prompts.")
3251 (defun sql-input-sender (proc string)
3252 "Send STRING to PROC after applying filters."
3254 (let* ((product (buffer-local-value 'sql-product (process-buffer proc)))
3255 (filter (sql-get-product-feature product :input-filter)))
3257 ;; Apply filter(s)
3258 (cond
3259 ((not filter)
3260 nil)
3261 ((functionp filter)
3262 (setq string (funcall filter string)))
3263 ((listp filter)
3264 (mapc #'(lambda (f) (setq string (funcall f string))) filter))
3265 (t nil))
3267 ;; Count how many newlines in the string
3268 (setq sql-output-newline-count
3269 (apply #'+ (mapcar #'(lambda (ch)
3270 (if (eq ch ?\n) 1 0)) string)))
3272 ;; Send the string
3273 (comint-simple-send proc string)))
3275 ;;; Strip out continuation prompts
3277 (defvar sql-preoutput-hold nil)
3279 (defun sql-starts-with-prompt-re ()
3280 "Anchor the prompt expression at the beginning of the output line.
3281 Remove the start of line regexp."
3282 (replace-regexp-in-string "\\^" "\\\\`" comint-prompt-regexp))
3284 (defun sql-ends-with-prompt-re ()
3285 "Anchor the prompt expression at the end of the output line.
3286 Remove the start of line regexp from the prompt expression since
3287 it may not follow newline characters in the output line."
3288 (concat (replace-regexp-in-string "\\^" "" sql-prompt-regexp) "\\'"))
3290 (defun sql-interactive-remove-continuation-prompt (oline)
3291 "Strip out continuation prompts out of the OLINE.
3293 Added to the `comint-preoutput-filter-functions' hook in a SQL
3294 interactive buffer. If `sql-output-newline-count' is greater than
3295 zero, then an output line matching the continuation prompt is filtered
3296 out. If the count is zero, then a newline is inserted into the output
3297 to force the output from the query to appear on a new line.
3299 The complication to this filter is that the continuation prompts
3300 may arrive in multiple chunks. If they do, then the function
3301 saves any unfiltered output in a buffer and prepends that buffer
3302 to the next chunk to properly match the broken-up prompt.
3304 If the filter gets confused, it should reset and stop filtering
3305 to avoid deleting non-prompt output."
3307 (when comint-prompt-regexp
3308 (save-match-data
3309 (let (prompt-found last-nl)
3311 ;; Add this text to what's left from the last pass
3312 (setq oline (concat sql-preoutput-hold oline)
3313 sql-preoutput-hold "")
3315 ;; If we are looking for multiple prompts
3316 (when (and (integerp sql-output-newline-count)
3317 (>= sql-output-newline-count 1))
3318 ;; Loop thru each starting prompt and remove it
3319 (let ((start-re (sql-starts-with-prompt-re)))
3320 (while (and (not (string= oline ""))
3321 (> sql-output-newline-count 0)
3322 (string-match start-re oline))
3323 (setq oline (replace-match "" nil nil oline)
3324 sql-output-newline-count (1- sql-output-newline-count)
3325 prompt-found t)))
3327 ;; If we've found all the expected prompts, stop looking
3328 (if (= sql-output-newline-count 0)
3329 (setq sql-output-newline-count nil
3330 oline (concat "\n" oline))
3332 ;; Still more possible prompts, leave them for the next pass
3333 (setq sql-preoutput-hold oline
3334 oline "")))
3336 ;; If no prompts were found, stop looking
3337 (unless prompt-found
3338 (setq sql-output-newline-count nil
3339 oline (concat oline sql-preoutput-hold)
3340 sql-preoutput-hold ""))
3342 ;; Break up output by physical lines if we haven't hit the final prompt
3343 (unless (and (not (string= oline ""))
3344 (string-match (sql-ends-with-prompt-re) oline)
3345 (>= (match-end 0) (length oline)))
3346 (setq last-nl 0)
3347 (while (string-match "\n" oline last-nl)
3348 (setq last-nl (match-end 0)))
3349 (setq sql-preoutput-hold (concat (substring oline last-nl)
3350 sql-preoutput-hold)
3351 oline (substring oline 0 last-nl))))))
3352 oline)
3354 ;;; Sending the region to the SQLi buffer.
3356 (defun sql-send-string (str)
3357 "Send the string STR to the SQL process."
3358 (interactive "sSQL Text: ")
3360 (let ((comint-input-sender-no-newline nil)
3361 (s (replace-regexp-in-string "[[:space:]\n\r]+\\'" "" str)))
3362 (if (sql-buffer-live-p sql-buffer)
3363 (progn
3364 ;; Ignore the hoping around...
3365 (save-excursion
3366 ;; Set product context
3367 (with-current-buffer sql-buffer
3368 ;; Send the string (trim the trailing whitespace)
3369 (sql-input-sender (get-buffer-process sql-buffer) s)
3371 ;; Send a command terminator if we must
3372 (if sql-send-terminator
3373 (sql-send-magic-terminator sql-buffer s sql-send-terminator))
3375 (message "Sent string to buffer %s" sql-buffer)))
3377 ;; Display the sql buffer
3378 (if sql-pop-to-buffer-after-send-region
3379 (pop-to-buffer sql-buffer)
3380 (display-buffer sql-buffer)))
3382 ;; We don't have no stinkin' sql
3383 (user-error "No SQL process started"))))
3385 (defun sql-send-region (start end)
3386 "Send a region to the SQL process."
3387 (interactive "r")
3388 (sql-send-string (buffer-substring-no-properties start end)))
3390 (defun sql-send-paragraph ()
3391 "Send the current paragraph to the SQL process."
3392 (interactive)
3393 (let ((start (save-excursion
3394 (backward-paragraph)
3395 (point)))
3396 (end (save-excursion
3397 (forward-paragraph)
3398 (point))))
3399 (sql-send-region start end)))
3401 (defun sql-send-buffer ()
3402 "Send the buffer contents to the SQL process."
3403 (interactive)
3404 (sql-send-region (point-min) (point-max)))
3406 (defun sql-send-magic-terminator (buf str terminator)
3407 "Send TERMINATOR to buffer BUF if its not present in STR."
3408 (let (comint-input-sender-no-newline pat term)
3409 ;; If flag is merely on(t), get product-specific terminator
3410 (if (eq terminator t)
3411 (setq terminator (sql-get-product-feature sql-product :terminator)))
3413 ;; If there is no terminator specified, use default ";"
3414 (unless terminator
3415 (setq terminator ";"))
3417 ;; Parse the setting into the pattern and the terminator string
3418 (cond ((stringp terminator)
3419 (setq pat (regexp-quote terminator)
3420 term terminator))
3421 ((consp terminator)
3422 (setq pat (car terminator)
3423 term (cdr terminator)))
3425 nil))
3427 ;; Check to see if the pattern is present in the str already sent
3428 (unless (and pat term
3429 (string-match (concat pat "\\'") str))
3430 (comint-simple-send (get-buffer-process buf) term)
3431 (setq sql-output-newline-count
3432 (if sql-output-newline-count
3433 (1+ sql-output-newline-count)
3434 1)))))
3436 (defun sql-remove-tabs-filter (str)
3437 "Replace tab characters with spaces."
3438 (replace-regexp-in-string "\t" " " str nil t))
3440 (defun sql-toggle-pop-to-buffer-after-send-region (&optional value)
3441 "Toggle `sql-pop-to-buffer-after-send-region'.
3443 If given the optional parameter VALUE, sets
3444 `sql-toggle-pop-to-buffer-after-send-region' to VALUE."
3445 (interactive "P")
3446 (if value
3447 (setq sql-pop-to-buffer-after-send-region value)
3448 (setq sql-pop-to-buffer-after-send-region
3449 (null sql-pop-to-buffer-after-send-region))))
3453 ;;; Redirect output functions
3455 (defvar sql-debug-redirect nil
3456 "If non-nil, display messages related to the use of redirection.")
3458 (defun sql-str-literal (s)
3459 (concat "'" (replace-regexp-in-string "[']" "''" s) "'"))
3461 (defun sql-redirect (sqlbuf command &optional outbuf save-prior)
3462 "Execute the SQL command and send output to OUTBUF.
3464 SQLBUF must be an active SQL interactive buffer. OUTBUF may be
3465 an existing buffer, or the name of a non-existing buffer. If
3466 omitted the output is sent to a temporary buffer which will be
3467 killed after the command completes. COMMAND should be a string
3468 of commands accepted by the SQLi program. COMMAND may also be a
3469 list of SQLi command strings."
3471 (let* ((visible (and outbuf
3472 (not (string= " " (substring outbuf 0 1))))))
3473 (when visible
3474 (message "Executing SQL command..."))
3475 (if (consp command)
3476 (mapc #'(lambda (c) (sql-redirect-one sqlbuf c outbuf save-prior))
3477 command)
3478 (sql-redirect-one sqlbuf command outbuf save-prior))
3479 (when visible
3480 (message "Executing SQL command...done"))))
3482 (defun sql-redirect-one (sqlbuf command outbuf save-prior)
3483 (with-current-buffer sqlbuf
3484 (let ((buf (get-buffer-create (or outbuf " *SQL-Redirect*")))
3485 (proc (get-buffer-process (current-buffer)))
3486 (comint-prompt-regexp (sql-get-product-feature sql-product
3487 :prompt-regexp))
3488 (start nil))
3489 (with-current-buffer buf
3490 (setq-local view-no-disable-on-exit t)
3491 (read-only-mode -1)
3492 (unless save-prior
3493 (erase-buffer))
3494 (goto-char (point-max))
3495 (unless (zerop (buffer-size))
3496 (insert "\n"))
3497 (setq start (point)))
3499 (when sql-debug-redirect
3500 (message ">>SQL> %S" command))
3502 ;; Run the command
3503 (comint-redirect-send-command-to-process command buf proc nil t)
3504 (while (null comint-redirect-completed)
3505 (accept-process-output nil 1))
3507 ;; Clean up the output results
3508 (with-current-buffer buf
3509 ;; Remove trailing whitespace
3510 (goto-char (point-max))
3511 (when (looking-back "[ \t\f\n\r]*" start)
3512 (delete-region (match-beginning 0) (match-end 0)))
3513 ;; Remove echo if there was one
3514 (goto-char start)
3515 (when (looking-at (concat "^" (regexp-quote command) "[\\n]"))
3516 (delete-region (match-beginning 0) (match-end 0)))
3517 ;; Remove Ctrl-Ms
3518 (goto-char start)
3519 (while (re-search-forward "\r+$" nil t)
3520 (replace-match "" t t))
3521 (goto-char start)))))
3523 (defun sql-redirect-value (sqlbuf command regexp &optional regexp-groups)
3524 "Execute the SQL command and return part of result.
3526 SQLBUF must be an active SQL interactive buffer. COMMAND should
3527 be a string of commands accepted by the SQLi program. From the
3528 output, the REGEXP is repeatedly matched and the list of
3529 REGEXP-GROUPS submatches is returned. This behaves much like
3530 \\[comint-redirect-results-list-from-process] but instead of
3531 returning a single submatch it returns a list of each submatch
3532 for each match."
3534 (let ((outbuf " *SQL-Redirect-values*")
3535 (results nil))
3536 (sql-redirect sqlbuf command outbuf nil)
3537 (with-current-buffer outbuf
3538 (while (re-search-forward regexp nil t)
3539 (push
3540 (cond
3541 ;; no groups-return all of them
3542 ((null regexp-groups)
3543 (let ((i (/ (length (match-data)) 2))
3544 (r nil))
3545 (while (> i 0)
3546 (setq i (1- i))
3547 (push (match-string i) r))
3549 ;; one group specified
3550 ((numberp regexp-groups)
3551 (match-string regexp-groups))
3552 ;; list of numbers; return the specified matches only
3553 ((consp regexp-groups)
3554 (mapcar #'(lambda (c)
3555 (cond
3556 ((numberp c) (match-string c))
3557 ((stringp c) (match-substitute-replacement c))
3558 (t (error "sql-redirect-value: unknown REGEXP-GROUPS value - %s" c))))
3559 regexp-groups))
3560 ;; String is specified; return replacement string
3561 ((stringp regexp-groups)
3562 (match-substitute-replacement regexp-groups))
3564 (error "sql-redirect-value: unknown REGEXP-GROUPS value - %s"
3565 regexp-groups)))
3566 results)))
3568 (when sql-debug-redirect
3569 (message ">>SQL> = %S" (reverse results)))
3571 (nreverse results)))
3573 (defun sql-execute (sqlbuf outbuf command enhanced arg)
3574 "Execute a command in a SQL interactive buffer and capture the output.
3576 The commands are run in SQLBUF and the output saved in OUTBUF.
3577 COMMAND must be a string, a function or a list of such elements.
3578 Functions are called with SQLBUF, OUTBUF and ARG as parameters;
3579 strings are formatted with ARG and executed.
3581 If the results are empty the OUTBUF is deleted, otherwise the
3582 buffer is popped into a view window."
3583 (mapc
3584 #'(lambda (c)
3585 (cond
3586 ((stringp c)
3587 (sql-redirect sqlbuf (if arg (format c arg) c) outbuf) t)
3588 ((functionp c)
3589 (apply c sqlbuf outbuf enhanced arg nil))
3590 (t (error "Unknown sql-execute item %s" c))))
3591 (if (consp command) command (cons command nil)))
3593 (setq outbuf (get-buffer outbuf))
3594 (if (zerop (buffer-size outbuf))
3595 (kill-buffer outbuf)
3596 (let ((one-win (eq (selected-window)
3597 (get-lru-window))))
3598 (with-current-buffer outbuf
3599 (set-buffer-modified-p nil)
3600 (read-only-mode +1))
3601 (pop-to-buffer outbuf)
3602 (when one-win
3603 (shrink-window-if-larger-than-buffer)))))
3605 (defun sql-execute-feature (sqlbuf outbuf feature enhanced arg)
3606 "List objects or details in a separate display buffer."
3607 (let (command
3608 (product (buffer-local-value 'sql-product (get-buffer sqlbuf))))
3609 (setq command (sql-get-product-feature product feature))
3610 (unless command
3611 (error "%s does not support %s" product feature))
3612 (when (consp command)
3613 (setq command (if enhanced
3614 (cdr command)
3615 (car command))))
3616 (sql-execute sqlbuf outbuf command enhanced arg)))
3618 (defvar sql-completion-object nil
3619 "A list of database objects used for completion.
3621 The list is maintained in SQL interactive buffers.")
3623 (defvar sql-completion-column nil
3624 "A list of column names used for completion.
3626 The list is maintained in SQL interactive buffers.")
3628 (defun sql-build-completions-1 (schema completion-list feature)
3629 "Generate a list of objects in the database for use as completions."
3630 (let ((f (sql-get-product-feature sql-product feature)))
3631 (when f
3632 (set completion-list
3633 (let (cl)
3634 (dolist (e (append (symbol-value completion-list)
3635 (apply f (current-buffer) (cons schema nil)))
3637 (unless (member e cl) (setq cl (cons e cl))))
3638 (sort cl #'string<))))))
3640 (defun sql-build-completions (schema)
3641 "Generate a list of names in the database for use as completions."
3642 (sql-build-completions-1 schema 'sql-completion-object :completion-object)
3643 (sql-build-completions-1 schema 'sql-completion-column :completion-column))
3645 (defvar sql-completion-sqlbuf nil)
3647 (defun sql--completion-table (string pred action)
3648 (when sql-completion-sqlbuf
3649 (with-current-buffer sql-completion-sqlbuf
3650 (let ((schema (and (string-match "\\`\\(\\sw\\(:?\\sw\\|\\s_\\)*\\)[.]" string)
3651 (downcase (match-string 1 string)))))
3653 ;; If we haven't loaded any object name yet, load local schema
3654 (unless sql-completion-object
3655 (sql-build-completions nil))
3657 ;; If they want another schema, load it if we haven't yet
3658 (when schema
3659 (let ((schema-dot (concat schema "."))
3660 (schema-len (1+ (length schema)))
3661 (names sql-completion-object)
3662 has-schema)
3664 (while (and (not has-schema) names)
3665 (setq has-schema (and
3666 (>= (length (car names)) schema-len)
3667 (string= schema-dot
3668 (downcase (substring (car names)
3669 0 schema-len))))
3670 names (cdr names)))
3671 (unless has-schema
3672 (sql-build-completions schema)))))
3674 ;; Try to find the completion
3675 (complete-with-action action sql-completion-object string pred))))
3677 (defun sql-read-table-name (prompt)
3678 "Read the name of a database table."
3679 (let* ((tname
3680 (and (buffer-local-value 'sql-contains-names (current-buffer))
3681 (thing-at-point-looking-at
3682 (concat "\\_<\\sw\\(:?\\sw\\|\\s_\\)*"
3683 "\\(?:[.]+\\sw\\(?:\\sw\\|\\s_\\)*\\)*\\_>"))
3684 (buffer-substring-no-properties (match-beginning 0)
3685 (match-end 0))))
3686 (sql-completion-sqlbuf (sql-find-sqli-buffer))
3687 (product (when sql-completion-sqlbuf
3688 (with-current-buffer sql-completion-sqlbuf sql-product)))
3689 (completion-ignore-case t))
3691 (if product
3692 (if (sql-get-product-feature product :completion-object)
3693 (completing-read prompt #'sql--completion-table
3694 nil nil tname)
3695 (read-from-minibuffer prompt tname))
3696 (user-error "There is no active SQLi buffer"))))
3698 (defun sql-list-all (&optional enhanced)
3699 "List all database objects.
3700 With optional prefix argument ENHANCED, displays additional
3701 details or extends the listing to include other schemas objects."
3702 (interactive "P")
3703 (let ((sqlbuf (sql-find-sqli-buffer)))
3704 (unless sqlbuf
3705 (user-error "No SQL interactive buffer found"))
3706 (sql-execute-feature sqlbuf "*List All*" :list-all enhanced nil)
3707 (with-current-buffer sqlbuf
3708 ;; Contains the name of database objects
3709 (set (make-local-variable 'sql-contains-names) t)
3710 (set (make-local-variable 'sql-buffer) sqlbuf))))
3712 (defun sql-list-table (name &optional enhanced)
3713 "List the details of a database table named NAME.
3714 Displays the columns in the relation. With optional prefix argument
3715 ENHANCED, displays additional details about each column."
3716 (interactive
3717 (list (sql-read-table-name "Table name: ")
3718 current-prefix-arg))
3719 (let ((sqlbuf (sql-find-sqli-buffer)))
3720 (unless sqlbuf
3721 (user-error "No SQL interactive buffer found"))
3722 (unless name
3723 (user-error "No table name specified"))
3724 (sql-execute-feature sqlbuf (format "*List %s*" name)
3725 :list-table enhanced name)))
3728 ;;; SQL mode -- uses SQL interactive mode
3730 ;;;###autoload
3731 (define-derived-mode sql-mode prog-mode "SQL"
3732 "Major mode to edit SQL.
3734 You can send SQL statements to the SQLi buffer using
3735 \\[sql-send-region]. Such a buffer must exist before you can do this.
3736 See `sql-help' on how to create SQLi buffers.
3738 \\{sql-mode-map}
3739 Customization: Entry to this mode runs the `sql-mode-hook'.
3741 When you put a buffer in SQL mode, the buffer stores the last SQLi
3742 buffer created as its destination in the variable `sql-buffer'. This
3743 will be the buffer \\[sql-send-region] sends the region to. If this
3744 SQLi buffer is killed, \\[sql-send-region] is no longer able to
3745 determine where the strings should be sent to. You can set the
3746 value of `sql-buffer' using \\[sql-set-sqli-buffer].
3748 For information on how to create multiple SQLi buffers, see
3749 `sql-interactive-mode'.
3751 Note that SQL doesn't have an escape character unless you specify
3752 one. If you specify backslash as escape character in SQL, you
3753 must tell Emacs. Here's how to do that in your init file:
3755 \(add-hook 'sql-mode-hook
3756 (lambda ()
3757 (modify-syntax-entry ?\\\\ \".\" sql-mode-syntax-table)))"
3758 :abbrev-table sql-mode-abbrev-table
3759 (if sql-mode-menu
3760 (easy-menu-add sql-mode-menu)); XEmacs
3762 ;; (smie-setup sql-smie-grammar #'sql-smie-rules)
3763 (set (make-local-variable 'comment-start) "--")
3764 ;; Make each buffer in sql-mode remember the "current" SQLi buffer.
3765 (make-local-variable 'sql-buffer)
3766 ;; Add imenu support for sql-mode. Note that imenu-generic-expression
3767 ;; is buffer-local, so we don't need a local-variable for it. SQL is
3768 ;; case-insensitive, that's why we have to set imenu-case-fold-search.
3769 (setq imenu-generic-expression sql-imenu-generic-expression
3770 imenu-case-fold-search t)
3771 ;; Make `sql-send-paragraph' work on paragraphs that contain indented
3772 ;; lines.
3773 (set (make-local-variable 'paragraph-separate) "[\f]*$")
3774 (set (make-local-variable 'paragraph-start) "[\n\f]")
3775 ;; Abbrevs
3776 (setq-local abbrev-all-caps 1)
3777 ;; Contains the name of database objects
3778 (set (make-local-variable 'sql-contains-names) t)
3779 ;; Set syntax and font-face highlighting
3780 ;; Catch changes to sql-product and highlight accordingly
3781 (sql-set-product (or sql-product 'ansi)) ; Fixes bug#13591
3782 (add-hook 'hack-local-variables-hook 'sql-highlight-product t t))
3786 ;;; SQL interactive mode
3788 (put 'sql-interactive-mode 'mode-class 'special)
3790 (defun sql-interactive-mode ()
3791 "Major mode to use a SQL interpreter interactively.
3793 Do not call this function by yourself. The environment must be
3794 initialized by an entry function specific for the SQL interpreter.
3795 See `sql-help' for a list of available entry functions.
3797 \\[comint-send-input] after the end of the process' output sends the
3798 text from the end of process to the end of the current line.
3799 \\[comint-send-input] before end of process output copies the current
3800 line minus the prompt to the end of the buffer and sends it.
3801 \\[comint-copy-old-input] just copies the current line.
3802 Use \\[sql-accumulate-and-indent] to enter multi-line statements.
3804 If you want to make multiple SQL buffers, rename the `*SQL*' buffer
3805 using \\[rename-buffer] or \\[rename-uniquely] and start a new process.
3806 See `sql-help' for a list of available entry functions. The last buffer
3807 created by such an entry function is the current SQLi buffer. SQL
3808 buffers will send strings to the SQLi buffer current at the time of
3809 their creation. See `sql-mode' for details.
3811 Sample session using two connections:
3813 1. Create first SQLi buffer by calling an entry function.
3814 2. Rename buffer \"*SQL*\" to \"*Connection 1*\".
3815 3. Create a SQL buffer \"test1.sql\".
3816 4. Create second SQLi buffer by calling an entry function.
3817 5. Rename buffer \"*SQL*\" to \"*Connection 2*\".
3818 6. Create a SQL buffer \"test2.sql\".
3820 Now \\[sql-send-region] in buffer \"test1.sql\" will send the region to
3821 buffer \"*Connection 1*\", \\[sql-send-region] in buffer \"test2.sql\"
3822 will send the region to buffer \"*Connection 2*\".
3824 If you accidentally suspend your process, use \\[comint-continue-subjob]
3825 to continue it. On some operating systems, this will not work because
3826 the signals are not supported.
3828 \\{sql-interactive-mode-map}
3829 Customization: Entry to this mode runs the hooks on `comint-mode-hook'
3830 and `sql-interactive-mode-hook' (in that order). Before each input, the
3831 hooks on `comint-input-filter-functions' are run. After each SQL
3832 interpreter output, the hooks on `comint-output-filter-functions' are
3833 run.
3835 Variable `sql-input-ring-file-name' controls the initialization of the
3836 input ring history.
3838 Variables `comint-output-filter-functions', a hook, and
3839 `comint-scroll-to-bottom-on-input' and
3840 `comint-scroll-to-bottom-on-output' control whether input and output
3841 cause the window to scroll to the end of the buffer.
3843 If you want to make SQL buffers limited in length, add the function
3844 `comint-truncate-buffer' to `comint-output-filter-functions'.
3846 Here is an example for your init file. It keeps the SQLi buffer a
3847 certain length.
3849 \(add-hook 'sql-interactive-mode-hook
3850 \(function (lambda ()
3851 \(setq comint-output-filter-functions 'comint-truncate-buffer))))
3853 Here is another example. It will always put point back to the statement
3854 you entered, right above the output it created.
3856 \(setq comint-output-filter-functions
3857 \(function (lambda (STR) (comint-show-output))))"
3858 (delay-mode-hooks (comint-mode))
3860 ;; Get the `sql-product' for this interactive session.
3861 (set (make-local-variable 'sql-product)
3862 (or sql-interactive-product
3863 sql-product))
3865 ;; Setup the mode.
3866 (setq major-mode 'sql-interactive-mode)
3867 (setq mode-name
3868 (concat "SQLi[" (or (sql-get-product-feature sql-product :name)
3869 (symbol-name sql-product)) "]"))
3870 (use-local-map sql-interactive-mode-map)
3871 (if sql-interactive-mode-menu
3872 (easy-menu-add sql-interactive-mode-menu)) ; XEmacs
3873 (set-syntax-table sql-mode-syntax-table)
3875 ;; Note that making KEYWORDS-ONLY nil will cause havoc if you try
3876 ;; SELECT 'x' FROM DUAL with SQL*Plus, because the title of the column
3877 ;; will have just one quote. Therefore syntactic highlighting is
3878 ;; disabled for interactive buffers. No imenu support.
3879 (sql-product-font-lock t nil)
3881 ;; Enable commenting and uncommenting of the region.
3882 (set (make-local-variable 'comment-start) "--")
3883 ;; Abbreviation table init and case-insensitive. It is not activated
3884 ;; by default.
3885 (setq local-abbrev-table sql-mode-abbrev-table)
3886 (setq abbrev-all-caps 1)
3887 ;; Exiting the process will call sql-stop.
3888 (set-process-sentinel (get-buffer-process (current-buffer)) 'sql-stop)
3889 ;; Save the connection and login params
3890 (set (make-local-variable 'sql-user) sql-user)
3891 (set (make-local-variable 'sql-database) sql-database)
3892 (set (make-local-variable 'sql-server) sql-server)
3893 (set (make-local-variable 'sql-port) sql-port)
3894 (set (make-local-variable 'sql-connection) sql-connection)
3895 (setq-default sql-connection nil)
3896 ;; Contains the name of database objects
3897 (set (make-local-variable 'sql-contains-names) t)
3898 ;; Keep track of existing object names
3899 (set (make-local-variable 'sql-completion-object) nil)
3900 (set (make-local-variable 'sql-completion-column) nil)
3901 ;; Create a useful name for renaming this buffer later.
3902 (set (make-local-variable 'sql-alternate-buffer-name)
3903 (sql-make-alternate-buffer-name))
3904 ;; User stuff. Initialize before the hook.
3905 (set (make-local-variable 'sql-prompt-regexp)
3906 (sql-get-product-feature sql-product :prompt-regexp))
3907 (set (make-local-variable 'sql-prompt-length)
3908 (sql-get-product-feature sql-product :prompt-length))
3909 (set (make-local-variable 'sql-prompt-cont-regexp)
3910 (sql-get-product-feature sql-product :prompt-cont-regexp))
3911 (make-local-variable 'sql-output-newline-count)
3912 (make-local-variable 'sql-preoutput-hold)
3913 (add-hook 'comint-preoutput-filter-functions
3914 'sql-interactive-remove-continuation-prompt nil t)
3915 (make-local-variable 'sql-input-ring-separator)
3916 (make-local-variable 'sql-input-ring-file-name)
3917 ;; Run the mode hook (along with comint's hooks).
3918 (run-mode-hooks 'sql-interactive-mode-hook)
3919 ;; Set comint based on user overrides.
3920 (setq comint-prompt-regexp
3921 (if sql-prompt-cont-regexp
3922 (concat "\\(" sql-prompt-regexp
3923 "\\|" sql-prompt-cont-regexp "\\)")
3924 sql-prompt-regexp))
3925 (setq left-margin sql-prompt-length)
3926 ;; Install input sender
3927 (set (make-local-variable 'comint-input-sender) 'sql-input-sender)
3928 ;; People wanting a different history file for each
3929 ;; buffer/process/client/whatever can change separator and file-name
3930 ;; on the sql-interactive-mode-hook.
3931 (setq-local comint-input-ring-separator sql-input-ring-separator)
3932 (setq comint-input-ring-file-name sql-input-ring-file-name)
3933 ;; Calling the hook before calling comint-read-input-ring allows users
3934 ;; to set comint-input-ring-file-name in sql-interactive-mode-hook.
3935 (comint-read-input-ring t))
3937 (defun sql-stop (process event)
3938 "Called when the SQL process is stopped.
3940 Writes the input history to a history file using
3941 `comint-write-input-ring' and inserts a short message in the SQL buffer.
3943 This function is a sentinel watching the SQL interpreter process.
3944 Sentinels will always get the two parameters PROCESS and EVENT."
3945 (comint-write-input-ring)
3946 (if (and (eq (current-buffer) sql-buffer)
3947 (not buffer-read-only))
3948 (insert (format "\nProcess %s %s\n" process event))
3949 (message "Process %s %s" process event)))
3953 ;;; Connection handling
3955 (defun sql-read-connection (prompt &optional initial default)
3956 "Read a connection name."
3957 (let ((completion-ignore-case t))
3958 (completing-read prompt
3959 (mapcar #'(lambda (c) (car c))
3960 sql-connection-alist)
3961 nil t initial 'sql-connection-history default)))
3963 ;;;###autoload
3964 (defun sql-connect (connection &optional new-name)
3965 "Connect to an interactive session using CONNECTION settings.
3967 See `sql-connection-alist' to see how to define connections and
3968 their settings.
3970 The user will not be prompted for any login parameters if a value
3971 is specified in the connection settings."
3973 ;; Prompt for the connection from those defined in the alist
3974 (interactive
3975 (if sql-connection-alist
3976 (list (sql-read-connection "Connection: " nil '(nil))
3977 current-prefix-arg)
3978 (user-error "No SQL Connections defined")))
3980 ;; Are there connections defined
3981 (if sql-connection-alist
3982 ;; Was one selected
3983 (when connection
3984 ;; Get connection settings
3985 (let ((connect-set (assoc-string connection sql-connection-alist t)))
3986 ;; Settings are defined
3987 (if connect-set
3988 ;; Set the desired parameters
3989 (let (param-var login-params set-params rem-params)
3991 ;; :sqli-login params variable
3992 (setq param-var
3993 (sql-get-product-feature sql-product :sqli-login nil t))
3995 ;; :sqli-login params value
3996 (setq login-params
3997 (sql-get-product-feature sql-product :sqli-login))
3999 ;; Params in the connection
4000 (setq set-params
4001 (mapcar
4002 #'(lambda (v)
4003 (pcase (car v)
4004 (`sql-user 'user)
4005 (`sql-password 'password)
4006 (`sql-server 'server)
4007 (`sql-database 'database)
4008 (`sql-port 'port)
4009 (s s)))
4010 (cdr connect-set)))
4012 ;; the remaining params (w/o the connection params)
4013 (setq rem-params
4014 (sql-for-each-login login-params
4015 #'(lambda (token plist)
4016 (unless (member token set-params)
4017 (if plist (cons token plist) token)))))
4019 ;; Set the parameters and start the interactive session
4020 (mapc
4021 #'(lambda (vv)
4022 (set-default (car vv) (eval (cadr vv))))
4023 (cdr connect-set))
4024 (setq-default sql-connection connection)
4026 ;; Start the SQLi session with revised list of login parameters
4027 (eval `(let ((,param-var ',rem-params))
4028 (sql-product-interactive ',sql-product ',new-name))))
4030 (user-error "SQL Connection <%s> does not exist" connection)
4031 nil)))
4033 (user-error "No SQL Connections defined")
4034 nil))
4036 (defun sql-save-connection (name)
4037 "Captures the connection information of the current SQLi session.
4039 The information is appended to `sql-connection-alist' and
4040 optionally is saved to the user's init file."
4042 (interactive "sNew connection name: ")
4044 (unless (derived-mode-p 'sql-interactive-mode)
4045 (user-error "Not in a SQL interactive mode!"))
4047 ;; Capture the buffer local settings
4048 (let* ((buf (current-buffer))
4049 (connection (buffer-local-value 'sql-connection buf))
4050 (product (buffer-local-value 'sql-product buf))
4051 (user (buffer-local-value 'sql-user buf))
4052 (database (buffer-local-value 'sql-database buf))
4053 (server (buffer-local-value 'sql-server buf))
4054 (port (buffer-local-value 'sql-port buf)))
4056 (if connection
4057 (message "This session was started by a connection; it's already been saved.")
4059 (let ((login (sql-get-product-feature product :sqli-login))
4060 (alist sql-connection-alist)
4061 connect)
4063 ;; Remove the existing connection if the user says so
4064 (when (and (assoc name alist)
4065 (yes-or-no-p (format "Replace connection definition <%s>? " name)))
4066 (setq alist (assq-delete-all name alist)))
4068 ;; Add the new connection if it doesn't exist
4069 (if (assoc name alist)
4070 (user-error "Connection <%s> already exists" name)
4071 (setq connect
4072 (cons name
4073 (sql-for-each-login
4074 `(product ,@login)
4075 #'(lambda (token _plist)
4076 (pcase token
4077 (`product `(sql-product ',product))
4078 (`user `(sql-user ,user))
4079 (`database `(sql-database ,database))
4080 (`server `(sql-server ,server))
4081 (`port `(sql-port ,port)))))))
4083 (setq alist (append alist (list connect)))
4085 ;; confirm whether we want to save the connections
4086 (if (yes-or-no-p "Save the connections for future sessions? ")
4087 (customize-save-variable 'sql-connection-alist alist)
4088 (customize-set-variable 'sql-connection-alist alist)))))))
4090 (defun sql-connection-menu-filter (tail)
4091 "Generate menu entries for using each connection."
4092 (append
4093 (mapcar
4094 #'(lambda (conn)
4095 (vector
4096 (format "Connection <%s>\t%s" (car conn)
4097 (let ((sql-user "") (sql-database "")
4098 (sql-server "") (sql-port 0))
4099 (eval `(let ,(cdr conn) (sql-make-alternate-buffer-name)))))
4100 (list 'sql-connect (car conn))
4102 sql-connection-alist)
4103 tail))
4107 ;;; Entry functions for different SQL interpreters.
4108 ;;;###autoload
4109 (defun sql-product-interactive (&optional product new-name)
4110 "Run PRODUCT interpreter as an inferior process.
4112 If buffer `*SQL*' exists but no process is running, make a new process.
4113 If buffer exists and a process is running, just switch to buffer `*SQL*'.
4115 To specify the SQL product, prefix the call with
4116 \\[universal-argument]. To set the buffer name as well, prefix
4117 the call to \\[sql-product-interactive] with
4118 \\[universal-argument] \\[universal-argument].
4120 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4121 (interactive "P")
4123 ;; Handle universal arguments if specified
4124 (when (not (or executing-kbd-macro noninteractive))
4125 (when (and (consp product)
4126 (not (cdr product))
4127 (numberp (car product)))
4128 (when (>= (prefix-numeric-value product) 16)
4129 (when (not new-name)
4130 (setq new-name '(4)))
4131 (setq product '(4)))))
4133 ;; Get the value of product that we need
4134 (setq product
4135 (cond
4136 ((= (prefix-numeric-value product) 4) ; C-u, prompt for product
4137 (sql-read-product "SQL product: " sql-product))
4138 ((and product ; Product specified
4139 (symbolp product)) product)
4140 (t sql-product))) ; Default to sql-product
4142 ;; If we have a product and it has a interactive mode
4143 (if product
4144 (when (sql-get-product-feature product :sqli-comint-func)
4145 ;; If no new name specified, try to pop to an active SQL
4146 ;; interactive for the same product
4147 (let ((buf (sql-find-sqli-buffer product sql-connection)))
4148 (if (and (not new-name) buf)
4149 (pop-to-buffer buf)
4151 ;; We have a new name or sql-buffer doesn't exist or match
4152 ;; Start by remembering where we start
4153 (let ((start-buffer (current-buffer))
4154 new-sqli-buffer rpt)
4156 ;; Get credentials.
4157 (apply #'sql-get-login
4158 (sql-get-product-feature product :sqli-login))
4160 ;; Connect to database.
4161 (setq rpt (make-progress-reporter "Login"))
4163 (let ((sql-user (default-value 'sql-user))
4164 (sql-password (default-value 'sql-password))
4165 (sql-server (default-value 'sql-server))
4166 (sql-database (default-value 'sql-database))
4167 (sql-port (default-value 'sql-port)))
4168 (funcall (sql-get-product-feature product :sqli-comint-func)
4169 product
4170 (sql-get-product-feature product :sqli-options)))
4172 ;; Set SQLi mode.
4173 (let ((sql-interactive-product product))
4174 (sql-interactive-mode))
4176 ;; Set the new buffer name
4177 (setq new-sqli-buffer (current-buffer))
4178 (when new-name
4179 (sql-rename-buffer new-name))
4180 (set (make-local-variable 'sql-buffer)
4181 (buffer-name new-sqli-buffer))
4183 ;; Set `sql-buffer' in the start buffer
4184 (with-current-buffer start-buffer
4185 (when (derived-mode-p 'sql-mode)
4186 (setq sql-buffer (buffer-name new-sqli-buffer))
4187 (run-hooks 'sql-set-sqli-hook)))
4189 ;; Make sure the connection is complete
4190 ;; (Sometimes start up can be slow)
4191 ;; and call the login hook
4192 (let ((proc (get-buffer-process new-sqli-buffer))
4193 (secs sql-login-delay)
4194 (step 0.3))
4195 (while (and (memq (process-status proc) '(open run))
4196 (or (accept-process-output proc step)
4197 (<= 0.0 (setq secs (- secs step))))
4198 (progn (goto-char (point-max))
4199 (not (re-search-backward sql-prompt-regexp 0 t))))
4200 (progress-reporter-update rpt)))
4202 (goto-char (point-max))
4203 (when (re-search-backward sql-prompt-regexp nil t)
4204 (run-hooks 'sql-login-hook))
4206 ;; All done.
4207 (progress-reporter-done rpt)
4208 (pop-to-buffer new-sqli-buffer)
4209 (goto-char (point-max))
4210 (current-buffer)))))
4211 (user-error "No default SQL product defined. Set `sql-product'.")))
4213 (defun sql-comint (product params)
4214 "Set up a comint buffer to run the SQL processor.
4216 PRODUCT is the SQL product. PARAMS is a list of strings which are
4217 passed as command line arguments."
4218 (let ((program (sql-get-product-feature product :sqli-program))
4219 (buf-name "SQL"))
4220 ;; Make sure we can find the program. `executable-find' does not
4221 ;; work for remote hosts; we suppress the check there.
4222 (unless (or (file-remote-p default-directory)
4223 (executable-find program))
4224 (error "Unable to locate SQL program \'%s\'" program))
4225 ;; Make sure buffer name is unique.
4226 (when (sql-buffer-live-p (format "*%s*" buf-name))
4227 (setq buf-name (format "SQL-%s" product))
4228 (when (sql-buffer-live-p (format "*%s*" buf-name))
4229 (let ((i 1))
4230 (while (sql-buffer-live-p
4231 (format "*%s*"
4232 (setq buf-name (format "SQL-%s%d" product i))))
4233 (setq i (1+ i))))))
4234 (set-buffer
4235 (apply #'make-comint buf-name program nil params))))
4237 ;;;###autoload
4238 (defun sql-oracle (&optional buffer)
4239 "Run sqlplus by Oracle as an inferior process.
4241 If buffer `*SQL*' exists but no process is running, make a new process.
4242 If buffer exists and a process is running, just switch to buffer
4243 `*SQL*'.
4245 Interpreter used comes from variable `sql-oracle-program'. Login uses
4246 the variables `sql-user', `sql-password', and `sql-database' as
4247 defaults, if set. Additional command line parameters can be stored in
4248 the list `sql-oracle-options'.
4250 The buffer is put in SQL interactive mode, giving commands for sending
4251 input. See `sql-interactive-mode'.
4253 To set the buffer name directly, use \\[universal-argument]
4254 before \\[sql-oracle]. Once session has started,
4255 \\[sql-rename-buffer] can be called separately to rename the
4256 buffer.
4258 To specify a coding system for converting non-ASCII characters
4259 in the input and output to the process, use \\[universal-coding-system-argument]
4260 before \\[sql-oracle]. You can also specify this with \\[set-buffer-process-coding-system]
4261 in the SQL buffer, after you start the process.
4262 The default comes from `process-coding-system-alist' and
4263 `default-process-coding-system'.
4265 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4266 (interactive "P")
4267 (sql-product-interactive 'oracle buffer))
4269 (defun sql-comint-oracle (product options)
4270 "Create comint buffer and connect to Oracle."
4271 ;; Produce user/password@database construct. Password without user
4272 ;; is meaningless; database without user/password is meaningless,
4273 ;; because "@param" will ask sqlplus to interpret the script
4274 ;; "param".
4275 (let (parameter nlslang coding)
4276 (if (not (string= "" sql-user))
4277 (if (not (string= "" sql-password))
4278 (setq parameter (concat sql-user "/" sql-password))
4279 (setq parameter sql-user)))
4280 (if (and parameter (not (string= "" sql-database)))
4281 (setq parameter (concat parameter "@" sql-database)))
4282 ;; options must appear before the logon parameters
4283 (if parameter
4284 (setq parameter (append options (list parameter)))
4285 (setq parameter options))
4286 (sql-comint product parameter)
4287 ;; Set process coding system to agree with the interpreter
4288 (setq nlslang (or (getenv "NLS_LANG") "")
4289 coding (dolist (cs
4290 ;; Are we missing any common NLS character sets
4291 '(("US8PC437" . cp437)
4292 ("EL8PC737" . cp737)
4293 ("WE8PC850" . cp850)
4294 ("EE8PC852" . cp852)
4295 ("TR8PC857" . cp857)
4296 ("WE8PC858" . cp858)
4297 ("IS8PC861" . cp861)
4298 ("IW8PC1507" . cp862)
4299 ("N8PC865" . cp865)
4300 ("RU8PC866" . cp866)
4301 ("US7ASCII" . us-ascii)
4302 ("UTF8" . utf-8)
4303 ("AL32UTF8" . utf-8)
4304 ("AL16UTF16" . utf-16))
4305 (or coding 'utf-8))
4306 (when (string-match (format "\\.%s\\'" (car cs)) nlslang)
4307 (setq coding (cdr cs)))))
4308 (set-buffer-process-coding-system coding coding)))
4310 (defun sql-oracle-save-settings (sqlbuf)
4311 "Save most SQL*Plus settings so they may be reset by \\[sql-redirect]."
4312 ;; Note: does not capture the following settings:
4314 ;; APPINFO
4315 ;; BTITLE
4316 ;; COMPATIBILITY
4317 ;; COPYTYPECHECK
4318 ;; MARKUP
4319 ;; RELEASE
4320 ;; REPFOOTER
4321 ;; REPHEADER
4322 ;; SQLPLUSCOMPATIBILITY
4323 ;; TTITLE
4324 ;; USER
4327 (append
4328 ;; (apply #'concat (append
4329 ;; '("SET")
4331 ;; option value...
4332 (sql-redirect-value
4333 sqlbuf
4334 (concat "SHOW ARRAYSIZE AUTOCOMMIT AUTOPRINT AUTORECOVERY AUTOTRACE"
4335 " CMDSEP COLSEP COPYCOMMIT DESCRIBE ECHO EDITFILE EMBEDDED"
4336 " ESCAPE FLAGGER FLUSH HEADING INSTANCE LINESIZE LNO LOBOFFSET"
4337 " LOGSOURCE LONG LONGCHUNKSIZE NEWPAGE NULL NUMFORMAT NUMWIDTH"
4338 " PAGESIZE PAUSE PNO RECSEP SERVEROUTPUT SHIFTINOUT SHOWMODE"
4339 " SPOOL SQLBLANKLINES SQLCASE SQLCODE SQLCONTINUE SQLNUMBER"
4340 " SQLPROMPT SUFFIX TAB TERMOUT TIMING TRIMOUT TRIMSPOOL VERIFY")
4341 "^.+$"
4342 "SET \\&")
4344 ;; option "c" (hex xx)
4345 (sql-redirect-value
4346 sqlbuf
4347 (concat "SHOW BLOCKTERMINATOR CONCAT DEFINE SQLPREFIX SQLTERMINATOR"
4348 " UNDERLINE HEADSEP RECSEPCHAR")
4349 "^\\(.+\\) (hex ..)$"
4350 "SET \\1")
4352 ;; FEEDBACK ON for 99 or more rows
4353 ;; feedback OFF
4354 (sql-redirect-value
4355 sqlbuf
4356 "SHOW FEEDBACK"
4357 "^\\(?:FEEDBACK ON for \\([[:digit:]]+\\) or more rows\\|feedback \\(OFF\\)\\)"
4358 "SET FEEDBACK \\1\\2")
4360 ;; wrap : lines will be wrapped
4361 ;; wrap : lines will be truncated
4362 (list (concat "SET WRAP "
4363 (if (string=
4364 (car (sql-redirect-value
4365 sqlbuf
4366 "SHOW WRAP"
4367 "^wrap : lines will be \\(wrapped\\|truncated\\)" 1))
4368 "wrapped")
4369 "ON" "OFF")))))
4371 (defun sql-oracle-restore-settings (sqlbuf saved-settings)
4372 "Restore the SQL*Plus settings in SAVED-SETTINGS."
4374 ;; Remove any settings that haven't changed
4375 (mapc
4376 #'(lambda (one-cur-setting)
4377 (setq saved-settings (delete one-cur-setting saved-settings)))
4378 (sql-oracle-save-settings sqlbuf))
4380 ;; Restore the changed settings
4381 (sql-redirect sqlbuf saved-settings))
4383 (defun sql-oracle-list-all (sqlbuf outbuf enhanced _table-name)
4384 ;; Query from USER_OBJECTS or ALL_OBJECTS
4385 (let ((settings (sql-oracle-save-settings sqlbuf))
4386 (simple-sql
4387 (concat
4388 "SELECT INITCAP(x.object_type) AS SQL_EL_TYPE "
4389 ", x.object_name AS SQL_EL_NAME "
4390 "FROM user_objects x "
4391 "WHERE x.object_type NOT LIKE '%% BODY' "
4392 "ORDER BY 2, 1;"))
4393 (enhanced-sql
4394 (concat
4395 "SELECT INITCAP(x.object_type) AS SQL_EL_TYPE "
4396 ", x.owner ||'.'|| x.object_name AS SQL_EL_NAME "
4397 "FROM all_objects x "
4398 "WHERE x.object_type NOT LIKE '%% BODY' "
4399 "AND x.owner <> 'SYS' "
4400 "ORDER BY 2, 1;")))
4402 (sql-redirect sqlbuf
4403 (concat "SET LINESIZE 80 PAGESIZE 50000 TRIMOUT ON"
4404 " TAB OFF TIMING OFF FEEDBACK OFF"))
4406 (sql-redirect sqlbuf
4407 (list "COLUMN SQL_EL_TYPE HEADING \"Type\" FORMAT A19"
4408 "COLUMN SQL_EL_NAME HEADING \"Name\""
4409 (format "COLUMN SQL_EL_NAME FORMAT A%d"
4410 (if enhanced 60 35))))
4412 (sql-redirect sqlbuf
4413 (if enhanced enhanced-sql simple-sql)
4414 outbuf)
4416 (sql-redirect sqlbuf
4417 '("COLUMN SQL_EL_NAME CLEAR"
4418 "COLUMN SQL_EL_TYPE CLEAR"))
4420 (sql-oracle-restore-settings sqlbuf settings)))
4422 (defun sql-oracle-list-table (sqlbuf outbuf _enhanced table-name)
4423 "Implements :list-table under Oracle."
4424 (let ((settings (sql-oracle-save-settings sqlbuf)))
4426 (sql-redirect sqlbuf
4427 (format
4428 (concat "SET LINESIZE %d PAGESIZE 50000"
4429 " DESCRIBE DEPTH 1 LINENUM OFF INDENT ON")
4430 (max 65 (min 120 (window-width)))))
4432 (sql-redirect sqlbuf (format "DESCRIBE %s" table-name)
4433 outbuf)
4435 (sql-oracle-restore-settings sqlbuf settings)))
4437 (defcustom sql-oracle-completion-types '("FUNCTION" "PACKAGE" "PROCEDURE"
4438 "SEQUENCE" "SYNONYM" "TABLE" "TRIGGER"
4439 "TYPE" "VIEW")
4440 "List of object types to include for completion under Oracle.
4442 See the distinct values in ALL_OBJECTS.OBJECT_TYPE for possible values."
4443 :version "24.1"
4444 :type '(repeat string)
4445 :group 'SQL)
4447 (defun sql-oracle-completion-object (sqlbuf schema)
4448 (sql-redirect-value
4449 sqlbuf
4450 (concat
4451 "SELECT CHR(1)||"
4452 (if schema
4453 (format "owner||'.'||object_name AS o FROM all_objects WHERE owner = %s AND "
4454 (sql-str-literal (upcase schema)))
4455 "object_name AS o FROM user_objects WHERE ")
4456 "temporary = 'N' AND generated = 'N' AND secondary = 'N' AND "
4457 "object_type IN ("
4458 (mapconcat (function sql-str-literal) sql-oracle-completion-types ",")
4459 ");")
4460 "^[\001]\\(.+\\)$" 1))
4463 ;;;###autoload
4464 (defun sql-sybase (&optional buffer)
4465 "Run isql by Sybase as an inferior process.
4467 If buffer `*SQL*' exists but no process is running, make a new process.
4468 If buffer exists and a process is running, just switch to buffer
4469 `*SQL*'.
4471 Interpreter used comes from variable `sql-sybase-program'. Login uses
4472 the variables `sql-server', `sql-user', `sql-password', and
4473 `sql-database' as defaults, if set. Additional command line parameters
4474 can be stored in the list `sql-sybase-options'.
4476 The buffer is put in SQL interactive mode, giving commands for sending
4477 input. See `sql-interactive-mode'.
4479 To set the buffer name directly, use \\[universal-argument]
4480 before \\[sql-sybase]. Once session has started,
4481 \\[sql-rename-buffer] can be called separately to rename the
4482 buffer.
4484 To specify a coding system for converting non-ASCII characters
4485 in the input and output to the process, use \\[universal-coding-system-argument]
4486 before \\[sql-sybase]. You can also specify this with \\[set-buffer-process-coding-system]
4487 in the SQL buffer, after you start the process.
4488 The default comes from `process-coding-system-alist' and
4489 `default-process-coding-system'.
4491 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4492 (interactive "P")
4493 (sql-product-interactive 'sybase buffer))
4495 (defun sql-comint-sybase (product options)
4496 "Create comint buffer and connect to Sybase."
4497 ;; Put all parameters to the program (if defined) in a list and call
4498 ;; make-comint.
4499 (let ((params
4500 (append
4501 (if (not (string= "" sql-user))
4502 (list "-U" sql-user))
4503 (if (not (string= "" sql-password))
4504 (list "-P" sql-password))
4505 (if (not (string= "" sql-database))
4506 (list "-D" sql-database))
4507 (if (not (string= "" sql-server))
4508 (list "-S" sql-server))
4509 options)))
4510 (sql-comint product params)))
4514 ;;;###autoload
4515 (defun sql-informix (&optional buffer)
4516 "Run dbaccess by Informix as an inferior process.
4518 If buffer `*SQL*' exists but no process is running, make a new process.
4519 If buffer exists and a process is running, just switch to buffer
4520 `*SQL*'.
4522 Interpreter used comes from variable `sql-informix-program'. Login uses
4523 the variable `sql-database' as default, if set.
4525 The buffer is put in SQL interactive mode, giving commands for sending
4526 input. See `sql-interactive-mode'.
4528 To set the buffer name directly, use \\[universal-argument]
4529 before \\[sql-informix]. Once session has started,
4530 \\[sql-rename-buffer] can be called separately to rename the
4531 buffer.
4533 To specify a coding system for converting non-ASCII characters
4534 in the input and output to the process, use \\[universal-coding-system-argument]
4535 before \\[sql-informix]. You can also specify this with \\[set-buffer-process-coding-system]
4536 in the SQL buffer, after you start the process.
4537 The default comes from `process-coding-system-alist' and
4538 `default-process-coding-system'.
4540 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4541 (interactive "P")
4542 (sql-product-interactive 'informix buffer))
4544 (defun sql-comint-informix (product options)
4545 "Create comint buffer and connect to Informix."
4546 ;; username and password are ignored.
4547 (let ((db (if (string= "" sql-database)
4549 (if (string= "" sql-server)
4550 sql-database
4551 (concat sql-database "@" sql-server)))))
4552 (sql-comint product (append `(,db "-") options))))
4556 ;;;###autoload
4557 (defun sql-sqlite (&optional buffer)
4558 "Run sqlite as an inferior process.
4560 SQLite is free software.
4562 If buffer `*SQL*' exists but no process is running, make a new process.
4563 If buffer exists and a process is running, just switch to buffer
4564 `*SQL*'.
4566 Interpreter used comes from variable `sql-sqlite-program'. Login uses
4567 the variables `sql-user', `sql-password', `sql-database', and
4568 `sql-server' as defaults, if set. Additional command line parameters
4569 can be stored in the list `sql-sqlite-options'.
4571 The buffer is put in SQL interactive mode, giving commands for sending
4572 input. See `sql-interactive-mode'.
4574 To set the buffer name directly, use \\[universal-argument]
4575 before \\[sql-sqlite]. Once session has started,
4576 \\[sql-rename-buffer] can be called separately to rename the
4577 buffer.
4579 To specify a coding system for converting non-ASCII characters
4580 in the input and output to the process, use \\[universal-coding-system-argument]
4581 before \\[sql-sqlite]. You can also specify this with \\[set-buffer-process-coding-system]
4582 in the SQL buffer, after you start the process.
4583 The default comes from `process-coding-system-alist' and
4584 `default-process-coding-system'.
4586 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4587 (interactive "P")
4588 (sql-product-interactive 'sqlite buffer))
4590 (defun sql-comint-sqlite (product options)
4591 "Create comint buffer and connect to SQLite."
4592 ;; Put all parameters to the program (if defined) in a list and call
4593 ;; make-comint.
4594 (let ((params
4595 (append options
4596 (if (not (string= "" sql-database))
4597 `(,(expand-file-name sql-database))))))
4598 (sql-comint product params)))
4600 (defun sql-sqlite-completion-object (sqlbuf _schema)
4601 (sql-redirect-value sqlbuf ".tables" "\\sw\\(?:\\sw\\|\\s_\\)*" 0))
4605 ;;;###autoload
4606 (defun sql-mysql (&optional buffer)
4607 "Run mysql by TcX as an inferior process.
4609 Mysql versions 3.23 and up are free software.
4611 If buffer `*SQL*' exists but no process is running, make a new process.
4612 If buffer exists and a process is running, just switch to buffer
4613 `*SQL*'.
4615 Interpreter used comes from variable `sql-mysql-program'. Login uses
4616 the variables `sql-user', `sql-password', `sql-database', and
4617 `sql-server' as defaults, if set. Additional command line parameters
4618 can be stored in the list `sql-mysql-options'.
4620 The buffer is put in SQL interactive mode, giving commands for sending
4621 input. See `sql-interactive-mode'.
4623 To set the buffer name directly, use \\[universal-argument]
4624 before \\[sql-mysql]. Once session has started,
4625 \\[sql-rename-buffer] can be called separately to rename the
4626 buffer.
4628 To specify a coding system for converting non-ASCII characters
4629 in the input and output to the process, use \\[universal-coding-system-argument]
4630 before \\[sql-mysql]. You can also specify this with \\[set-buffer-process-coding-system]
4631 in the SQL buffer, after you start the process.
4632 The default comes from `process-coding-system-alist' and
4633 `default-process-coding-system'.
4635 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4636 (interactive "P")
4637 (sql-product-interactive 'mysql buffer))
4639 (defun sql-comint-mysql (product options)
4640 "Create comint buffer and connect to MySQL."
4641 ;; Put all parameters to the program (if defined) in a list and call
4642 ;; make-comint.
4643 (let ((params
4644 (append
4645 options
4646 (if (not (string= "" sql-user))
4647 (list (concat "--user=" sql-user)))
4648 (if (not (string= "" sql-password))
4649 (list (concat "--password=" sql-password)))
4650 (if (not (= 0 sql-port))
4651 (list (concat "--port=" (number-to-string sql-port))))
4652 (if (not (string= "" sql-server))
4653 (list (concat "--host=" sql-server)))
4654 (if (not (string= "" sql-database))
4655 (list sql-database)))))
4656 (sql-comint product params)))
4660 ;;;###autoload
4661 (defun sql-solid (&optional buffer)
4662 "Run solsql by Solid as an inferior process.
4664 If buffer `*SQL*' exists but no process is running, make a new process.
4665 If buffer exists and a process is running, just switch to buffer
4666 `*SQL*'.
4668 Interpreter used comes from variable `sql-solid-program'. Login uses
4669 the variables `sql-user', `sql-password', and `sql-server' as
4670 defaults, if set.
4672 The buffer is put in SQL interactive mode, giving commands for sending
4673 input. See `sql-interactive-mode'.
4675 To set the buffer name directly, use \\[universal-argument]
4676 before \\[sql-solid]. Once session has started,
4677 \\[sql-rename-buffer] can be called separately to rename the
4678 buffer.
4680 To specify a coding system for converting non-ASCII characters
4681 in the input and output to the process, use \\[universal-coding-system-argument]
4682 before \\[sql-solid]. You can also specify this with \\[set-buffer-process-coding-system]
4683 in the SQL buffer, after you start the process.
4684 The default comes from `process-coding-system-alist' and
4685 `default-process-coding-system'.
4687 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4688 (interactive "P")
4689 (sql-product-interactive 'solid buffer))
4691 (defun sql-comint-solid (product options)
4692 "Create comint buffer and connect to Solid."
4693 ;; Put all parameters to the program (if defined) in a list and call
4694 ;; make-comint.
4695 (let ((params
4696 (append
4697 (if (not (string= "" sql-server))
4698 (list sql-server))
4699 ;; It only makes sense if both username and password are there.
4700 (if (not (or (string= "" sql-user)
4701 (string= "" sql-password)))
4702 (list sql-user sql-password))
4703 options)))
4704 (sql-comint product params)))
4708 ;;;###autoload
4709 (defun sql-ingres (&optional buffer)
4710 "Run sql by Ingres as an inferior process.
4712 If buffer `*SQL*' exists but no process is running, make a new process.
4713 If buffer exists and a process is running, just switch to buffer
4714 `*SQL*'.
4716 Interpreter used comes from variable `sql-ingres-program'. Login uses
4717 the variable `sql-database' as default, if set.
4719 The buffer is put in SQL interactive mode, giving commands for sending
4720 input. See `sql-interactive-mode'.
4722 To set the buffer name directly, use \\[universal-argument]
4723 before \\[sql-ingres]. Once session has started,
4724 \\[sql-rename-buffer] can be called separately to rename the
4725 buffer.
4727 To specify a coding system for converting non-ASCII characters
4728 in the input and output to the process, use \\[universal-coding-system-argument]
4729 before \\[sql-ingres]. You can also specify this with \\[set-buffer-process-coding-system]
4730 in the SQL buffer, after you start the process.
4731 The default comes from `process-coding-system-alist' and
4732 `default-process-coding-system'.
4734 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4735 (interactive "P")
4736 (sql-product-interactive 'ingres buffer))
4738 (defun sql-comint-ingres (product options)
4739 "Create comint buffer and connect to Ingres."
4740 ;; username and password are ignored.
4741 (sql-comint product
4742 (append (if (string= "" sql-database)
4744 (list sql-database))
4745 options)))
4749 ;;;###autoload
4750 (defun sql-ms (&optional buffer)
4751 "Run osql by Microsoft as an inferior process.
4753 If buffer `*SQL*' exists but no process is running, make a new process.
4754 If buffer exists and a process is running, just switch to buffer
4755 `*SQL*'.
4757 Interpreter used comes from variable `sql-ms-program'. Login uses the
4758 variables `sql-user', `sql-password', `sql-database', and `sql-server'
4759 as defaults, if set. Additional command line parameters can be stored
4760 in the list `sql-ms-options'.
4762 The buffer is put in SQL interactive mode, giving commands for sending
4763 input. See `sql-interactive-mode'.
4765 To set the buffer name directly, use \\[universal-argument]
4766 before \\[sql-ms]. Once session has started,
4767 \\[sql-rename-buffer] can be called separately to rename the
4768 buffer.
4770 To specify a coding system for converting non-ASCII characters
4771 in the input and output to the process, use \\[universal-coding-system-argument]
4772 before \\[sql-ms]. You can also specify this with \\[set-buffer-process-coding-system]
4773 in the SQL buffer, after you start the process.
4774 The default comes from `process-coding-system-alist' and
4775 `default-process-coding-system'.
4777 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4778 (interactive "P")
4779 (sql-product-interactive 'ms buffer))
4781 (defun sql-comint-ms (product options)
4782 "Create comint buffer and connect to Microsoft SQL Server."
4783 ;; Put all parameters to the program (if defined) in a list and call
4784 ;; make-comint.
4785 (let ((params
4786 (append
4787 (if (not (string= "" sql-user))
4788 (list "-U" sql-user))
4789 (if (not (string= "" sql-database))
4790 (list "-d" sql-database))
4791 (if (not (string= "" sql-server))
4792 (list "-S" sql-server))
4793 options)))
4794 (setq params
4795 (if (not (string= "" sql-password))
4796 `("-P" ,sql-password ,@params)
4797 (if (string= "" sql-user)
4798 ;; If neither user nor password is provided, use system
4799 ;; credentials.
4800 `("-E" ,@params)
4801 ;; If -P is passed to ISQL as the last argument without a
4802 ;; password, it's considered null.
4803 `(,@params "-P"))))
4804 (sql-comint product params)))
4808 ;;;###autoload
4809 (defun sql-postgres (&optional buffer)
4810 "Run psql by Postgres as an inferior process.
4812 If buffer `*SQL*' exists but no process is running, make a new process.
4813 If buffer exists and a process is running, just switch to buffer
4814 `*SQL*'.
4816 Interpreter used comes from variable `sql-postgres-program'. Login uses
4817 the variables `sql-database' and `sql-server' as default, if set.
4818 Additional command line parameters can be stored in the list
4819 `sql-postgres-options'.
4821 The buffer is put in SQL interactive mode, giving commands for sending
4822 input. See `sql-interactive-mode'.
4824 To set the buffer name directly, use \\[universal-argument]
4825 before \\[sql-postgres]. Once session has started,
4826 \\[sql-rename-buffer] can be called separately to rename the
4827 buffer.
4829 To specify a coding system for converting non-ASCII characters
4830 in the input and output to the process, use \\[universal-coding-system-argument]
4831 before \\[sql-postgres]. You can also specify this with \\[set-buffer-process-coding-system]
4832 in the SQL buffer, after you start the process.
4833 The default comes from `process-coding-system-alist' and
4834 `default-process-coding-system'. If your output lines end with ^M,
4835 your might try undecided-dos as a coding system. If this doesn't help,
4836 Try to set `comint-output-filter-functions' like this:
4838 \(setq comint-output-filter-functions (append comint-output-filter-functions
4839 '(comint-strip-ctrl-m)))
4841 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4842 (interactive "P")
4843 (sql-product-interactive 'postgres buffer))
4845 (defun sql-comint-postgres (product options)
4846 "Create comint buffer and connect to Postgres."
4847 ;; username and password are ignored. Mark Stosberg suggests to add
4848 ;; the database at the end. Jason Beegan suggests using --pset and
4849 ;; pager=off instead of \\o|cat. The later was the solution by
4850 ;; Gregor Zych. Jason's suggestion is the default value for
4851 ;; sql-postgres-options.
4852 (let ((params
4853 (append
4854 (if (not (= 0 sql-port))
4855 (list "-p" (number-to-string sql-port)))
4856 (if (not (string= "" sql-user))
4857 (list "-U" sql-user))
4858 (if (not (string= "" sql-server))
4859 (list "-h" sql-server))
4860 options
4861 (if (not (string= "" sql-database))
4862 (list sql-database)))))
4863 (sql-comint product params)))
4865 (defun sql-postgres-completion-object (sqlbuf schema)
4866 (sql-redirect sqlbuf "\\t on")
4867 (let ((aligned
4868 (string= "aligned"
4869 (car (sql-redirect-value
4870 sqlbuf "\\a"
4871 "Output format is \\(.*\\)[.]$" 1)))))
4872 (when aligned
4873 (sql-redirect sqlbuf "\\a"))
4874 (let* ((fs (or (car (sql-redirect-value
4875 sqlbuf "\\f" "Field separator is \"\\(.\\)[.]$" 1))
4876 "|"))
4877 (re (concat "^\\([^" fs "]*\\)" fs "\\([^" fs "]*\\)"
4878 fs "[^" fs "]*" fs "[^" fs "]*$"))
4879 (cl (if (not schema)
4880 (sql-redirect-value sqlbuf "\\d" re '(1 2))
4881 (append (sql-redirect-value
4882 sqlbuf (format "\\dt %s.*" schema) re '(1 2))
4883 (sql-redirect-value
4884 sqlbuf (format "\\dv %s.*" schema) re '(1 2))
4885 (sql-redirect-value
4886 sqlbuf (format "\\ds %s.*" schema) re '(1 2))))))
4888 ;; Restore tuples and alignment to what they were.
4889 (sql-redirect sqlbuf "\\t off")
4890 (when (not aligned)
4891 (sql-redirect sqlbuf "\\a"))
4893 ;; Return the list of table names (public schema name can be omitted)
4894 (mapcar #'(lambda (tbl)
4895 (if (string= (car tbl) "public")
4896 (cadr tbl)
4897 (format "%s.%s" (car tbl) (cadr tbl))))
4898 cl))))
4902 ;;;###autoload
4903 (defun sql-interbase (&optional buffer)
4904 "Run isql by Interbase as an inferior process.
4906 If buffer `*SQL*' exists but no process is running, make a new process.
4907 If buffer exists and a process is running, just switch to buffer
4908 `*SQL*'.
4910 Interpreter used comes from variable `sql-interbase-program'. Login
4911 uses the variables `sql-user', `sql-password', and `sql-database' as
4912 defaults, if set.
4914 The buffer is put in SQL interactive mode, giving commands for sending
4915 input. See `sql-interactive-mode'.
4917 To set the buffer name directly, use \\[universal-argument]
4918 before \\[sql-interbase]. Once session has started,
4919 \\[sql-rename-buffer] can be called separately to rename the
4920 buffer.
4922 To specify a coding system for converting non-ASCII characters
4923 in the input and output to the process, use \\[universal-coding-system-argument]
4924 before \\[sql-interbase]. You can also specify this with \\[set-buffer-process-coding-system]
4925 in the SQL buffer, after you start the process.
4926 The default comes from `process-coding-system-alist' and
4927 `default-process-coding-system'.
4929 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4930 (interactive "P")
4931 (sql-product-interactive 'interbase buffer))
4933 (defun sql-comint-interbase (product options)
4934 "Create comint buffer and connect to Interbase."
4935 ;; Put all parameters to the program (if defined) in a list and call
4936 ;; make-comint.
4937 (let ((params
4938 (append
4939 (if (not (string= "" sql-database))
4940 (list sql-database)) ; Add to the front!
4941 (if (not (string= "" sql-password))
4942 (list "-p" sql-password))
4943 (if (not (string= "" sql-user))
4944 (list "-u" sql-user))
4945 options)))
4946 (sql-comint product params)))
4950 ;;;###autoload
4951 (defun sql-db2 (&optional buffer)
4952 "Run db2 by IBM as an inferior process.
4954 If buffer `*SQL*' exists but no process is running, make a new process.
4955 If buffer exists and a process is running, just switch to buffer
4956 `*SQL*'.
4958 Interpreter used comes from variable `sql-db2-program'. There is not
4959 automatic login.
4961 The buffer is put in SQL interactive mode, giving commands for sending
4962 input. See `sql-interactive-mode'.
4964 If you use \\[sql-accumulate-and-indent] to send multiline commands to
4965 db2, newlines will be escaped if necessary. If you don't want that, set
4966 `comint-input-sender' back to `comint-simple-send' by writing an after
4967 advice. See the elisp manual for more information.
4969 To set the buffer name directly, use \\[universal-argument]
4970 before \\[sql-db2]. Once session has started,
4971 \\[sql-rename-buffer] can be called separately to rename the
4972 buffer.
4974 To specify a coding system for converting non-ASCII characters
4975 in the input and output to the process, use \\[universal-coding-system-argument]
4976 before \\[sql-db2]. You can also specify this with \\[set-buffer-process-coding-system]
4977 in the SQL buffer, after you start the process.
4978 The default comes from `process-coding-system-alist' and
4979 `default-process-coding-system'.
4981 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
4982 (interactive "P")
4983 (sql-product-interactive 'db2 buffer))
4985 (defun sql-comint-db2 (product options)
4986 "Create comint buffer and connect to DB2."
4987 ;; Put all parameters to the program (if defined) in a list and call
4988 ;; make-comint.
4989 (sql-comint product options))
4991 ;;;###autoload
4992 (defun sql-linter (&optional buffer)
4993 "Run inl by RELEX as an inferior process.
4995 If buffer `*SQL*' exists but no process is running, make a new process.
4996 If buffer exists and a process is running, just switch to buffer
4997 `*SQL*'.
4999 Interpreter used comes from variable `sql-linter-program' - usually `inl'.
5000 Login uses the variables `sql-user', `sql-password', `sql-database' and
5001 `sql-server' as defaults, if set. Additional command line parameters
5002 can be stored in the list `sql-linter-options'. Run inl -h to get help on
5003 parameters.
5005 `sql-database' is used to set the LINTER_MBX environment variable for
5006 local connections, `sql-server' refers to the server name from the
5007 `nodetab' file for the network connection (dbc_tcp or friends must run
5008 for this to work). If `sql-password' is an empty string, inl will use
5009 an empty password.
5011 The buffer is put in SQL interactive mode, giving commands for sending
5012 input. See `sql-interactive-mode'.
5014 To set the buffer name directly, use \\[universal-argument]
5015 before \\[sql-linter]. Once session has started,
5016 \\[sql-rename-buffer] can be called separately to rename the
5017 buffer.
5019 \(Type \\[describe-mode] in the SQL buffer for a list of commands.)"
5020 (interactive "P")
5021 (sql-product-interactive 'linter buffer))
5023 (defun sql-comint-linter (product options)
5024 "Create comint buffer and connect to Linter."
5025 ;; Put all parameters to the program (if defined) in a list and call
5026 ;; make-comint.
5027 (let* ((login
5028 (if (not (string= "" sql-user))
5029 (concat sql-user "/" sql-password)))
5030 (params
5031 (append
5032 (if (not (string= "" sql-server))
5033 (list "-n" sql-server))
5034 (list "-u" login)
5035 options)))
5036 (cl-letf (((getenv "LINTER_MBX")
5037 (unless (string= "" sql-database) sql-database)))
5038 (sql-comint product params))))
5042 (provide 'sql)
5044 ;;; sql.el ends here
5046 ; LocalWords: sql SQL SQLite sqlite Sybase Informix MySQL
5047 ; LocalWords: Postgres SQLServer SQLi