This file contains 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
SQLGetInfo(144) 0 | |
] | |
info: 145 dynamic-cursor-attributes2 | |
PICK-METADATA [ | |
SQLGetInfo(145) 0 | |
] | |
info: 146 forward-only-cursor-attributes1 | |
PICK-METADATA [ | |
SQLGetInfo(146) 0 | |
] |
This file contains 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
info: 130 create-domain | |
info: 131 create-schema | |
info: 132 create-table | |
info: 133 create-translation | |
info: 134 create-view | |
info: 136 drop-assertion | |
info: 137 drop-character-set | |
info: 138 drop-collation | |
info: 139 drop-domain | |
info: 140 drop-schema |
This file contains 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
] | |
] | |
about-connection | |
info: 0 max-driver-connections | |
info: 1 max-concurrent-activities | |
info: 2 data-source-name | |
info: 6 driver-name | |
info: 7 driver-ver | |
info: 10 odbc-ver | |
info: 11 row-updates |
This file contains 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
``` | |
[25826 "FA " "A" 16 "C000925" none "C000925" "C" none none none "001" false 1 true 0 false true false true " 381 " 381 4-May-2010/0:00:00 "2010" "2010" "IT " " " " " "05010301001 " " " none 4-May-2010/0:00:00 "EUR" 2 3 1.0 "003" true false none none none "CASS" none "008" "900" none none " " deferred "01 " "01 " "01 " "SC " "04" none 5-May-2010/0:00:00 none none none none none 2 0.0 13.0 0.0 deferred 0.0 3 1 4 3 0 3 0.0 0.0 0.0 "0U00000000" "xxxxxmyserverxxxxxxx" "xxxxxmyserver2xxxxxxx" 27-Oct-2012/2:20:00 4-Apr-2018/17:59:00 #{000000000330ED82} deferred none none false 0 false false true none deferred false none none deferred none none none none false none none none deferred none none] | |
[25827 "FA " "A" 16 "C000907" none "C000907" "C" none none none "001" false 1 true 0 false true false true " 382 " 382 4-May-2010/0:00:00 "2010" "2010" "IT " " " " " "05010301 |
This file contains 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
send-to: func [ | |
"Send a message and returns the response. NONE if no response (TBD:)" | |
server-address "The address of the server" | |
port-number [integer!] "The remote port number" | |
message [String! block!] "The message to send" | |
/local | |
out-data ;"The return data" | |
connection | |
server |
This file contains 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
SERVER-DB: "myserver" | |
DB: "mydb" | |
port-number: 55551 | |
server-address: "localhost" | |
;--- These are the commands we could execute |
This file contains 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
do %../scripts/send-to.r | |
port-number: 55551 | |
server-address: "localhost" | |
Forever [ | |
prin "Insert a server command > " message: input | |
if message = "exit" [Print "!!! Exit Received, quitting !!!" break] | |
response: send-to server-address port-number message | |
print "" |
This file contains 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
--== Red 0.6.4 ==-- | |
Type HELP for starting information. | |
>> do %pp.r | |
actor/open: connection | |
init-odbc | |
OPEN-ENVIRONMENT [ | |
SQLAllocHandle 0 | |
henv/value = 2158376 | |
SQLSetEnvAttr 0 |
This file contains 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
;Red [] | |
Rebol [] | |
recycle/off | |
;This code is from Ashley Graham | |
platform?: case [ | |
2 = system/version/1 ['Rebol] | |
not rebol ['Red] | |
system/product = 'atronix-view ['Atronix] |
This file contains 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
;Red [] | |
Rebol [] | |
recycle/off | |
;This code is from Ashley Graham | |
platform?: case [ | |
2 = system/version/1 ['Rebol] | |
not rebol ['Red] | |
system/product = 'atronix-view ['Atronix] |