]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/progmodes/sql.el Bug#35307
authorMichael R. Mauger <michael@mauger.com>
Sun, 21 Apr 2019 04:40:00 +0000 (00:40 -0400)
committerMichael R. Mauger <michael@mauger.com>
Sun, 21 Apr 2019 04:40:00 +0000 (00:40 -0400)
(sql-product-alist): Added :prompt-cont-regexp for ms.

Looking for experience with Microsofts SQLCMD interpreter and
adjustments needed for Emacs to support it.

lisp/progmodes/sql.el

index 7d29d0011cb0994bcfd40b20ea0267f13dceeb4f..28261ef74b2b42979ba494ace68b51effb3cf4b9 100644 (file)
@@ -443,6 +443,7 @@ file.  Since that is a plaintext file, this could be dangerous."
      :sqli-login sql-ms-login-params
      :sqli-comint-func sql-comint-ms
      :prompt-regexp "^[0-9]*>"
+     :prompt-cont-regexp "^[0-9]*>"
      :prompt-length 5
      :syntax-alist ((?@ . "_"))
      :terminator ("^go" . "go"))
@@ -1219,6 +1220,11 @@ Starts `sql-interactive-mode' after doing some setup."
 
 ;; Customization for Microsoft
 
+;; Microsoft documentation seems to indicate that ISQL and OSQL are
+;; going away and being replaced by SQLCMD.  If anyone has experience
+;; using SQLCMD, modified product configuration and feedback on its
+;; use would be greatly appreciated.
+
 (defcustom sql-ms-program "osql"
   "Command to start osql by Microsoft.