Problem #11 when using ODBC to connect to a remote database running on MS SQL Server 2000.
I can connect to the database and run queries using tsql from a terminal and isql from a root terminal and I can connect using odbc in Gambas2 if the ide is started from a root terminal but not if started from the programme shortcut. I have a small utility to run queries on a SQL server, display the results and optionally export them as a csv file. As soon as the programme gets to the line where the query is assigned to a Result the programme crashes with a #11. This behaviour is identical if running the Database Sample. The connection is opened. connection.opened is True when tested in debug mode. The line where the error occurs in the sample is:- rData = $hConn.Exec(txtRequest.Text) which is the same as the one in my application where the programme crashes PUBLIC SUB FillGrid(ctl AS Control, cnn AS Connection, sqlstr AS String) DIM datout AS Result, i AS Integer, j AS Integer datout = cnn.Exec(sqlstr) The line the crash occurs The version of gambas2 is 2.18.0 The kernel is Linux 2.6.31.5-127/fc12.x86_64 System is Memory 3.8 GiB Proc 0 AMD Athlon(tm) X2 Dual Core processor 5200+ Proc 1 AMD Athlon(tm) X2 Dual Core processor 5200+ The query is executed as can be seen from the output from Wireshark included after the debug output. Thanks Tony Debug data and Wireshark output from running the Database Sample Programme. [r...@fslserver Database]# cd /usr/share/gambas2/examples/Database/Database [r...@fslserver Database]# gbc2 -agt OK [r...@fslserver Database]# gdb gbx2 GNU gdb (GDB) Fedora (7.0-8.fc12) Copyright (C) 2009 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-redhat-linux-gnu". For bug reporting instructions, please see: <http://www.gnu.org/software/gdb/bugs/>... Reading symbols from /usr/bin/gbx2...(no debugging symbols found)...done. Missing separate debuginfos, use: debuginfo-install gambas2-runtime-2.18.0-1.fc12.x86_64 (gdb) set args -p (gdb) run Starting program: /usr/bin/gbx2 -p [Thread debugging using libthread_db enabled] Program received signal SIGSEGV, Segmentation fault. 0x0000003b3a27978c in free () from /lib64/libc.so.6 (gdb) bt #0 0x0000003b3a27978c in free () from /lib64/libc.so.6 #1 0x00000000004050f1 in sinh () #2 0x00007fffefe013aa in SQLDisconnect () from /usr/lib64/gambas2/gb.db.odbc.so #3 0x00007fffefe03a28 in ?? () from /usr/lib64/gambas2/gb.db.odbc.so #4 0x00007ffff7408da2 in ?? () from /usr/lib64/gambas2/gb.db.so #5 0x00007ffff740975f in ?? () from /usr/lib64/gambas2/gb.db.so #6 0x00007ffff74063c7 in ?? () from /usr/lib64/gambas2/gb.db.so #7 0x0000000000408b32 in sinh () #8 0x000000000040952f in sinh () #9 0x000000000042eea5 in sinh () #10 0x0000000000409cf5 in sinh () #11 0x0000000000409fac in sinh () #12 0x000000000041c4c9 in sinh () #13 0x000000000041ce79 in sinh () #14 0x00007ffff797edca in g_io_channel_unref () from /usr/lib64/gambas2/gb.gtk.so #15 0x000000324020ba8e in g_closure_invoke () from /lib64/libgobject-2.0.so.0 #16 0x0000003240220ec3 in ?? () from /lib64/libgobject-2.0.so.0 #17 0x0000003240222259 in g_signal_emit_valist () from /lib64/libgobject-2.0.so.0 #18 0x00000032402227a3 in g_signal_emit () from /lib64/libgobject-2.0.so.0 #19 0x000000324468d615 in ?? () from /usr/lib64/libgtk-x11-2.0.so.0 ---Type <return> to continue, or q <return> to quit--- #20 0x000000324020ba8e in g_closure_invoke () from /lib64/libgobject-2.0.so.0 #21 0x00000032402207dc in ?? () from /lib64/libgobject-2.0.so.0 #22 0x0000003240222259 in g_signal_emit_valist () from /lib64/libgobject-2.0.so.0 #23 0x00000032402227a3 in g_signal_emit () from /lib64/libgobject-2.0.so.0 #24 0x000000324468be77 in ?? () from /usr/lib64/libgtk-x11-2.0.so.0 #25 0x0000003244753903 in ?? () from /usr/lib64/libgtk-x11-2.0.so.0 #26 0x000000324020ba8e in g_closure_invoke () from /lib64/libgobject-2.0.so.0 #27 0x0000003240220b8d in ?? () from /lib64/libgobject-2.0.so.0 #28 0x00000032402220ec in g_signal_emit_valist () from /lib64/libgobject-2.0.so.0 #29 0x00000032402227a3 in g_signal_emit () from /lib64/libgobject-2.0.so.0 #30 0x0000003244875a9f in ?? () from /usr/lib64/libgtk-x11-2.0.so.0 #31 0x000000324474a664 in gtk_propagate_event () from /usr/lib64/libgtk-x11-2.0.so.0 #32 0x000000324474b7a3 in gtk_main_do_event () from /usr/lib64/libgtk-x11-2.0.so.0 #33 0x00007ffff798c627 in ?? () from /usr/lib64/gambas2/gb.gtk.so #34 0x000000324625f7fc in ?? () from /usr/lib64/libgdk-x11-2.0.so.0 #35 0x000000323fe3922e in g_main_context_dispatch () from /lib64/libglib-2.0.so.0 #36 0x000000323fe3cc18 in ?? () from /lib64/libglib-2.0.so.0 #37 0x000000323fe3cd3a in g_main_context_iteration () ---Type <return> to continue, or q <return> to quit--- from /lib64/libglib-2.0.so.0 #38 0x000000324474bb1d in gtk_main_iteration_do () from /usr/lib64/libgtk-x11-2.0.so.0 #39 0x00007ffff798a85a in g_io_channel_unref () from /usr/lib64/gambas2/gb.gtk.so #40 0x00007ffff798aec9 in ?? () from /usr/lib64/gambas2/gb.gtk.so #41 0x0000000000422274 in sinh () #42 0x0000003b3a21eb1d in __libc_start_main () from /lib64/libc.so.6 #43 0x0000000000403a99 in sinh () #44 0x00007fffffffe598 in ?? () #45 0x000000000000001c in ?? () #46 0x0000000000000002 in ?? () #47 0x00000000008548d8 in ?? () #48 0x00007fffffffe80f in ?? () #49 0x0000000000000000 in ?? () Listed below is the output from wireshark when running the same query attached to the same remote database using tsql from a terminal and the gambas database sample. Note to minimise the amount of data and for security reasons I have deleted the lines on which the user name and password appear and also any lines which consisted of all 0's. Using TSQL 0000 00 04 00 01 00 06 1e bf ef 97 8d 0e 00 00 08 00 ........ ........ Login Packet with 0010 45 00 02 80 06 13 40 00 40 06 1e 4d 0a 08 00 07 e.....@. @..M.... lines of zeros and 0020 0a 08 00 02 db 2f 05 99 89 39 ed 79 d6 77 f1 04 ...../.. .9.y.w.. user/pwd removed 0030 80 18 00 2e 3f 2f 00 00 01 01 08 0a 00 3d ec a5 ....?/.. .....=.. 0040 00 00 00 00 02 00 02 00 00 00 00 00 46 53 4c 53 ........ ....FSLS 0050 65 72 76 65 72 00 00 00 00 00 00 00 00 00 00 00 erver... ........ 00a0 00 00 00 00 00 00 00 00 04 33 37 38 37 36 00 00 ........ .37876.. 00c0 00 00 00 00 00 00 00 05 03 01 06 0a 09 01 00 00 ........ ........ 00d0 00 00 02 00 00 00 00 00 54 53 51 4c 00 00 00 00 ........ TSQL.... 00e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ........ ........ 00f0 00 00 00 00 00 00 04 41 63 63 6f 75 6e 74 73 00 .......A ccounts. 0210 00 00 00 00 00 04 04 02 00 00 54 44 53 2d 4c 69 ........ ..TDS-Li 0220 62 72 61 72 0a 00 00 00 00 00 0d 11 75 73 5f 65 brar.... ....us_e 0230 6e 67 6c 69 73 68 00 00 00 00 00 00 00 00 00 00 nglish.. ........ 0240 00 00 00 00 02 01 00 4c 00 00 00 00 00 00 00 00 .......L ........ 0260 00 69 73 6f 5f 31 00 00 00 00 00 00 00 00 00 00 .iso_1.. ........ 0270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 ........ ........ 0280 01 35 31 32 00 00 00 03 00 00 00 00 00 00 00 00 .512.... ........ 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... Response Packet 0010 45 00 00 cf 79 b5 40 00 80 06 6c 5b 0a 08 00 02 e.....@. ..l[.... 0020 0a 08 00 07 05 99 db 2f d6 77 f1 04 89 39 ef c5 ......./ .w...9.. 0030 80 18 41 8c d9 da 00 00 01 01 08 0a 00 9a 27 c4 ..A..... ......'. 0040 00 3d ec a5 04 01 00 9b 00 4b 01 00 e3 0f 00 01 .=...... .K...... 0050 06 6d 61 73 74 65 72 06 6d 61 73 74 65 72 ab 39 .master. master.9 0060 00 45 16 00 00 02 00 25 00 43 68 61 6e 67 65 64 .E.....% .Changed 0070 20 64 61 74 61 62 61 73 65 20 63 6f 6e 74 65 78 databas e contex 0080 74 20 74 6f 20 27 6d 61 73 74 65 72 27 2e 08 41 t to 'ma ster'..A 0090 43 43 4f 55 4e 54 53 00 00 00 e3 09 00 03 05 69 CCOUNTS. .......i 00a0 73 6f 5f 31 01 00 ad 20 00 01 04 02 00 00 16 4d so_1... .......M 00b0 69 63 72 6f 73 6f 66 74 20 53 51 4c 20 53 65 72 icrosoft SQL Ser 00c0 76 65 72 00 00 5f 08 00 ff e3 0a 00 04 03 35 31 ver.._.. ......51 00d0 32 04 34 30 39 36 fd 00 00 00 00 00 00 00 00 2.4096.. ....... 0000 00 04 00 01 00 06 1e bf ef 97 8d 0e 00 00 08 00 ........ ........ Query Packey 0010 45 00 00 5a 06 15 40 00 40 06 20 71 0a 08 00 07 e.....@. @. q.... 0020 0a 08 00 02 db 2f 05 99 89 39 ef c5 d6 77 f1 9f ...../.. .9...w.. 0030 80 18 00 36 e1 fb 00 00 01 01 08 0a 00 3d ed 47 ...6.... .....=.G 0040 00 9a 27 c4 01 01 00 26 00 00 00 00 73 65 74 20 ..'....& ....set 0050 74 65 78 74 73 69 7a 65 20 36 34 35 31 32 20 75 textsize 64512 u 0060 73 65 20 66 73 6c 6f 70 68 71 se fslop hq 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... Response Packet 0010 45 00 00 9e 79 b7 40 00 80 06 6c 8a 0a 08 00 02 e.....@. ..l..... 0020 0a 08 00 07 05 99 db 2f d6 77 f1 9f 89 39 ef eb ......./ .w...9.. 0030 80 18 41 66 fe 02 00 00 01 01 08 0a 00 9a 27 c5 ..Af.... ......'. 0040 00 3d ed 47 04 01 00 6a 00 4b 01 00 fd 01 00 be .=.G...j .K...... 0050 00 00 00 00 00 e3 10 00 01 07 46 53 4c 4f 50 48 ........ ..FSLOPH 0060 51 06 6d 61 73 74 65 72 ab 3a 00 45 16 00 00 01 Q.master .:.E.... 0070 00 26 00 43 68 61 6e 67 65 64 20 64 61 74 61 62 .&.Chang ed datab 0080 61 73 65 20 63 6f 6e 74 65 78 74 20 74 6f 20 27 ase cont ext to ' 0090 46 53 4c 4f 50 48 51 27 2e 08 41 43 43 4f 55 4e FSLOPHQ' ..ACCOUN 00a0 54 53 00 01 00 fd 00 00 e2 00 00 00 00 00 TS...... ...... The next query was the sql query and the data was returned Using ODBC in Gambas 0000 00 04 00 01 00 06 da 45 23 65 30 14 00 00 08 00 .......E #e0..... Login Packet with 0010 45 00 02 80 8e 28 40 00 40 06 96 37 0a 08 00 07 E....(@. @..7.... lines of zeros and 0020 0a 08 00 02 96 e5 05 99 35 aa 74 ef 2a 90 12 ca ........ 5.t.*... user/pwd removed 0030 80 18 00 2e 0a eb 00 00 01 01 08 0a 00 46 fb 6e ........ .....F.n 0040 00 00 00 00 02 00 02 00 00 00 00 00 46 53 4c 53 ........ ....FSLS 0050 65 72 76 65 72 00 00 00 00 00 00 00 00 00 00 00 erver... ........ 00a0 00 00 00 00 00 00 00 00 04 33 37 38 37 36 00 00 ........ .37876.. 00c0 00 00 00 00 00 00 00 05 03 01 06 0a 09 01 00 00 ........ ........ 00d0 00 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 ........ ........ 00f0 00 00 00 00 00 00 00 53 59 42 41 53 45 00 00 00 .......S YBASE... 0220 00 00 00 00 00 00 00 00 00 00 0d 11 75 73 5f 65 ........ ....us_e 0230 6e 67 6c 69 73 68 00 00 00 00 00 00 00 00 00 00 nglish.. ........ 0240 00 00 00 00 02 01 00 4c 00 00 00 00 00 00 00 00 .......L ........ 0250 00 00 0a 00 00 00 00 00 00 00 00 00 00 00 00 00 ........ ........ 0260 00 69 73 6f 5f 31 00 00 00 00 00 00 00 00 00 00 .iso_1.. ........ 0270 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 ........ ........ 0280 01 35 31 32 00 00 00 03 00 00 00 00 00 00 00 00 .512.... ........ 0000 00 04 00 01 00 06 da 45 23 65 30 14 00 00 08 00 .......E #e0..... Query Packet 0010 45 00 00 5c 8e 2a 40 00 40 06 98 59 0a 08 00 07 e.....@. @..Y.... 0020 0a 08 00 02 96 e5 05 99 35 aa 77 3b 2a 90 13 65 ........ 5.w;*..e 0030 80 18 00 36 22 9f 00 00 01 01 08 0a 00 46 fb d4 ...6"... .....F.. 0040 00 9c a8 63 01 01 00 28 00 00 00 00 73 65 74 20 ...c...( ....set 0050 74 65 78 74 73 69 7a 65 20 35 30 30 30 30 30 30 textsize 5000000 0060 20 75 73 65 20 46 53 4c 4f 50 48 51 use FSL OPHQ 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... Response Packet 0010 45 00 00 9e 48 c4 40 00 80 06 9d 7d 0a 08 00 02 e.....@. ...}.... 0020 0a 08 00 07 05 99 96 e5 2a 90 13 65 35 aa 77 63 ........ *..e5.wc 0030 80 18 41 64 09 5e 00 00 01 01 08 0a 00 9c a8 63 ..Ad.^.. .......c 0040 00 46 fb d4 04 01 00 6a 00 40 01 00 fd 01 00 be .F.....j ....@...... 0050 00 00 00 00 00 e3 10 00 01 07 46 53 4c 4f 50 48 ........ ..FSLOPH 0060 51 06 6d 61 73 74 65 72 ab 3a 00 45 16 00 00 01 Q.master .:.E.... 0070 00 26 00 43 68 61 6e 67 65 64 20 64 61 74 61 62 .&.Chang ed datab 0080 61 73 65 20 63 6f 6e 74 65 78 74 20 74 6f 20 27 ase cont ext to ' 0090 46 53 4c 4f 50 48 51 27 2e 08 41 43 43 4f 55 4e FSLOPHQ' ..ACCOUN 00a0 54 53 00 01 00 fd 00 00 e2 00 00 00 00 00 TS...... ...... Additional query packet compared to tsql 0000 00 04 00 01 00 06 1e bf ef 97 8d 0e 00 00 08 00 ........ ........ Query Packet 0010 45 00 00 59 3c 4e 40 00 40 06 ea 38 0a 08 00 07 E..Y<n...@. @..8.... 0020 0a 08 00 02 88 6a 05 99 3e 42 3c 31 4c 25 84 73 .....j.. >B<1L%.s 0030 80 18 00 36 2f 52 00 00 01 01 08 0a 00 73 07 37 ...6/R.. .....s.7 0040 00 9a af b4 01 01 00 25 00 00 00 00 53 45 54 20 .......% ....SET 0050 49 4d 50 4c 49 43 49 54 5f 54 52 41 4e 53 41 43 IMPLICIT _TRANSAC 0060 54 49 4f 4e 53 20 4f 46 46 TIONS OF F 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... Response Packet 0010 45 00 00 45 7c 2f 40 00 80 06 6a 6b 0a 08 00 02 E..E|/@. ..jk.... 0020 0a 08 00 07 05 99 88 6a 4c 25 84 73 3e 42 3c 56 .......j L%.s>B<V 0030 80 18 41 54 8c f7 00 00 01 01 08 0a 00 9a af b5 ..AT.... ........ 0040 00 73 07 37 04 01 00 11 00 45 01 00 fd 00 00 ba .s.7.... .E...... 0050 00 00 00 00 00 ..... The next packet was the sql query identical to the tsql one and the responses (4 packets) were also identical. 0000 00 04 00 01 00 06 1e bf ef 97 8d 0e 00 00 08 00 ........ ........ 0010 45 00 00 57 3c 50 40 00 40 06 ea 38 0a 08 00 07 E..W<p...@. @..8.... 0020 0a 08 00 02 88 6a 05 99 3e 42 3c 56 4c 25 84 84 .....j.. >B<VL%.. 0030 80 18 00 36 56 ba 00 00 01 01 08 0a 00 73 49 7c ...6V... .....sI| 0040 00 9a af b5 01 01 00 23 00 00 00 00 53 65 6c 65 .......# ....Sele 0050 63 74 20 2a 20 66 72 6f 6d 20 64 65 6c 69 76 65 ct * fro m delive 0060 72 79 61 72 65 61 73 ryareas 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... 0010 45 00 02 34 7e dd 40 00 80 06 65 ce 0a 08 00 02 e.....@. ..e..... 0020 0a 08 00 07 05 99 88 6a 4c 25 84 84 3e 42 3c 79 .......j L%..>B<y 0030 80 18 41 31 a3 d1 00 00 01 01 08 0a 00 9a b0 5f ..A1.... ......._ 0040 00 73 49 7c 04 00 02 00 00 45 01 00 a0 14 00 07 .sI|.... .E...... 0050 44 65 6c 41 72 65 61 0b 44 65 73 63 72 69 70 74 DelArea. Descript 0060 69 6f 6e a1 0b 00 07 00 10 00 38 01 00 08 00 2f ion..... ..8..../ 0070 5a d1 01 00 00 00 5a 42 61 6e 74 72 79 20 26 20 Z.....ZB antry & 0080 44 69 73 74 72 69 63 74 20 20 20 20 20 20 20 20 District 0090 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00d0 20 d1 02 00 00 00 5a 4b 69 6c 63 72 6f 68 61 6e .....ZK ilcrohan 00e0 65 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 e 00f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0100 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0110 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0120 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0130 20 d1 03 00 00 00 5a 44 72 69 6d 6f 6c 65 61 67 .....ZD rimoleag 0140 75 65 20 26 20 44 72 69 6e 61 67 68 20 20 20 20 ue & Dri nagh 0150 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0160 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0170 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0180 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0190 20 d1 04 00 00 00 5a 53 6b 69 62 62 2f 43 61 68 .....ZS kibb/Cah 01a0 65 72 61 67 68 2f 42 61 6c 74 69 6d 6f 72 65 20 eragh/Ba ltimore 01b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01d0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01f0 20 d1 05 00 00 00 5a 42 61 6c 6c 79 64 65 68 6f .....ZB allydeho 0200 62 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 b 0210 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0220 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0230 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0240 20 20 20 20 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... 0010 45 00 05 60 7e de 40 00 80 06 62 a1 0a 08 00 02 e.....@. ..b..... 0020 0a 08 00 07 05 99 88 6a 4c 25 86 84 3e 42 3c 79 .......j L%..>B<y 0030 80 18 41 31 63 47 00 00 01 01 08 0a 00 9a b0 5f ..A1cG.. ......._ 0040 00 73 49 7c 04 00 02 00 00 45 02 00 20 20 20 20 .sI|.... .E.. 0050 20 20 20 20 20 20 20 20 20 d1 06 00 00 00 5a 53 .....ZS 0060 63 68 75 6c 6c 20 20 20 20 20 20 20 20 20 20 20 chull 0070 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0080 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0090 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00b0 20 20 20 20 20 20 20 20 20 d1 07 00 00 00 5a 47 .....ZG 00c0 6f 6c 65 65 6e 20 20 20 20 20 20 20 20 20 20 20 oleen 00d0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0100 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0110 20 20 20 20 20 20 20 20 20 d1 08 00 00 00 5a 44 .....ZD 0120 75 6e 6d 61 6e 77 61 79 20 26 20 4c 65 61 70 20 unmanway & Leap 0130 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0140 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0150 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0160 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0170 20 20 20 20 20 20 20 20 20 d1 09 00 00 00 5a 43 .....ZC 0180 6c 6f 6e 61 6b 69 6c 74 79 2f 42 61 6e 64 6f 6e lonakilt y/Bandon 0190 2f 42 61 6c 6c 69 6e 65 65 6e 20 20 20 20 20 20 /Balline en 01a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 01d0 20 20 20 20 20 20 20 20 20 d1 0a 00 00 00 5a 4b .....ZK 01e0 65 61 6c 6b 69 6c 6c 20 20 20 20 20 20 20 20 20 ealkill 01f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0200 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0210 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0220 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0230 20 20 20 20 20 20 20 20 20 d1 0b 00 00 00 5a 42 .....ZB 0240 61 6c 6c 69 04 00 02 00 00 45 03 00 6e 67 65 61 alli.... .E..ngea 0250 72 79 20 20 20 20 20 20 20 20 20 20 20 20 20 20 ry 0260 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0270 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0280 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0290 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02a0 20 d1 0c 00 00 00 5a 4d 61 63 72 6f 6f 6d 20 20 .....ZM acroom 02b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02d0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 02f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0300 20 d1 0d 00 00 00 5a 47 6c 65 6e 67 61 72 72 69 .....ZG lengarri 0310 66 66 20 20 20 20 20 20 20 20 20 20 20 20 20 20 ff 0320 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0330 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0340 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0350 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0360 20 d1 0e 00 00 00 5a 41 64 72 69 67 6f 6c 65 20 .....ZA drigole 0370 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0380 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0390 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 03a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 03b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 03c0 20 d1 0f 00 00 00 5a 43 61 73 74 6c 65 74 6f 77 .....ZC astletow 03d0 6e 62 65 72 65 20 26 20 45 79 72 69 65 73 20 20 nbere & Eyries 03e0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 03f0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0400 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0410 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0420 20 d1 10 00 00 00 5a 57 68 69 64 64 79 2f 53 68 .....ZW hiddy/Sh 0430 65 72 6b 69 6e 2f 48 61 72 65 20 49 73 6c 61 6e erkin/Ha re Islan 0440 64 20 20 20 04 00 02 00 00 45 04 00 20 20 20 20 d .... .E.. 0450 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0460 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0470 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0480 20 20 20 20 20 20 20 20 20 d1 11 00 00 00 5a 42 .....ZB 0490 65 72 65 20 49 73 6c 61 6e 64 20 20 20 20 20 20 ere Isla nd 04a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 04b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 04c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 04d0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 04e0 20 20 20 20 20 20 20 20 20 d1 14 00 00 00 5a 43 .....ZC 04f0 6f 6c 6c 65 63 74 65 64 20 20 20 20 20 20 20 20 ollected 0500 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0510 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0520 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0530 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0540 20 20 20 20 20 20 20 20 20 d1 15 00 00 00 5a 43 .....ZC 0550 6f 6c 6c 65 63 74 65 64 20 4c 61 68 61 64 61 6e ollected Lahadan 0560 65 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 e 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... 0010 45 00 01 08 7e df 40 00 80 06 66 f8 0a 08 00 02 e.....@. ..f..... 0020 0a 08 00 07 05 99 88 6a 4c 25 8b b0 3e 42 3c 79 .......j L%..>B<y 0030 80 18 41 31 97 d0 00 00 01 01 08 0a 00 9a b0 5f ..A1.... ......._ 0040 00 73 49 7c 20 20 20 20 20 20 20 20 20 20 20 20 .sI| 0050 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0060 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0070 20 20 20 20 20 20 20 20 20 20 20 20 20 d1 16 00 ... 0080 00 00 5a 43 61 70 65 20 43 6c 65 61 72 20 49 73 ..ZCape Clear Is 0090 6c 61 6e 64 20 20 20 20 20 20 20 20 20 20 20 20 land 00a0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00b0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00c0 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 00d0 20 20 20 20 20 20 20 20 20 20 20 20 20 d1 17 00 ... 00e0 00 00 5a 41 6c 6c 69 68 69 65 73 2f 41 72 64 67 ..ZAllih ies/Ardg 00f0 72 6f 6f 6d 20 20 20 20 20 20 20 20 20 20 20 20 room 0100 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0110 20 20 20 20 20 20 20 20 0000 00 00 00 01 00 06 00 ff 5a 71 3e 27 00 00 08 00 ........ Zq>'.... 0010 45 00 00 6a 7e e3 40 00 80 06 67 92 0a 08 00 02 e.....@. ..g..... 0020 0a 08 00 07 05 99 88 6a 4c 25 8c 84 3e 42 3c 79 .......j L%..>B<y 0030 80 18 41 31 f1 21 00 00 01 01 08 0a 00 9a b0 61 ..A1.!.. .......a 0040 00 73 4a 80 04 01 00 36 00 45 05 00 20 20 20 20 .sJ....6 .E.. 0050 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0060 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 0070 20 fd 10 00 c1 00 15 00 00 00 ....... .. ------------------------------------------------------------------------------ Return on Information: Google Enterprise Search pays you back Get the facts. http://p.sf.net/sfu/google-dev2dev _______________________________________________ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user