aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/sql.el
diff options
context:
space:
mode:
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