This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Describe table TABLENAME | |
# Does not work on aliases. | |
# See what you can select from syscat.columns | |
Select COLNAME from syscat.columns where tabname='COLUMNS' and tabschema='SYSCAT' | |
# Get type of a certain column | |
Select TABNAME, COLNAME, TYPENAME, LENGTH from syscat.columns where (tabschema,tabname,colname)=('$SCHEMA', '$TABLE', '$COLUMN') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
StringHolder new openLabel: 'Text'; contents: aStringOrText; changed: #contents |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ActiveHand grabMorph: (TransferMorph withPassenger: anObject) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AttachableFileStream initialize. | |
OSProcessAccessor initialize. | |
OSProcess initialize. | |
ThisOSProcess initializeThisOSProcess | |
WindowsProcess initialize. | |
self assert: OSProcess thisOSProcess notNil |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xclip -o | xclip -i -selection CLIPBOARD |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
filetype plugin indent on | |
set encoding=utf8 | |
set guifont:Consolas:h11:cANSI | |
set ruler | |
set backspace=start,indent,eol | |
set smartindent | |
set tabstop=4 | |
set shiftwidth=4 | |
set colorcolumn=80 | |
syntax on |