aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/sql.el
diff options
context:
space:
mode:
authorJoakim Verona2012-02-15 15:12:49 +0100
committerJoakim Verona2012-02-15 15:12:49 +0100
commit02db17e53bf46c91b2cb8ee33b43d8ae252a1681 (patch)
treefcafa961e884648e15524130f1dbca55dc7093d0 /lisp/progmodes/sql.el
parent736ab04e2752e7c3c5b5070a0d62279dcfb12b27 (diff)
parent1deeb569b1247db4c0b2eea4906a9e53e5ee7e99 (diff)
downloademacs-02db17e53bf46c91b2cb8ee33b43d8ae252a1681.tar.gz
emacs-02db17e53bf46c91b2cb8ee33b43d8ae252a1681.zip
upstream
Diffstat (limited to 'lisp/progmodes/sql.el')
-rw-r--r--lisp/progmodes/sql.el15
1 files changed, 12 insertions, 3 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el
index f8f62d113e6..f5bfe526aae 100644
--- a/lisp/progmodes/sql.el
+++ b/lisp/progmodes/sql.el
@@ -810,6 +810,7 @@ is changed."
810 810
811This hook is invoked in a buffer once it is ready to accept input 811This hook is invoked in a buffer once it is ready to accept input
812for the first time." 812for the first time."
813 :version "24.1"
813 :type 'hook 814 :type 'hook
814 :group 'SQL) 815 :group 'SQL)
815 816
@@ -824,7 +825,10 @@ for the first time."
824 825
825All products share this list; products should define a regexp to 826All products share this list; products should define a regexp to
826identify additional keywords in a variable defined by 827identify additional keywords in a variable defined by
827the :statement feature.") 828the :statement feature."
829 :version "24.1"
830 :type 'string
831 :group 'SQL)
828 832
829;; Customization for Oracle 833;; Customization for Oracle
830 834
@@ -851,8 +855,12 @@ You will find the file in your Orant\\bin directory."
851 :version "24.1" 855 :version "24.1"
852 :group 'SQL) 856 :group 'SQL)
853 857
854(defcustom sql-oracle-statement-starters (regexp-opt '("declare" "begin" "with")) 858(defcustom sql-oracle-statement-starters
855 "Additional statement starting keywords in Oracle.") 859 (regexp-opt '("declare" "begin" "with"))
860 "Additional statement starting keywords in Oracle."
861 :version "24.1"
862 :type 'string
863 :group 'SQL)
856 864
857(defcustom sql-oracle-scan-on t 865(defcustom sql-oracle-scan-on t
858 "Non-nil if placeholders should be replaced in Oracle SQLi. 866 "Non-nil if placeholders should be replaced in Oracle SQLi.
@@ -867,6 +875,7 @@ You need to issue the following command in SQL*Plus to be safe:
867 SET DEFINE OFF 875 SET DEFINE OFF
868 876
869In older versions of SQL*Plus, this was the SET SCAN OFF command." 877In older versions of SQL*Plus, this was the SET SCAN OFF command."
878 :version "24.1"
870 :type 'boolean 879 :type 'boolean
871 :group 'SQL) 880 :group 'SQL)
872 881