WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions autoload/dbext.vim
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ function! s:DB_varToString(name)
endif
endfunction

"FIXME: Csin�lni kell erre egy kommandot.
"FIXME: Csin�lni kell erre egy kommandot.
function! s:DB_getParameters(scope)
"scope must be 'b', 'g', 'd' (buffer, global, default)
if (a:scope == "b")
Expand Down Expand Up @@ -2209,9 +2209,9 @@ function! s:DB_DB2_execSql(str)
" In batch files I used the following
" -c close when done
" -w wait until command finishes
" -i don�t spawn a new cmd window
" -t don�t change the window title
" db2cmd -c -w -i �t �db2 -s -t ; -v -f dave.sql�
" -i don�t spawn a new cmd window
" -t don�t change the window title
" db2cmd -c -w -i �t �db2 -s -t ; -v -f dave.sql�
" To see command line options
" cd IBM\SQLLIB\BIN
" db2cmd -w -i
Expand Down Expand Up @@ -3224,7 +3224,7 @@ function! s:DB_PGSQL_getListColumn(table_name)
let table_name = s:DB_getObjectName(a:table_name)
let query = "SELECT a.attname " .
\ " FROM pg_class c, pg_attribute a " .
\ " WHERE c.relfilenode = a.attrelid " .
\ " WHERE c.oid = a.attrelid " .
\ " AND a.attnum > 0 " .
\ " AND c.relname = '" . table_name . "'"

Expand Down