2

我在缓冲区的 .sql 文件中有这个:

 CREATE TABLE WH.dbo.customer(
        id              INTEGER NOT NULL,
        cust_name       VARCHAR(30) NOT NULL,
        phone_nbr       VARCHAR(30) NULL,
        PRIMARY KEY(id)
    );

如果我处于正常模式并且光标处于打开状态,TABLE那么我应该能够点击<Leader>se或命令 gVim:DBExecSQLUnderCursor并且该语句应该按照 dbext 应该找到的方式执行CREATE;然后在其间执行脚本。但我收到以下消息:

Last SQL:
CREATE TABLE WHAnalysis.dbo.customer(

如果我突出显示所有脚本并从插件菜单中选择执行 SQL(可视选择),那么它运行良好。

到底是怎么回事?这可能是我的设置_vimrc吗?:

set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswin

set diffexpr=MyDiff()

" Use CTRL-S for saving, also in Insert mode
:nnoremap <C-S>     :<C-U>update<CR>
:vnoremap <C-S>     :<C-U>update<CR>gv
:cnoremap <C-S>     <C-C>:update<CR>
:inoremap <C-S>     <C-O>:update<CR>

" Microsoft SQL Server
let g:dbext_default_profile_WH = 'type=SQLSRV:user=dbuser:passwd=dbuserpassword:dsnname=SQLOLEDB.1:srvname=dwdb'

set nocp
call pathogen#infect()
syntax on
filetype plugin indent on

"Mouse and backspace
set mouse=a

function MyDiff()
  let opt = '-a --binary '
  if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
  if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif
  let arg1 = v:fname_in
  if arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endif
  let arg2 = v:fname_new
  if arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endif
  let arg3 = v:fname_out
  if arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endif
  let eq = ''
  if $VIMRUNTIME =~ ' '
    if &sh =~ '\<cmd'
      let cmd = '""' . $VIMRUNTIME . '\diff"'
      let eq = '"'
    else
      let cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'
    endif
  else
    let cmd = $VIMRUNTIME . '\diff'
  endif
  silent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction

nnoremap <Leader>p :pyf P:\Computer Applications\Python\

"quick quit command
noremap <Leader>e :quit<CR> "quits the current window



" Rebind <Leader> key
let mapleader = ","

map <Leader>n <esc>:tabprevious<CR>
map <Leader>m <esc>:tabnext<CR
4

1 回答 1

2

我与插件维护者 David Fishburn 进行了交谈 - 我对他为帮助像我这样的新手而采取的超时感到惊讶:好人。

一开始他建议

我相信 SQLSRV 的 cmd 终止符是“\ngo\n”而不是“;”。

如果您想暂时更改它以尝试在此缓冲区中运行: :DBSetOption cmd_terminator=';'

再次尝试 cmd。

如果可行,您可以覆盖默认值或更改您的配置文件以覆盖它。

然后回答一些进一步的相关问题:

Q1。什么是 "\ngo\n" ?

因为字符串用双引号括起来,Vim 对待转义字符的方式不同。\n - 换行符 \n - 换行符

所以对于 SQL Server 这将是典型的:

CREATE PROCEDURE BEGIN END 去

实际上是:
“END\ngo\n”

换句话说,“go”必须在换行符上,只有“go”在行上。

Q2。我是否只需将以下内容添加到 _vimrc 以使其永久化?:

DBSetOption cmd_terminator=';'

否。 :DBSetOption 仅用于修改当前缓冲区设置,而不是永久设置。

您可以做的最好的事情是通读 :h dbext.txt。

您的问题的具体答案在于:h dbext-configure-options

5.3 数据库特定选项 dbext-configure-options 命令终止符会在命令发送到数据库之前自动添加到命令中。命令选项也被添加到用于执行语句的命令行中。>

    dbext_default_SQLSRV_bin               = "osql"
    dbext_default_SQLSRV_cmd_header        = ""
    dbext_default_SQLSRV_cmd_terminator    = "\ngo\n"
    dbext_default_SQLSRV_cmd_options       = '-w 10000 -r -b -n'
    dbext_default_SQLSRV_extra             = ''

因此,要永久覆盖 .vimrc 中的所有缓冲区,您需要添加:
let g:dbext_default_SQLSRV_cmd_terminator = ";"

于 2013-05-14T21:56:03.613 回答