diff options
| -rw-r--r-- | lisp/progmodes/sql.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lisp/progmodes/sql.el b/lisp/progmodes/sql.el index 7d29d0011cb..28261ef74b2 100644 --- a/lisp/progmodes/sql.el +++ b/lisp/progmodes/sql.el | |||
| @@ -443,6 +443,7 @@ file. Since that is a plaintext file, this could be dangerous." | |||
| 443 | :sqli-login sql-ms-login-params | 443 | :sqli-login sql-ms-login-params |
| 444 | :sqli-comint-func sql-comint-ms | 444 | :sqli-comint-func sql-comint-ms |
| 445 | :prompt-regexp "^[0-9]*>" | 445 | :prompt-regexp "^[0-9]*>" |
| 446 | :prompt-cont-regexp "^[0-9]*>" | ||
| 446 | :prompt-length 5 | 447 | :prompt-length 5 |
| 447 | :syntax-alist ((?@ . "_")) | 448 | :syntax-alist ((?@ . "_")) |
| 448 | :terminator ("^go" . "go")) | 449 | :terminator ("^go" . "go")) |
| @@ -1219,6 +1220,11 @@ Starts `sql-interactive-mode' after doing some setup." | |||
| 1219 | 1220 | ||
| 1220 | ;; Customization for Microsoft | 1221 | ;; Customization for Microsoft |
| 1221 | 1222 | ||
| 1223 | ;; Microsoft documentation seems to indicate that ISQL and OSQL are | ||
| 1224 | ;; going away and being replaced by SQLCMD. If anyone has experience | ||
| 1225 | ;; using SQLCMD, modified product configuration and feedback on its | ||
| 1226 | ;; use would be greatly appreciated. | ||
| 1227 | |||
| 1222 | (defcustom sql-ms-program "osql" | 1228 | (defcustom sql-ms-program "osql" |
| 1223 | "Command to start osql by Microsoft. | 1229 | "Command to start osql by Microsoft. |
| 1224 | 1230 | ||