Skip to Content.
Sympa Menu

freetds - [freetds] FreeTDS 1.1 - missing CS_ROWFMT_RESULT row in ct_results

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: Fredy Paquet <fredy AT opag.ch>
  • To: FreeTDS Development Group <freetds AT lists.ibiblio.org>
  • Cc: Frediano Ziglio <freddy77 AT gmail.com>
  • Subject: [freetds] FreeTDS 1.1 - missing CS_ROWFMT_RESULT row in ct_results
  • Date: Sat, 08 Jul 2017 17:03:25 +0200

Hello Frediano

Sorry to bother you again.

I'm testing FreeTDS 1.1 (current master branch) with our Sybase ASE 15.7
ctLib application.

We found our application to crash after the first SELECT has been
issued, returning result rows.

Attached there are two TDSDUMP files:

ctlib_ok.log - taken with FreeTDS 0.91
ctlib_bad.log - taken with FreeTDS 1.1

If we look at the tds dump, we find that token.c is recognizing the
ROWFMT2 result, but doesn't pass correct information back to ct_result()
in ct.c (~Line 1215) to process CS_ROWFMT_RESULT. In ctlib_ok.log, you
can find ct_res_info() calls after "process_result_tokens returned", but
not in ctlib_bad.log.

ctlib_ok.log Line 452ff

token.c:555:processing result tokens. marker is 61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838: column_name=[name]
token.c:1844: flags=10 utype=42 type=47 varint=5
token.c:1847: colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838: column_name=[type]
token.c:1844: flags=10 utype=1 type=47 varint=5
token.c:1847: colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049)
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c3425c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2

ctlib_bad.log line 417ff

token.c:548:processing result tokens. marker is 61(ROWFMT2)
token.c:577:calling tds5_process_result2/1
token.c:1778:tds5_process_result2
mem.c:660:tds_free_all_results()
token.c:1802:num_cols=2
token.c:1868:col 0:
token.c:1869: column_name=[name]
token.c:1875: flags=10 utype=42 type=39 server type 39 varint=1
token.c:1879: colsize=255 prec=0 scale=0
token.c:1868:col 1:
token.c:1869: column_name=[type]
token.c:1875: flags=10 utype=1 type=47 server type 47 varint=1
token.c:1879: colsize=2 prec=0 scale=0
token.c:1882:tds5_process_result2(): exit
mem.c:529:tds_alloc_row()
mem.c:565:tds_alloc_row(): SUCCESS
token.c:579: tds5_process_result2() = 0
util.c:165:Changed query state from READING to PENDING
ct.c:1215:ct_results() process_result_tokens returned 0 (type 4049)
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e073b8,
0x7ffe79e073bc, 0x6a14)
util.c:165:Changed query state from PENDING to READING
token.c:548:processing result tokens. marker is
ae(CONTROL/FEATUREEXTACK)
token.c:132:tds_process_default_tokens() marker is
ae(CONTROL/FEATUREEXTACK)
token.c:252:Eating CONTROL/FEATUREEXTACK token
token.c:548:processing result tokens. marker is a9(ORDERBY)
token.c:132:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:252:Eating ORDERBY token
token.c:548:processing result tokens. marker is d1(ROW)
token.c:656:tds_process_tokens::SET_RETURN stopping on current token
util.c:165:Changed query state from READING to PENDING

----
The related code change was introduced by the following commit.

> Date: 2016-05-01 00:24:32
> Revision: 4fea9e776e5475c4c607b9c2fa85a563e6feb700
> Comment: fix ct-library rows count

After experimentally adding the following code segment to the switch,
case CS_ROWFMT_RESULT the application doesn't crash anymore processing
the results. These lines have been replaced in commit 4fea9.

case CS_ROWFMT_RESULT:
...
if (context->config.cs_expose_formats) {
*result_type = res_type;
return CS_SUCCEED;
}
...
break;

Instead of crashing, our application is processing quite a few SELECT
results, but starts hanging in ct_fetch() later, when processing a
SELECT statements returning 0 rows.

Got any ideas about this?
fp

--
Fredy Paquet
Mitglied der Geschäftsleitung
OPAG Informatik AG
Fabrikmattenweg 11
CH-4144 Arlesheim
http://www.opag.ch
Tel. ++41 61 716 92 22
Fax. ++41 61 716 92 29
log.c:168:Starting log file for FreeTDS 1.1.dev.20170708
	on 2017-07-08 16:48:33 with debug flags 0x4fff.
iconv.c:325:tds_iconv_open(0x18bde20, ISO-8859-1)
iconv.c:355:Using trivial iconv
iconv.c:185:local name for ISO-8859-1 is ISO-8859-1
iconv.c:185:local name for UTF-8 is UTF-8
iconv.c:185:local name for UCS-2LE is UCS-2LE
iconv.c:185:local name for UCS-2BE is UCS-2BE
iconv.c:347:setting up conversions for client charset "ISO-8859-1"
iconv.c:349:preparing iconv for "ISO-8859-1" <-> "UCS-2LE" conversion
iconv.c:388:tds_iconv_open: done
net.c:362:Connecting with protocol version 5.0
net.c:289:Connecting to 127.0.0.1 port 5012
net.c:311:tds_setup_socket: connect(2) returned "Operation now in progress"
net.c:499:tds_open_socket() succeeded
packet.c:742:Sending packet
0000 02 00 02 00 00 00 00 00-62 73 61 2e 6f 70 61 67 |........ bsa.opag|
0010 2e 63 68 00 00 00 00 00-00 00 00 00 00 00 00 00 |.ch..... ........|
0020 00 00 00 00 00 00 0b 6b-6f 6d 6d 65 72 7a 00 00 |.......k ommerz..|
0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0040 00 00 00 00 00 07 67 75-72 75 67 75 72 75 00 00 |......gu ruguru..|
0050 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0060 00 00 00 00 08 32 37 33-34 39 00 00 00 00 00 00 |.....273 49......|
0070 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0080 00 00 00 05 03 01 06 0a-09 01 00 00 00 00 00 00 |........ ........|
0090 00 00 00 00 4f 50 47 00-00 00 00 00 00 00 00 00 |....OPG. ........|
00a0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
00b0 00 00 03 54 55 4e 4e 45-4c 5f 4d 4f 52 49 4e 49 |...TUNNE L_MORINI|
00c0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
00d0 00 0d 00 08 67 75 72 75-67 75 72 75 00 00 00 00 |....guru guru....|
00e0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
00f0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0100 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0110 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0120 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0130 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0140 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0150 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0160 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0170 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0180 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0190 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01a0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01b0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01c0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01d0 00 0a 05 00 00 00 43 54-2d 4c 69 62 72 61 72 79 |......CT -Library|
01e0 0a 05 00 00 00 00 0d 11-75 73 5f 65 6e 67 6c 69 |........ us_engli|
01f0 73 68 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |sh...... ........|

packet.c:742:Sending packet
0000 02 01 00 6b 00 00 00 00-00 00 00 00 00 00 0a 00 |...k.... ........|
0010 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0020 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0030 00 00 00 00 00 00 00 00-00 00 00 00 01 35 31 32 |........ .....512|
0040 00 00 00 03 00 00 00 00-e2 20 00 01 0e 00 00 60 |........ â .....`|
0050 08 81 85 ea 8f 6d 7f ff-ff ff fe 02 0e 00 00 00 |...ê.m.ÿ ÿÿþ.....|
0060 00 00 00 00 00 00 02 68-00 00 00                |.......h ...|

token.c:306:tds_process_login_tokens()
packet.c:640:Received packet
0000 04 01 00 ff 00 00 00 00-e3 0d 00 03 05 69 73 6f |...ÿ.... ã....iso|
0010 5f 31 05 69 73 6f 5f 31-e5 4c 00 48 16 00 00 01 |_1.iso_1 åL.H....|
0020 0a 05 5a 5a 5a 5a 5a 00-01 00 31 00 43 68 61 6e |..ZZZZZ. ..1.Chan|
0030 67 65 64 20 63 6c 69 65-6e 74 20 63 68 61 72 61 |ged clie nt chara|
0040 63 74 65 72 20 73 65 74-20 73 65 74 74 69 6e 67 |cter set  setting|
0050 20 74 6f 20 27 69 73 6f-5f 31 27 2e 0a 06 4d 4f | to 'iso _1'...MO|
0060 52 49 4e 49 00 00 00 e3-0d 00 01 04 63 61 73 79 |RINI...ã ....casy|
0070 06 6d 61 73 74 65 72 e5-3f 00 45 16 00 00 02 0a |.masterå ?.E.....|
0080 05 5a 5a 5a 5a 5a 00 01-00 24 00 43 68 61 6e 67 |.ZZZZZ.. .$.Chang|
0090 65 64 20 64 61 74 61 62-61 73 65 20 63 6f 6e 74 |ed datab ase cont|
00a0 65 78 74 20 74 6f 20 27-63 61 73 79 27 2e 0a 06 |ext to ' casy'...|
00b0 4d 4f 52 49 4e 49 00 00-00 e3 07 00 04 04 32 30 |MORINI.. .ã....20|
00c0 34 38 00 ad 0d 00 05 05-00 00 00 03 41 53 45 0f |48.­.... ....ASE.|
00d0 07 00 00 e2 20 00 01 0e-00 00 60 08 81 85 ea 8b |...â ... ..`...ê.|
00e0 61 7f ff ff ff e6 02 0e-00 00 00 00 00 00 00 00 |a.ÿÿÿæ.. ........|
00f0 00 02 00 00 00 00 fd 00-00 02 00 1f 00 00 00    |......ý. .......|

token.c:314:looking for login token, got  e3(ENVCHANGE)
token.c:132:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:2262:server indicated charset change to "iso_1"
iconv.c:784:setting server single-byte charset to "ISO-8859-1"
token.c:314:looking for login token, got  e5(EED)
token.c:132:tds_process_default_tokens() marker is e5(EED)
token.c:2354:tds_process_info() reading message 5704 from server
token.c:2426:tds_process_info() calling client msg handler
ctutil.c:141:_ct_handle_server_message(0x18bda40, 0x18bde20, 0x7ffe79e07360)
token.c:2443:tds_process_info() returning TDS_SUCCESS
token.c:314:looking for login token, got  e3(ENVCHANGE)
token.c:132:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:314:looking for login token, got  e5(EED)
token.c:132:tds_process_default_tokens() marker is e5(EED)
token.c:2354:tds_process_info() reading message 5701 from server
token.c:2426:tds_process_info() calling client msg handler
ctutil.c:141:_ct_handle_server_message(0x18bda40, 0x18bde20, 0x7ffe79e07360)
token.c:2443:tds_process_info() returning TDS_SUCCESS
token.c:314:looking for login token, got  e3(ENVCHANGE)
token.c:132:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:2246:changing block size from  to 2048
token.c:314:looking for login token, got  ad(LOGINACK)
token.c:352:server reports TDS version 5.0.0.0
token.c:354:Product name for 0x5000000 is unknown
token.c:386:Product version F070000
token.c:314:looking for login token, got  e2(CAPABILITY)
token.c:132:tds_process_default_tokens() marker is e2(CAPABILITY)
token.c:314:looking for login token, got  fd(DONE)
token.c:132:tds_process_default_tokens() marker is fd(DONE)
token.c:2091:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2108:                rows_affected = 31
token.c:2111:tds_process_end() state set to TDS_IDLE
token.c:423:tds_process_login_tokens() returning TDS_SUCCESS
mem.c:660:tds_free_all_results()
util.c:165:Changed query state from IDLE to WRITING
util.c:165:Changed query state from WRITING to PENDING
packet.c:742:Sending packet
0000 0f 01 00 2f 00 00 00 00-21 22 00 00 00 00 73 65 |.../.... !"....se|
0010 74 20 74 65 78 74 73 69-7a 65 20 36 34 35 31 32 |t textsi ze 64512|
0020 20 73 65 6c 65 63 74 20-40 40 73 70 69 64 20    | select  @@spid |

token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e074c0, 0x7ffe79e074d0, 0x500)
util.c:165:Changed query state from PENDING to READING
packet.c:640:Received packet
0000 04 01 00 39 00 00 00 00-fd 01 00 02 00 00 00 00 |...9.... ý.......|
0010 00 61 12 00 00 00 01 00-00 00 00 00 00 30 00 00 |.a...... .....0..|
0020 00 06 00 00 00 26 02 00-ae 01 00 00 d1 02 1f 00 |.....&.. ®...Ñ...|
0030 fd 10 00 02 00 01 00 00-00                      |ý....... .|

token.c:548:processing result tokens.  marker is  fd(DONE)
token.c:2091:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2108:                rows_affected = 0
util.c:165:Changed query state from READING to PENDING
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e074c0, 0x7ffe79e074d0, 0x500)
util.c:165:Changed query state from PENDING to READING
token.c:548:processing result tokens.  marker is  61(ROWFMT2)
token.c:577:calling  tds5_process_result2/1
token.c:1778:tds5_process_result2
mem.c:660:tds_free_all_results()
token.c:1802:num_cols=1
token.c:1868:col 0:
token.c:1869:	column_name=[]
token.c:1875:	flags=30 utype=6 type=38 server type 38 varint=1
token.c:1879:	colsize=2 prec=0 scale=0
token.c:1882:tds5_process_result2(): exit
mem.c:529:tds_alloc_row()
mem.c:565:tds_alloc_row(): SUCCESS
token.c:579: tds5_process_result2() = 0
token.c:548:processing result tokens.  marker is  ae(CONTROL/FEATUREEXTACK)
token.c:132:tds_process_default_tokens() marker is ae(CONTROL/FEATUREEXTACK)
token.c:252:Eating CONTROL/FEATUREEXTACK token
token.c:548:processing result tokens.  marker is  d1(ROW)
token.c:1944:tds_process_row(): reading column 0 
data.c:739:tds_get_data: type 38, varint size 1
data.c:783:tds_get_data(): wire column size is 2 
util.c:165:Changed query state from READING to PENDING
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e074c0, 0x7ffe79e074d0, 0x500)
util.c:165:Changed query state from PENDING to READING
token.c:548:processing result tokens.  marker is  fd(DONE)
token.c:2091:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2108:                rows_affected = 1
token.c:2111:tds_process_end() state set to TDS_IDLE
util.c:165:Changed query state from READING to IDLE
util.c:83:logic error: cannot change query state from IDLE to PENDING
util.c:165:Changed query state from IDLE to IDLE
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e074c0, 0x7ffe79e074d0, 0x500)
token.c:536:tds_process_tokens() state is COMPLETED
ct.c:685:leaving ct_connect() returning 1
ct.c:701:ct_cmd_alloc(0x18bdce0, 0x18bd930)
ct.c:236:ct_describe_cmd_state(0)
ct.c:236:ct_describe_cmd_state(0)
ct.c:224:setting command state to IDLE (from IDLE)
ct.c:717:ct_cmd_alloc() : allocating command list to head
ct.c:733:ct_command(0x18be350, 148, 0x7ffe79e076a0, -9, 16)
ct.c:869:_ct_initialise_cmd(0x18be350)
ct.c:236:ct_describe_cmd_state(0)
ct.c:236:ct_describe_cmd_state(0)
ct.c:224:setting command state to IDLE (from IDLE)
ct.c:4049:rpc_clear((nil))
ct.c:236:ct_describe_cmd_state(0)
ct.c:236:ct_describe_cmd_state(0)
ct.c:224:setting command state to IDLE (from IDLE)
ct.c:236:ct_describe_cmd_state(0)
ct.c:236:ct_describe_cmd_state(1)
ct.c:224:setting command state to BUILDING (from IDLE)
ct.c:733:ct_command(0x18be350, 148, 0x4ed740, -9, 32)
ct.c:236:ct_describe_cmd_state(1)
ct.c:236:ct_describe_cmd_state(2)
ct.c:224:setting command state to READY (from BUILDING)
ct.c:888:ct_send(0x18be350)
ct.c:893:ct_send() command_type = 148
mem.c:660:tds_free_all_results()
util.c:165:Changed query state from IDLE to WRITING
util.c:165:Changed query state from WRITING to PENDING
packet.c:742:Sending packet
0000 0f 01 00 18 00 00 00 00-21 0b 00 00 00 00 75 73 |........ !.....us|
0010 65 20 63 61 73 79 0a 0a-                        |e casy..|

ct.c:236:ct_describe_cmd_state(2)
ct.c:236:ct_describe_cmd_state(3)
ct.c:224:setting command state to SENT (from READY)
ct.c:1015:ct_send() succeeded
ct.c:1151:ct_results(0x18be350, 0x7ffe79e075bc)
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e073f8, 0x7ffe79e073fc, 0x6914)
util.c:165:Changed query state from PENDING to READING
packet.c:640:Received packet
0000 04 01 00 61 00 00 00 00-e3 0b 00 01 04 63 61 73 |...a.... ã....cas|
0010 79 04 63 61 73 79 e5 3f-00 45 16 00 00 01 0a 05 |y.casyå? .E......|
0020 5a 5a 5a 5a 5a 00 01 00-24 00 43 68 61 6e 67 65 |ZZZZZ... $.Change|
0030 64 20 64 61 74 61 62 61-73 65 20 63 6f 6e 74 65 |d databa se conte|
0040 78 74 20 74 6f 20 27 63-61 73 79 27 2e 0a 06 4d |xt to 'c asy'...M|
0050 4f 52 49 4e 49 00 01 00-fd 00 00 02 00 00 00 00 |ORINI... ý.......|
0060 00                     -                        |.|

token.c:548:processing result tokens.  marker is  e3(ENVCHANGE)
token.c:132:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:548:processing result tokens.  marker is  e5(EED)
token.c:132:tds_process_default_tokens() marker is e5(EED)
token.c:2354:tds_process_info() reading message 5701 from server
token.c:2426:tds_process_info() calling client msg handler
ctutil.c:141:_ct_handle_server_message(0x18bda40, 0x18bde20, 0x7ffe79e07270)
token.c:2443:tds_process_info() returning TDS_SUCCESS
token.c:548:processing result tokens.  marker is  fd(DONE)
token.c:2091:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2108:                rows_affected = 0
token.c:2111:tds_process_end() state set to TDS_IDLE
util.c:165:Changed query state from READING to IDLE
util.c:83:logic error: cannot change query state from IDLE to PENDING
util.c:165:Changed query state from IDLE to IDLE
ct.c:1215:ct_results() process_result_tokens returned 0 (type 4052) 
ct.c:1334:ct_results() results state = 0
ct.c:1335:ct_results() command type  = 148
ct.c:1336:ct_results() dynamic cmd   = 0
ct.c:1151:ct_results(0x18be350, 0x7ffe79e075bc)
ct.c:1151:ct_results(0x18be350, 0x7ffe79e0736c)
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e071a8, 0x7ffe79e071ac, 0x6914)
token.c:536:tds_process_tokens() state is COMPLETED
ct.c:1215:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:236:ct_describe_cmd_state(3)
ct.c:236:ct_describe_cmd_state(2)
ct.c:224:setting command state to READY (from SENT)
ct.c:733:ct_command(0x18be350, 148, 0x4edb80, -9, 16)
ct.c:869:_ct_initialise_cmd(0x18be350)
ct.c:236:ct_describe_cmd_state(2)
ct.c:236:ct_describe_cmd_state(0)
ct.c:224:setting command state to IDLE (from READY)
ct.c:4049:rpc_clear((nil))
ct.c:236:ct_describe_cmd_state(0)
ct.c:236:ct_describe_cmd_state(0)
ct.c:224:setting command state to IDLE (from IDLE)
ct.c:236:ct_describe_cmd_state(0)
ct.c:236:ct_describe_cmd_state(1)
ct.c:224:setting command state to BUILDING (from IDLE)
ct.c:733:ct_command(0x18be350, 148, 0x4ed740, -9, 32)
ct.c:236:ct_describe_cmd_state(1)
ct.c:236:ct_describe_cmd_state(2)
ct.c:224:setting command state to READY (from BUILDING)
ct.c:888:ct_send(0x18be350)
ct.c:893:ct_send() command_type = 148
mem.c:660:tds_free_all_results()
util.c:165:Changed query state from IDLE to WRITING
util.c:165:Changed query state from WRITING to PENDING
packet.c:742:Sending packet
0000 0f 01 00 59 00 00 00 00-21 4c 00 00 00 00 73 65 |...Y.... !L....se|
0010 6c 65 63 74 20 6e 61 6d-65 2c 74 79 70 65 20 66 |lect nam e,type f|
0020 72 6f 6d 20 73 79 73 6f-62 6a 65 63 74 73 20 77 |rom syso bjects w|
0030 68 65 72 65 20 74 79 70-65 20 69 6e 20 28 27 55 |here typ e in ('U|
0040 27 2c 27 53 27 2c 27 56-27 29 20 6f 72 64 65 72 |','S','V ') order|
0050 20 62 79 20 6e 61 6d 65-0a                      | by name .|

ct.c:236:ct_describe_cmd_state(2)
ct.c:236:ct_describe_cmd_state(3)
ct.c:224:setting command state to SENT (from READY)
ct.c:1015:ct_send() succeeded
ct.c:1151:ct_results(0x18be350, 0x7ffe79e0757c)
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e073b8, 0x7ffe79e073bc, 0x6914)
util.c:165:Changed query state from PENDING to READING
packet.c:640:Received packet
0000 04 00 08 00 00 00 00 00-61 4c 00 00 00 02 00 00 |........ aL......|
0010 04 63 61 73 79 03 64 62-6f 0a 73 79 73 6f 62 6a |.casy.db o.sysobj|
0020 65 63 74 73 04 6e 61 6d-65 10 00 00 00 2a 00 00 |ects.nam e....*..|
0030 00 27 ff 00 00 04 63 61-73 79 03 64 62 6f 0a 73 |.'ÿ...ca sy.dbo.s|
0040 79 73 6f 62 6a 65 63 74-73 04 74 79 70 65 10 00 |ysobject s.type..|
0050 00 00 01 00 00 00 2f 02-00 ae 02 00 00 00 a9 01 |....../. .®....©.|
0060 00 01 d1 05 41 32 46 41-51 02 55 20 d1 0b 41 62 |..Ñ.A2FA Q.U Ñ.Ab|
0070 66 72 61 67 65 55 73 65-72 02 55 20 d1 08 43 48 |frageUse r.U Ñ.CH|
0080 42 65 7a 69 72 6b 02 55-20 d1 0a 43 48 47 65 6d |Bezirk.U  Ñ.CHGem|
0090 65 69 6e 64 65 02 55 20-d1 08 43 48 4b 61 6e 74 |einde.U  Ñ.CHKant|
00a0 6f 6e 02 55 20 d1 06 43-48 50 4c 5a 31 02 55 20 |on.U Ñ.C HPLZ1.U |
00b0 d1 06 43 48 50 4c 5a 32-02 55 20 d1 0a 44 6f 6b |Ñ.CHPLZ2 .U Ñ.Dok|
00c0 75 41 41 72 74 65 6e 02-55 20 d1 0a 44 6f 6b 75 |uAArten. U Ñ.Doku|
00d0 49 41 72 74 65 6e 02 55-20 d1 09 44 6f 6b 75 49 |IArten.U  Ñ.DokuI|
00e0 64 65 6e 74 02 55 20 d1-0e 44 6f 6b 75 49 64 65 |dent.U Ñ .DokuIde|
00f0 6e 74 69 74 69 65 73 02-55 20 d1 08 44 6f 6b 75 |ntities. U Ñ.Doku|
0100 49 74 65 6d 02 55 20 d1-0a 44 6f 6b 75 52 41 72 |Item.U Ñ .DokuRAr|
0110 74 65 6e 02 55 20 d1 0c-44 6f 6b 75 52 65 6c 61 |ten.U Ñ. DokuRela|
0120 74 69 6f 6e 02 55 20 d1-08 44 6f 6b 75 54 65 78 |tion.U Ñ .DokuTex|
0130 74 02 55 20 d1 0d 44 72-75 63 6b 44 65 66 61 75 |t.U Ñ.Dr uckDefau|
0140 6c 74 73 02 55 20 d1 0e-44 72 75 63 6b 50 61 72 |lts.U Ñ. DruckPar|
0150 61 6d 65 74 65 72 02 55-20 d1 07 44 72 75 63 6b |ameter.U  Ñ.Druck|
0160 65 72 02 55 20 d1 0d 44-72 75 63 6b 65 72 47 72 |er.U Ñ.D ruckerGr|
0170 75 70 70 65 02 55 20 d1-0d 44 72 75 63 6b 65 72 |uppe.U Ñ .Drucker|
0180 53 70 65 72 72 65 02 55-20 d1 10 44 72 75 63 6b |Sperre.U  Ñ.Druck|
0190 65 72 5a 75 6f 72 64 6e-75 6e 67 02 55 20 d1 0c |erZuordn ung.U Ñ.|
01a0 45 42 69 6c 61 6e 7a 5f-67 61 61 70 02 55 20 d1 |EBilanz_ gaap.U Ñ|
01b0 0b 45 42 69 6c 61 6e 7a-5f 67 63 64 02 55 20 d1 |.EBilanz _gcd.U Ñ|
01c0 03 46 41 51 02 55 20 d1-06 46 41 51 32 52 4e 02 |.FAQ.U Ñ .FAQ2RN.|
01d0 55 20 d1 0e 46 43 44 42-43 61 74 65 67 6f 72 69 |U Ñ.FCDB Categori|
01e0 65 73 02 55 20 d1 15 46-43 44 42 43 6f 64 65 73 |es.U Ñ.F CDBCodes|
01f0 42 65 73 74 45 73 74 69-6d 61 74 65 02 55 20 d1 |BestEsti mate.U Ñ|
0200 0e 46 43 44 42 43 6f 6d-70 6f 6e 65 6e 74 73 02 |.FCDBCom ponents.|
0210 55 20 d1 13 46 43 44 42-43 6f 6d 70 6f 6e 65 6e |U Ñ.FCDB Componen|
0220 74 73 55 6e 69 74 73 02-55 20 d1 09 46 43 44 42 |tsUnits. U Ñ.FCDB|
0230 46 6f 6f 64 73 02 55 20-d1 13 46 43 44 42 46 6f |Foods.U  Ñ.FCDBFo|
0240 6f 64 73 43 6f 6d 70 6f-6e 65 6e 74 73 02 55 20 |odsCompo nents.U |
0250 d1 15 46 43 44 42 46 6f-6f 64 73 54 6f 43 61 74 |Ñ.FCDBFo odsToCat|
0260 65 67 6f 72 69 65 73 02-55 20 d1 04 46 6f 72 6d |egories. U Ñ.Form|
0270 02 55 20 d1 09 46 6f 72-6d 50 61 72 61 6d 02 55 |.U Ñ.For mParam.U|
0280 20 d1 0d 46 6f 72 6d 53-74 61 74 69 73 74 69 6b | Ñ.FormS tatistik|
0290 02 55 20 d1 13 46 6f 72-6d 53 74 61 74 69 73 74 |.U Ñ.For mStatist|
02a0 69 6b 44 65 74 61 69 6c-02 55 20 d1 08 46 6f 72 |ikDetail .U Ñ.For|
02b0 6d 54 65 78 74 02 55 20-d1 0b 46 6f 72 6d 54 65 |mText.U  Ñ.FormTe|
02c0 78 74 55 73 65 02 55 20-d1 0c 46 72 65 69 65 41 |xtUse.U  Ñ.FreieA|
02d0 6e 66 72 61 67 65 02 55-20 d1 12 46 72 65 69 65 |nfrage.U  Ñ.Freie|
02e0 41 6e 66 72 61 67 65 46-65 6c 64 65 72 02 55 20 |AnfrageF elder.U |
02f0 d1 08 47 48 53 5f 54 65-78 74 02 55 20 d1 08 47 |Ñ.GHS_Te xt.U Ñ.G|
0300 6c 6f 62 61 6c 65 73 02-55 20 d1 0f 47 72 75 70 |lobales. U Ñ.Grup|
0310 70 65 6e 52 65 63 68 74-65 50 48 02 55 20 d1 17 |penRecht ePH.U Ñ.|
0320 47 72 75 70 70 65 6e 52-65 63 68 74 65 50 48 5f |GruppenR echtePH_|
0330 48 69 73 74 6f 72 79 02-55 20 d1 0e 4b 6f 6e 73 |History. U Ñ.Kons|
0340 6f 6c 69 64 69 65 72 75-6e 67 02 55 20 d1 07 4c |olidieru ng.U Ñ.L|
0350 61 65 6e 64 65 72 02 55-20 d1 07 4c 6f 6b 61 6c |aender.U  Ñ.Lokal|
0360 65 73 02 55 20 d1 04 4d-61 69 6c 02 55 20 d1 07 |es.U Ñ.M ail.U Ñ.|
0370 4d 61 6e 64 61 6e 74 02-55 20 d1 0c 4d 6f 64 75 |Mandant. U Ñ.Modu|
0380 6c 45 69 6e 68 65 69 74-02 55 20 d1 06 4d 6f 64 |lEinheit .U Ñ.Mod|
0390 75 6c 65 02 55 20 d1 04-4e 61 76 69 02 55 20 d1 |ule.U Ñ. Navi.U Ñ|
03a0 0a 4e 61 76 69 4c 65 69-73 74 65 02 55 20 d1 0f |.NaviLei ste.U Ñ.|
03b0 4f 62 6a 65 63 74 44 69-72 65 63 74 6f 72 79 02 |ObjectDi rectory.|
03c0 55 20 d1 06 50 61 70 69-65 72 02 55 20 d1 0d 50 |U Ñ.Papi er.U Ñ.P|
03d0 6f 73 74 5a 45 42 55 44-61 74 65 6e 02 55 20 d1 |ostZEBUD aten.U Ñ|
03e0 06 50 72 6f 66 69 6c 02-55 20 d1 0a 50 72 6f 66 |.Profil. U Ñ.Prof|
03f0 69 6c 4b 6f 70 66 02 55-20 d1 10 52 65 63 68 74 |ilKopf.U  Ñ.Recht|
0400 65 44 65 66 69 6e 69 74-69 6f 6e 02 55 20 d1 0c |eDefinit ion.U Ñ.|
0410 52 65 6c 65 61 73 65 4e-6f 74 65 73 02 55 20 d1 |ReleaseN otes.U Ñ|
0420 0e 53 70 65 64 44 50 44-44 65 70 6f 74 73 31 02 |.SpedDPD Depots1.|
0430 55 20 d1 0c 53 70 65 64-44 50 44 4c 61 6e 64 31 |U Ñ.Sped DPDLand1|
0440 02 55 20 d1 0f 53 70 65-64 44 50 44 52 6f 75 74 |.U Ñ.Spe dDPDRout|
0450 69 6e 67 31 02 55 20 d1-0f 53 70 65 64 44 50 44 |ing1.U Ñ .SpedDPD|
0460 53 65 72 76 69 63 65 31-02 55 20 d1 13 53 70 65 |Service1 .U Ñ.Spe|
0470 64 44 50 44 53 65 72 76-69 63 65 49 6e 66 6f 31 |dDPDServ iceInfo1|
0480 02 55 20 d1 10 53 70 65-64 44 50 44 53 74 61 6e |.U Ñ.Spe dDPDStan|
0490 64 6f 72 74 31 02 55 20-d1 0f 53 70 65 64 44 50 |dort1.U  Ñ.SpedDP|
04a0 5f 47 52 4f 53 53 5f 44-41 02 55 20 d1 0a 53 70 |_GROSS_D A.U Ñ.Sp|
04b0 65 64 44 50 5f 49 4e 54-02 55 20 d1 0d 53 70 65 |edDP_INT .U Ñ.Spe|
04c0 64 44 50 5f 4f 52 54 5f-44 41 02 55 20 d1 0d 53 |dDP_ORT_ DA.U Ñ.S|
04d0 70 65 64 44 50 5f 4f 54-4c 5f 44 42 02 55 20 d1 |pedDP_OT L_DB.U Ñ|
04e0 0d 53 70 65 64 44 50 5f-50 4c 5a 5f 44 41 02 55 |.SpedDP_ PLZ_DA.U|
04f0 20 d1 0a 53 70 65 64 44-50 5f 52 4b 5a 02 55 20 | Ñ.SpedD P_RKZ.U |
0500 d1 0e 53 70 65 64 44 50-5f 53 54 52 41 5f 44 42 |Ñ.SpedDP _STRA_DB|
0510 02 55 20 d1 12 53 70 65-64 4e 61 63 68 76 65 72 |.U Ñ.Spe dNachver|
0520 66 6f 6c 67 75 6e 67 02-55 20 d1 0f 53 70 65 64 |folgung. U Ñ.Sped|
0530 54 4e 54 5f 45 78 70 72-65 73 73 02 55 20 d1 0f |TNT_Expr ess.U Ñ.|
0540 53 70 65 64 54 4e 54 5f-50 4c 5a 54 6f 75 72 02 |SpedTNT_ PLZTour.|
0550 55 20 d1 0e 53 70 65 64-54 4e 54 5f 53 6f 72 74 |U Ñ.Sped TNT_Sort|
0560 43 64 02 55 20 d1 0e 53-70 65 64 54 4f 46 52 6f |Cd.U Ñ.S pedTOFRo|
0570 75 74 69 6e 67 02 55 20-d1 08 53 70 72 61 63 68 |uting.U  Ñ.Sprach|
0580 65 6e 02 55 20 d1 0f 53-74 61 6e 64 61 72 64 44 |en.U Ñ.S tandardD|
0590 72 75 63 6b 65 72 02 55-20 d1 13 53 74 61 6e 64 |rucker.U  Ñ.Stand|
05a0 61 72 64 45 69 6e 73 74-65 6c 6c 75 6e 67 02 55 |ardEinst ellung.U|
05b0 20 d1 0d 53 74 61 6e 64-61 72 64 4c 69 73 74 65 | Ñ.Stand ardListe|
05c0 02 55 20 d1 17 53 74 61-6e 64 61 72 64 4c 69 73 |.U Ñ.Sta ndardLis|
05d0 74 65 6e 50 61 72 61 6d-65 74 65 72 02 55 20 d1 |tenParam eter.U Ñ|
05e0 0c 53 74 61 6e 64 61 72-64 54 65 78 74 02 55 20 |.Standar dText.U |
05f0 d1 0b 53 74 61 74 75 73-43 6f 64 65 73 02 55 20 |Ñ.Status Codes.U |
0600 d1 0f 53 77 69 66 74 57-61 65 68 72 75 6e 67 65 |Ñ.SwiftW aehrunge|
0610 6e 02 55 20 d1 0c 54 65-6d 70 54 61 62 6c 65 44 |n.U Ñ.Te mpTableD|
0620 65 66 02 55 20 d1 08 54-72 69 67 67 65 72 73 02 |ef.U Ñ.T riggers.|
0630 55 20 d1 08 55 73 65 72-41 75 74 68 02 55 20 d1 |U Ñ.User Auth.U Ñ|
0640 09 55 73 65 72 47 72 6f-75 70 02 55 20 d1 11 55 |.UserGro up.U Ñ.U|
0650 73 65 72 47 72 6f 75 70-5f 48 69 73 74 6f 72 79 |serGroup _History|
0660 02 55 20 d1 0b 55 73 65-72 4d 61 6e 64 61 6e 74 |.U Ñ.Use rMandant|
0670 02 55 20 d1 13 55 73 65-72 4d 61 6e 64 61 6e 74 |.U Ñ.Use rMandant|
0680 5f 48 69 73 74 6f 72 79-02 55 20 d1 0a 55 73 65 |_History .U Ñ.Use|
0690 72 52 69 67 68 74 73 02-55 20 d1 12 55 73 65 72 |rRights. U Ñ.User|
06a0 52 69 67 68 74 73 5f 48-69 73 74 6f 72 79 02 55 |Rights_H istory.U|
06b0 20 d1 09 55 73 65 72 6c-6f 67 69 6e 02 55 20 d1 | Ñ.Userl ogin.U Ñ|
06c0 11 55 73 65 72 6c 6f 67-69 6e 5f 48 69 73 74 6f |.Userlog in_Histo|
06d0 72 79 02 55 20 d1 05 55-73 65 72 73 02 55 20 d1 |ry.U Ñ.U sers.U Ñ|
06e0 0d 55 73 65 72 73 5f 48-69 73 74 6f 72 79 02 55 |.Users_H istory.U|
06f0 20 d1 08 56 61 72 69 61-62 6c 65 02 55 20 d1 0d | Ñ.Varia ble.U Ñ.|
0700 56 61 72 69 61 62 6c 65-6e 57 65 72 74 02 55 20 |Variable nWert.U |
0710 d1 0a 5a 65 72 74 69 66-69 6b 61 74 02 55 20 d1 |Ñ.Zertif ikat.U Ñ|
0720 09 69 74 73 67 6b 6b 41-44 52 02 55 20 d1 09 69 |.itsgkkA DR.U Ñ.i|
0730 74 73 67 6b 6b 42 4e 54-02 55 20 d1 09 69 74 73 |tsgkkBNT .U Ñ.its|
0740 67 6b 6b 42 54 53 02 55-20 d1 09 69 74 73 67 6b |gkkBTS.U  Ñ.itsgk|
0750 6b 45 42 53 02 55 20 d1-09 69 74 73 67 6b 6b 48 |kEBS.U Ñ .itsgkkH|
0760 44 52 02 55 20 d1 0a 69-74 73 67 6b 6b 4b 49 42 |DR.U Ñ.i tsgkkKIB|
0770 53 02 55 20 d1 09 69 74-73 67 6b 6b 55 4d 45 02 |S.U Ñ.it sgkkUME.|
0780 55 20 d1 09 69 74 73 67-6b 6b 55 4d 4c 02 55 20 |U Ñ.itsg kkUML.U |
0790 d1 09 69 74 73 67 6b 6b-56 53 53 02 55 20 d1 0d |Ñ.itsgkk VSS.U Ñ.|
07a0 73 79 73 61 6c 74 65 72-6e 61 74 65 73 02 53 20 |sysalter nates.S |
07b0 d1 0d 73 79 73 61 74 74-72 69 62 75 74 65 73 02 |Ñ.sysatt ributes.|
07c0 53 20 d1 0a 73 79 73 63-6f 6c 75 6d 6e 73 02 53 |S Ñ.sysc olumns.S|
07d0 20 d1 0b 73 79 73 63 6f-6d 6d 65 6e 74 73 02 53 | Ñ.sysco mments.S|
07e0 20 d1 0e 73 79 73 63 6f-6e 73 74 72 61 69 6e 74 | Ñ.sysco nstraint|
07f0 73 02 53 20 d1 0a 73 79-73 64 65 70 65 6e 64 73 |s.S Ñ.sy sdepends|

token.c:548:processing result tokens.  marker is  61(ROWFMT2)
token.c:577:calling  tds5_process_result2/1
token.c:1778:tds5_process_result2
mem.c:660:tds_free_all_results()
token.c:1802:num_cols=2
token.c:1868:col 0:
token.c:1869:	column_name=[name]
token.c:1875:	flags=10 utype=42 type=39 server type 39 varint=1
token.c:1879:	colsize=255 prec=0 scale=0
token.c:1868:col 1:
token.c:1869:	column_name=[type]
token.c:1875:	flags=10 utype=1 type=47 server type 47 varint=1
token.c:1879:	colsize=2 prec=0 scale=0
token.c:1882:tds5_process_result2(): exit
mem.c:529:tds_alloc_row()
mem.c:565:tds_alloc_row(): SUCCESS
token.c:579: tds5_process_result2() = 0
util.c:165:Changed query state from READING to PENDING
ct.c:1215:ct_results() process_result_tokens returned 0 (type 4049) 
token.c:533:tds_process_tokens(0x18bde20, 0x7ffe79e073b8, 0x7ffe79e073bc, 0x6a14)
util.c:165:Changed query state from PENDING to READING
token.c:548:processing result tokens.  marker is  ae(CONTROL/FEATUREEXTACK)
token.c:132:tds_process_default_tokens() marker is ae(CONTROL/FEATUREEXTACK)
token.c:252:Eating CONTROL/FEATUREEXTACK token
token.c:548:processing result tokens.  marker is  a9(ORDERBY)
token.c:132:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:252:Eating ORDERBY token
token.c:548:processing result tokens.  marker is  d1(ROW)
token.c:656:tds_process_tokens::SET_RETURN stopping on current token
util.c:165:Changed query state from READING to PENDING
ct.c:1215:ct_results() process_result_tokens returned 0 (type 4040) 
ct.c:2387:ct_res_info(0x18be350, 803, 0x7ffe79e0760c, -99999, (nil))
ct.c:2406:ct_res_info(): Number of columns is 2
ct.c:2327:ct_describe(0x18be350, 1, 0x7ffe79e07410)
ct.c:1925:_ct_get_client_type(type 39, user 42, size 255)
ct.c:2344:ct_describe() datafmt->datatype = 0 server type 39
log.c:196:Starting log file for FreeTDS 0.91
	on 2017-07-08 12:35:17 with debug flags 0x4fff.
iconv.c:330:tds_iconv_open(0x1428120, ISO-8859-1)
iconv.c:353:Using trivial iconv
iconv.c:187:local name for ISO-8859-1 is ISO-8859-1
iconv.c:187:local name for UTF-8 is UTF-8
iconv.c:187:local name for UCS-2LE is UCS-2LE
iconv.c:187:local name for UCS-2BE is UCS-2BE
iconv.c:349:setting up conversions for client charset "ISO-8859-1"
iconv.c:351:preparing iconv for "ISO-8859-1" <-> "UCS-2LE" conversion
iconv.c:391:preparing iconv for "ISO-8859-1" <-> "ISO-8859-1" conversion
iconv.c:394:tds_iconv_open: done
net.c:205:Connecting to 127.0.0.1 port 5012 (TDS version 5.0)
net.c:270:tds_open_socket: connect(2) returned "Operation now in progress"
net.c:310:tds_open_socket() succeeded
util.c:156:Changed query state from DEAD to IDLE
net.c:741:Sending packet
0000 02 00 02 00 00 00 00 00-62 73 61 2e 6f 70 61 67 |........ bsa.opag|
0010 2e 63 68 00 00 00 00 00-00 00 00 00 00 00 00 00 |.ch..... ........|
0020 00 00 00 00 00 00 0b 6b-6f 6d 6d 65 72 7a 00 00 |.......k ommerz..|
0030 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0040 00 00 00 00 00 07 67 75-72 75 67 75 72 75 00 00 |......gu ruguru..|
0050 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0060 00 00 00 00 08 34 31 30-34 00 00 00 00 00 00 00 |.....410 4.......|
0070 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0080 00 00 00 04 03 01 06 0a-09 01 00 00 00 00 00 00 |........ ........|
0090 00 00 00 00 4f 50 47 00-00 00 00 00 00 00 00 00 |....OPG. ........|
00a0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
00b0 00 00 03 54 55 4e 4e 45-4c 5f 4d 4f 52 49 4e 49 |...TUNNE L_MORINI|
00c0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
00d0 00 0d 00 08 67 75 72 75-67 75 72 75 00 00 00 00 |....guru guru....|
00e0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
00f0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0100 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0110 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0120 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0130 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0140 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0150 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0160 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0170 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0180 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
0190 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01a0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01b0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01c0 00 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |........ ........|
01d0 00 0a 05 00 00 00 43 54-2d 4c 69 62 72 61 72 79 |......CT -Library|
01e0 0a 05 00 00 00 00 0d 11-75 73 5f 65 6e 67 6c 69 |........ us_engli|
01f0 73 68 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |sh...... ........|

net.c:741:Sending packet
0000 02 01 00 61 00 00 00 00-00 00 00 00 00 00 0a 00 |...a.... ........|
0010 00 00 00 00 00 00 00 00-00 00 00 00 00 75 74 66 |........ .....utf|
0020 38 00 00 00 00 00 00 00-00 00 00 00 00 00 00 00 |8....... ........|
0030 00 00 00 00 00 00 00 00-00 00 00 04 01 35 31 32 |........ .....512|
0040 00 00 00 03 00 00 00 00-e2 16 00 01 09 00 08 0e |........ â.......|
0050 6d 7f ff ff ff fe 02 09-00 00 00 00 02 68 00 00 |m.ÿÿÿþ.. .....h..|
0060 00                     -                        |.|

token.c:328:tds_process_login_tokens()
net.c:555:Received header
0000 04 01 00 f2 00 00 00 00-                        |...ò....|

net.c:609:Received packet
0000 04 01 00 f2 00 00 00 00-e3 0c 00 03 04 75 74 66 |...ò.... ã....utf|
0010 38 05 69 73 6f 5f 31 e5-4b 00 48 16 00 00 01 0a |8.iso_1å K.H.....|
0020 05 5a 5a 5a 5a 5a 00 01-00 30 00 43 68 61 6e 67 |.ZZZZZ.. .0.Chang|
0030 65 64 20 63 6c 69 65 6e-74 20 63 68 61 72 61 63 |ed clien t charac|
0040 74 65 72 20 73 65 74 20-73 65 74 74 69 6e 67 20 |ter set  setting |
0050 74 6f 20 27 75 74 66 38-27 2e 0a 06 4d 4f 52 49 |to 'utf8 '...MORI|
0060 4e 49 00 00 00 e3 0d 00-01 04 63 61 73 79 06 6d |NI...ã.. ..casy.m|
0070 61 73 74 65 72 e5 3f 00-45 16 00 00 02 0a 05 5a |asterå?. E......Z|
0080 5a 5a 5a 5a 00 01 00 24-00 43 68 61 6e 67 65 64 |ZZZZ...$ .Changed|
0090 20 64 61 74 61 62 61 73-65 20 63 6f 6e 74 65 78 | databas e contex|
00a0 74 20 74 6f 20 27 63 61-73 79 27 2e 0a 06 4d 4f |t to 'ca sy'...MO|
00b0 52 49 4e 49 00 00 00 e3-06 00 04 03 35 31 32 00 |RINI...ã ....512.|
00c0 ad 0d 00 05 05 00 00 00-03 41 53 45 0f 07 00 00 |­....... .ASE....|
00d0 e2 16 00 01 09 00 08 0a-61 7f ff ff ff e6 02 09 |â....... a.ÿÿÿæ..|
00e0 00 00 00 00 02 00 00 00-00 fd 00 00 02 00 18 00 |........ .ý......|
00f0 00 00                  -                        |..|

token.c:337:looking for login token, got  e3(ENVCHANGE)
token.c:122:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:2494:server indicated charset change to "utf8"
iconv.c:988:setting server single-byte charset to "UTF-8"
token.c:337:looking for login token, got  e5(EED)
token.c:122:tds_process_default_tokens() marker is e5(EED)
token.c:2589:tds_process_msg() reading message 5704 from server
token.c:2662:tds_process_msg() calling client msg handler
ctutil.c:153:_ct_handle_server_message(0x1427d70, 0x1428120, 0x7fff77c33fa0)
token.c:2675:tds_process_msg() returning TDS_SUCCEED
token.c:337:looking for login token, got  e3(ENVCHANGE)
token.c:122:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:337:looking for login token, got  e5(EED)
token.c:122:tds_process_default_tokens() marker is e5(EED)
token.c:2589:tds_process_msg() reading message 5701 from server
token.c:2662:tds_process_msg() calling client msg handler
ctutil.c:153:_ct_handle_server_message(0x1427d70, 0x1428120, 0x7fff77c33fa0)
token.c:2675:tds_process_msg() returning TDS_SUCCEED
token.c:337:looking for login token, got  e3(ENVCHANGE)
token.c:122:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:2478:changing block size from  to 512
token.c:337:looking for login token, got  ad(LOGINACK)
token.c:373:server reports TDS version 5.0.0.0
token.c:375:Product name for 0x5000000 is unknown
token.c:337:looking for login token, got  e2(CAPABILITY)
token.c:122:tds_process_default_tokens() marker is e2(CAPABILITY)
token.c:337:looking for login token, got  fd(DONE)
token.c:122:tds_process_default_tokens() marker is fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
token.c:2371:                rows_affected = 24
token.c:438:tds_process_login_tokens() returning TDS_SUCCEED
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 21 00 00 00 00-21 14 00 00 00 00 73 65 |...!.... !.....se|
0010 74 20 74 65 78 74 73 69-7a 65 20 36 34 35 31 32 |t textsi ze 64512|
0020 20                     -                        | |

token.c:540:tds_process_tokens(0x1428120, 0x7fff77c34098, 0x7fff77c3409c, 0x100)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 11 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 01 00 11 00 00 00 00-fd 00 00 02 00 00 00 00 |........ ý.......|
0010 00                     -                        |.|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c34098, 0x7fff77c3409c, 0x100)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:650:leaving ct_connect() returning 1
ct.c:667:ct_cmd_alloc(0x1427f40, 0x1427c60)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:684:ct_cmd_alloc() : allocating command list to head
ct.c:705:ct_command(0x14285c0, 148, 0x7fff77c342e0, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 18 00 00 00 00-21 0b 00 00 00 00 75 73 |........ !.....us|
0010 65 20 63 61 73 79 0a 0a-                        |e casy..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3420c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c34038, 0x7fff77c3403c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 61 00 00 00 00-                        |...a....|

net.c:609:Received packet
0000 04 01 00 61 00 00 00 00-e3 0b 00 01 04 63 61 73 |...a.... ã....cas|
0010 79 04 63 61 73 79 e5 3f-00 45 16 00 00 01 0a 05 |y.casyå? .E......|
0020 5a 5a 5a 5a 5a 00 01 00-24 00 43 68 61 6e 67 65 |ZZZZZ... $.Change|
0030 64 20 64 61 74 61 62 61-73 65 20 63 6f 6e 74 65 |d databa se conte|
0040 78 74 20 74 6f 20 27 63-61 73 79 27 2e 0a 06 4d |xt to 'c asy'...M|
0050 4f 52 49 4e 49 00 01 00-fd 00 00 02 00 00 00 00 |ORINI... ý.......|
0060 00                     -                        |.|

token.c:555:processing result tokens.  marker is  e3(ENVCHANGE)
token.c:122:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:555:processing result tokens.  marker is  e5(EED)
token.c:122:tds_process_default_tokens() marker is e5(EED)
token.c:2589:tds_process_msg() reading message 5701 from server
token.c:2662:tds_process_msg() calling client msg handler
ctutil.c:153:_ct_handle_server_message(0x1427d70, 0x1428120, 0x7fff77c33ec0)
token.c:2675:tds_process_msg() returning TDS_SUCCEED
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3420c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33dd8, 0x7fff77c33ddc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x4eb520, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 59 00 00 00 00-21 4c 00 00 00 00 73 65 |...Y.... !L....se|
0010 6c 65 63 74 20 6e 61 6d-65 2c 74 79 70 65 20 66 |lect nam e,type f|
0020 72 6f 6d 20 73 79 73 6f-62 6a 65 63 74 73 20 77 |rom syso bjects w|
0030 68 65 72 65 20 74 79 70-65 20 69 6e 20 28 27 55 |here typ e in ('U|
0040 27 2c 27 53 27 2c 27 56-27 29 20 6f 72 64 65 72 |','S','V ') order|
0050 20 62 79 20 6e 61 6d 65-0a                      | by name .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c341cc)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33ff8, 0x7fff77c33ffc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 52 00 00 00 02 00 00 |........ aR......|
0010 04 63 61 73 79 03 64 62-6f 0a 73 79 73 6f 62 6a |.casy.db o.sysobj|
0020 65 63 74 73 04 6e 61 6d-65 10 00 00 00 2a 00 00 |ects.nam e....*..|
0030 00 af fe 01 00 00 00 00-04 63 61 73 79 03 64 62 |.¯þ..... .casy.db|
0040 6f 0a 73 79 73 6f 62 6a-65 63 74 73 04 74 79 70 |o.sysobj ects.typ|
0050 65 10 00 00 00 01 00 00-00 af 04 00 00 00 00 ae |e....... .¯.....®|
0060 02 00 00 00 a9 01 00 01-d1 05 00 00 00 41 32 46 |....©... Ñ....A2F|
0070 41 51 02 00 00 00 55 20-d1 0b 00 00 00 41 62 66 |AQ....U  Ñ....Abf|
0080 72 61 67 65 55 73 65 72-02 00 00 00 55 20 d1 08 |rageUser ....U Ñ.|
0090 00 00 00 43 48 42 65 7a-69 72 6b 02 00 00 00 55 |...CHBez irk....U|
00a0 20 d1 0a 00 00 00 43 48-47 65 6d 65 69 6e 64 65 | Ñ....CH Gemeinde|
00b0 02 00 00 00 55 20 d1 08-00 00 00 43 48 4b 61 6e |....U Ñ. ...CHKan|
00c0 74 6f 6e 02 00 00 00 55-20 d1 06 00 00 00 43 48 |ton....U  Ñ....CH|
00d0 50 4c 5a 31 02 00 00 00-55 20 d1 06 00 00 00 43 |PLZ1.... U Ñ....C|
00e0 48 50 4c 5a 32 02 00 00-00 55 20 d1 0a 00 00 00 |HPLZ2... .U Ñ....|
00f0 44 6f 6b 75 41 41 72 74-65 6e 02 00 00 00 55 20 |DokuAArt en....U |
0100 d1 0a 00 00 00 44 6f 6b-75 49 41 72 74 65 6e 02 |Ñ....Dok uIArten.|
0110 00 00 00 55 20 d1 09 00-00 00 44 6f 6b 75 49 64 |...U Ñ.. ..DokuId|
0120 65 6e 74 02 00 00 00 55-20 d1 0e 00 00 00 44 6f |ent....U  Ñ....Do|
0130 6b 75 49 64 65 6e 74 69-74 69 65 73 02 00 00 00 |kuIdenti ties....|
0140 55 20 d1 08 00 00 00 44-6f 6b 75 49 74 65 6d 02 |U Ñ....D okuItem.|
0150 00 00 00 55 20 d1 0a 00-00 00 44 6f 6b 75 52 41 |...U Ñ.. ..DokuRA|
0160 72 74 65 6e 02 00 00 00-55 20 d1 0c 00 00 00 44 |rten.... U Ñ....D|
0170 6f 6b 75 52 65 6c 61 74-69 6f 6e 02 00 00 00 55 |okuRelat ion....U|
0180 20 d1 08 00 00 00 44 6f-6b 75 54 65 78 74 02 00 | Ñ....Do kuText..|
0190 00 00 55 20 d1 0d 00 00-00 44 72 75 63 6b 44 65 |..U Ñ... .DruckDe|
01a0 66 61 75 6c 74 73 02 00-00 00 55 20 d1 0e 00 00 |faults.. ..U Ñ...|
01b0 00 44 72 75 63 6b 50 61-72 61 6d 65 74 65 72 02 |.DruckPa rameter.|
01c0 00 00 00 55 20 d1 07 00-00 00 44 72 75 63 6b 65 |...U Ñ.. ..Drucke|
01d0 72 02 00 00 00 55 20 d1-0d 00 00 00 44 72 75 63 |r....U Ñ ....Druc|
01e0 6b 65 72 47 72 75 70 70-65 02 00 00 00 55 20 d1 |kerGrupp e....U Ñ|
01f0 0d 00 00 00 44 72 75 63-6b 65 72 53 70 65 72 72 |....Druc kerSperr|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[name]
token.c:1844:	flags=10 utype=42 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[type]
token.c:1844:	flags=10 utype=1 type=47 varint=5
token.c:1847:	colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c3425c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c34110)
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c34110)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33f6c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33d98, 0x7fff77c33d9c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c33ffc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c33e00)
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x7fff77c33eb0, 0x142a500, (nil), 0x1429b70)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c33e00)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x7fff77c33eb0, 0x1428490, (nil), 0x1429ba8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 02 00 00 00 55 20 d1 |........ e....U Ñ|
0010 10 00 00 00 44 72 75 63-6b 65 72 5a 75 6f 72 64 |....Druc kerZuord|
0020 6e 75 6e 67 02 00 00 00-55 20 d1 0c 00 00 00 45 |nung.... U Ñ....E|
0030 42 69 6c 61 6e 7a 5f 67-61 61 70 02 00 00 00 55 |Bilanz_g aap....U|
0040 20 d1 0b 00 00 00 45 42-69 6c 61 6e 7a 5f 67 63 | Ñ....EB ilanz_gc|
0050 64 02 00 00 00 55 20 d1-03 00 00 00 46 41 51 02 |d....U Ñ ....FAQ.|
0060 00 00 00 55 20 d1 06 00-00 00 46 41 51 32 52 4e |...U Ñ.. ..FAQ2RN|
0070 02 00 00 00 55 20 d1 0e-00 00 00 46 43 44 42 43 |....U Ñ. ...FCDBC|
0080 61 74 65 67 6f 72 69 65-73 02 00 00 00 55 20 d1 |ategorie s....U Ñ|
0090 15 00 00 00 46 43 44 42-43 6f 64 65 73 42 65 73 |....FCDB CodesBes|
00a0 74 45 73 74 69 6d 61 74-65 02 00 00 00 55 20 d1 |tEstimat e....U Ñ|
00b0 0e 00 00 00 46 43 44 42-43 6f 6d 70 6f 6e 65 6e |....FCDB Componen|
00c0 74 73 02 00 00 00 55 20-d1 13 00 00 00 46 43 44 |ts....U  Ñ....FCD|
00d0 42 43 6f 6d 70 6f 6e 65-6e 74 73 55 6e 69 74 73 |BCompone ntsUnits|
00e0 02 00 00 00 55 20 d1 09-00 00 00 46 43 44 42 46 |....U Ñ. ...FCDBF|
00f0 6f 6f 64 73 02 00 00 00-55 20 d1 13 00 00 00 46 |oods.... U Ñ....F|
0100 43 44 42 46 6f 6f 64 73-43 6f 6d 70 6f 6e 65 6e |CDBFoods Componen|
0110 74 73 02 00 00 00 55 20-d1 15 00 00 00 46 43 44 |ts....U  Ñ....FCD|
0120 42 46 6f 6f 64 73 54 6f-43 61 74 65 67 6f 72 69 |BFoodsTo Categori|
0130 65 73 02 00 00 00 55 20-d1 04 00 00 00 46 6f 72 |es....U  Ñ....For|
0140 6d 02 00 00 00 55 20 d1-09 00 00 00 46 6f 72 6d |m....U Ñ ....Form|
0150 50 61 72 61 6d 02 00 00-00 55 20 d1 0d 00 00 00 |Param... .U Ñ....|
0160 46 6f 72 6d 53 74 61 74-69 73 74 69 6b 02 00 00 |FormStat istik...|
0170 00 55 20 d1 13 00 00 00-46 6f 72 6d 53 74 61 74 |.U Ñ.... FormStat|
0180 69 73 74 69 6b 44 65 74-61 69 6c 02 00 00 00 55 |istikDet ail....U|
0190 20 d1 08 00 00 00 46 6f-72 6d 54 65 78 74 02 00 | Ñ....Fo rmText..|
01a0 00 00 55 20 d1 0b 00 00-00 46 6f 72 6d 54 65 78 |..U Ñ... .FormTex|
01b0 74 55 73 65 02 00 00 00-55 20 d1 0c 00 00 00 46 |tUse.... U Ñ....F|
01c0 72 65 69 65 41 6e 66 72-61 67 65 02 00 00 00 55 |reieAnfr age....U|
01d0 20 d1 12 00 00 00 46 72-65 69 65 41 6e 66 72 61 | Ñ....Fr eieAnfra|
01e0 67 65 46 65 6c 64 65 72-02 00 00 00 55 20 d1 08 |geFelder ....U Ñ.|
01f0 00 00 00 47 48 53 5f 54-65 78 74 02 00 00 00 55 |...GHS_T ext....U|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 d1 08 00 00 00 47 6c |........  Ñ....Gl|
0010 6f 62 61 6c 65 73 02 00-00 00 55 20 d1 0f 00 00 |obales.. ..U Ñ...|
0020 00 47 72 75 70 70 65 6e-52 65 63 68 74 65 50 48 |.Gruppen RechtePH|
0030 02 00 00 00 55 20 d1 17-00 00 00 47 72 75 70 70 |....U Ñ. ...Grupp|
0040 65 6e 52 65 63 68 74 65-50 48 5f 48 69 73 74 6f |enRechte PH_Histo|
0050 72 79 02 00 00 00 55 20-d1 0e 00 00 00 4b 6f 6e |ry....U  Ñ....Kon|
0060 73 6f 6c 69 64 69 65 72-75 6e 67 02 00 00 00 55 |solidier ung....U|
0070 20 d1 07 00 00 00 4c 61-65 6e 64 65 72 02 00 00 | Ñ....La ender...|
0080 00 55 20 d1 07 00 00 00-4c 6f 6b 61 6c 65 73 02 |.U Ñ.... Lokales.|
0090 00 00 00 55 20 d1 04 00-00 00 4d 61 69 6c 02 00 |...U Ñ.. ..Mail..|
00a0 00 00 55 20 d1 07 00 00-00 4d 61 6e 64 61 6e 74 |..U Ñ... .Mandant|
00b0 02 00 00 00 55 20 d1 0c-00 00 00 4d 6f 64 75 6c |....U Ñ. ...Modul|
00c0 45 69 6e 68 65 69 74 02-00 00 00 55 20 d1 06 00 |Einheit. ...U Ñ..|
00d0 00 00 4d 6f 64 75 6c 65-02 00 00 00 55 20 d1 04 |..Module ....U Ñ.|
00e0 00 00 00 4e 61 76 69 02-00 00 00 55 20 d1 0a 00 |...Navi. ...U Ñ..|
00f0 00 00 4e 61 76 69 4c 65-69 73 74 65 02 00 00 00 |..NaviLe iste....|
0100 55 20 d1 0f 00 00 00 4f-62 6a 65 63 74 44 69 72 |U Ñ....O bjectDir|
0110 65 63 74 6f 72 79 02 00-00 00 55 20 d1 06 00 00 |ectory.. ..U Ñ...|
0120 00 50 61 70 69 65 72 02-00 00 00 55 20 d1 0d 00 |.Papier. ...U Ñ..|
0130 00 00 50 6f 73 74 5a 45-42 55 44 61 74 65 6e 02 |..PostZE BUDaten.|
0140 00 00 00 55 20 d1 06 00-00 00 50 72 6f 66 69 6c |...U Ñ.. ..Profil|
0150 02 00 00 00 55 20 d1 0a-00 00 00 50 72 6f 66 69 |....U Ñ. ...Profi|
0160 6c 4b 6f 70 66 02 00 00-00 55 20 d1 10 00 00 00 |lKopf... .U Ñ....|
0170 52 65 63 68 74 65 44 65-66 69 6e 69 74 69 6f 6e |RechteDe finition|
0180 02 00 00 00 55 20 d1 0c-00 00 00 52 65 6c 65 61 |....U Ñ. ...Relea|
0190 73 65 4e 6f 74 65 73 02-00 00 00 55 20 d1 0e 00 |seNotes. ...U Ñ..|
01a0 00 00 53 70 65 64 44 50-44 44 65 70 6f 74 73 31 |..SpedDP DDepots1|
01b0 02 00 00 00 55 20 d1 0c-00 00 00 53 70 65 64 44 |....U Ñ. ...SpedD|
01c0 50 44 4c 61 6e 64 31 02-00 00 00 55 20 d1 0f 00 |PDLand1. ...U Ñ..|
01d0 00 00 53 70 65 64 44 50-44 52 6f 75 74 69 6e 67 |..SpedDP DRouting|
01e0 31 02 00 00 00 55 20 d1-0f 00 00 00 53 70 65 64 |1....U Ñ ....Sped|
01f0 44 50 44 53 65 72 76 69-63 65 31 02 00 00 00 55 |DPDServi ce1....U|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 d1 13 00 00 00 53 70 |........  Ñ....Sp|
0010 65 64 44 50 44 53 65 72-76 69 63 65 49 6e 66 6f |edDPDSer viceInfo|
0020 31 02 00 00 00 55 20 d1-10 00 00 00 53 70 65 64 |1....U Ñ ....Sped|
0030 44 50 44 53 74 61 6e 64-6f 72 74 31 02 00 00 00 |DPDStand ort1....|
0040 55 20 d1 0f 00 00 00 53-70 65 64 44 50 5f 47 52 |U Ñ....S pedDP_GR|
0050 4f 53 53 5f 44 41 02 00-00 00 55 20 d1 0a 00 00 |OSS_DA.. ..U Ñ...|
0060 00 53 70 65 64 44 50 5f-49 4e 54 02 00 00 00 55 |.SpedDP_ INT....U|
0070 20 d1 0d 00 00 00 53 70-65 64 44 50 5f 4f 52 54 | Ñ....Sp edDP_ORT|
0080 5f 44 41 02 00 00 00 55-20 d1 0d 00 00 00 53 70 |_DA....U  Ñ....Sp|
0090 65 64 44 50 5f 4f 54 4c-5f 44 42 02 00 00 00 55 |edDP_OTL _DB....U|
00a0 20 d1 0d 00 00 00 53 70-65 64 44 50 5f 50 4c 5a | Ñ....Sp edDP_PLZ|
00b0 5f 44 41 02 00 00 00 55-20 d1 0a 00 00 00 53 70 |_DA....U  Ñ....Sp|
00c0 65 64 44 50 5f 52 4b 5a-02 00 00 00 55 20 d1 0e |edDP_RKZ ....U Ñ.|
00d0 00 00 00 53 70 65 64 44-50 5f 53 54 52 41 5f 44 |...SpedD P_STRA_D|
00e0 42 02 00 00 00 55 20 d1-12 00 00 00 53 70 65 64 |B....U Ñ ....Sped|
00f0 4e 61 63 68 76 65 72 66-6f 6c 67 75 6e 67 02 00 |Nachverf olgung..|
0100 00 00 55 20 d1 0f 00 00-00 53 70 65 64 54 4e 54 |..U Ñ... .SpedTNT|
0110 5f 45 78 70 72 65 73 73-02 00 00 00 55 20 d1 0f |_Express ....U Ñ.|
0120 00 00 00 53 70 65 64 54-4e 54 5f 50 4c 5a 54 6f |...SpedT NT_PLZTo|
0130 75 72 02 00 00 00 55 20-d1 0e 00 00 00 53 70 65 |ur....U  Ñ....Spe|
0140 64 54 4e 54 5f 53 6f 72-74 43 64 02 00 00 00 55 |dTNT_Sor tCd....U|
0150 20 d1 0e 00 00 00 53 70-65 64 54 4f 46 52 6f 75 | Ñ....Sp edTOFRou|
0160 74 69 6e 67 02 00 00 00-55 20 d1 08 00 00 00 53 |ting.... U Ñ....S|
0170 70 72 61 63 68 65 6e 02-00 00 00 55 20 d1 0f 00 |prachen. ...U Ñ..|
0180 00 00 53 74 61 6e 64 61-72 64 44 72 75 63 6b 65 |..Standa rdDrucke|
0190 72 02 00 00 00 55 20 d1-13 00 00 00 53 74 61 6e |r....U Ñ ....Stan|
01a0 64 61 72 64 45 69 6e 73-74 65 6c 6c 75 6e 67 02 |dardEins tellung.|
01b0 00 00 00 55 20 d1 0d 00-00 00 53 74 61 6e 64 61 |...U Ñ.. ..Standa|
01c0 72 64 4c 69 73 74 65 02-00 00 00 55 20 d1 17 00 |rdListe. ...U Ñ..|
01d0 00 00 53 74 61 6e 64 61-72 64 4c 69 73 74 65 6e |..Standa rdListen|
01e0 50 61 72 61 6d 65 74 65-72 02 00 00 00 55 20 d1 |Paramete r....U Ñ|
01f0 0c 00 00 00 53 74 61 6e-64 61 72 64 54 65 78 74 |....Stan dardText|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-02 00 00 00 55 20 d1 0b |........ ....U Ñ.|
0010 00 00 00 53 74 61 74 75-73 43 6f 64 65 73 02 00 |...Statu sCodes..|
0020 00 00 55 20 d1 0f 00 00-00 53 77 69 66 74 57 61 |..U Ñ... .SwiftWa|
0030 65 68 72 75 6e 67 65 6e-02 00 00 00 55 20 d1 0c |ehrungen ....U Ñ.|
0040 00 00 00 54 65 6d 70 54-61 62 6c 65 44 65 66 02 |...TempT ableDef.|
0050 00 00 00 55 20 d1 08 00-00 00 54 72 69 67 67 65 |...U Ñ.. ..Trigge|
0060 72 73 02 00 00 00 55 20-d1 08 00 00 00 55 73 65 |rs....U  Ñ....Use|
0070 72 41 75 74 68 02 00 00-00 55 20 d1 09 00 00 00 |rAuth... .U Ñ....|
0080 55 73 65 72 47 72 6f 75-70 02 00 00 00 55 20 d1 |UserGrou p....U Ñ|
0090 11 00 00 00 55 73 65 72-47 72 6f 75 70 5f 48 69 |....User Group_Hi|
00a0 73 74 6f 72 79 02 00 00-00 55 20 d1 0b 00 00 00 |story... .U Ñ....|
00b0 55 73 65 72 4d 61 6e 64-61 6e 74 02 00 00 00 55 |UserMand ant....U|
00c0 20 d1 13 00 00 00 55 73-65 72 4d 61 6e 64 61 6e | Ñ....Us erMandan|
00d0 74 5f 48 69 73 74 6f 72-79 02 00 00 00 55 20 d1 |t_Histor y....U Ñ|
00e0 0a 00 00 00 55 73 65 72-52 69 67 68 74 73 02 00 |....User Rights..|
00f0 00 00 55 20 d1 12 00 00-00 55 73 65 72 52 69 67 |..U Ñ... .UserRig|
0100 68 74 73 5f 48 69 73 74-6f 72 79 02 00 00 00 55 |hts_Hist ory....U|
0110 20 d1 09 00 00 00 55 73-65 72 6c 6f 67 69 6e 02 | Ñ....Us erlogin.|
0120 00 00 00 55 20 d1 11 00-00 00 55 73 65 72 6c 6f |...U Ñ.. ..Userlo|
0130 67 69 6e 5f 48 69 73 74-6f 72 79 02 00 00 00 55 |gin_Hist ory....U|
0140 20 d1 05 00 00 00 55 73-65 72 73 02 00 00 00 55 | Ñ....Us ers....U|
0150 20 d1 0d 00 00 00 55 73-65 72 73 5f 48 69 73 74 | Ñ....Us ers_Hist|
0160 6f 72 79 02 00 00 00 55-20 d1 08 00 00 00 56 61 |ory....U  Ñ....Va|
0170 72 69 61 62 6c 65 02 00-00 00 55 20 d1 0d 00 00 |riable.. ..U Ñ...|
0180 00 56 61 72 69 61 62 6c-65 6e 57 65 72 74 02 00 |.Variabl enWert..|
0190 00 00 55 20 d1 0a 00 00-00 5a 65 72 74 69 66 69 |..U Ñ... .Zertifi|
01a0 6b 61 74 02 00 00 00 55-20 d1 09 00 00 00 69 74 |kat....U  Ñ....it|
01b0 73 67 6b 6b 41 44 52 02-00 00 00 55 20 d1 09 00 |sgkkADR. ...U Ñ..|
01c0 00 00 69 74 73 67 6b 6b-42 4e 54 02 00 00 00 55 |..itsgkk BNT....U|
01d0 20 d1 09 00 00 00 69 74-73 67 6b 6b 42 54 53 02 | Ñ....it sgkkBTS.|
01e0 00 00 00 55 20 d1 09 00-00 00 69 74 73 67 6b 6b |...U Ñ.. ..itsgkk|
01f0 45 42 53 02 00 00 00 55-20 d1 09 00 00 00 69 74 |EBS....U  Ñ....it|

token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 67 6b 6b 48 44 52 02 |........ sgkkHDR.|
0010 00 00 00 55 20 d1 0a 00-00 00 69 74 73 67 6b 6b |...U Ñ.. ..itsgkk|
0020 4b 49 42 53 02 00 00 00-55 20 d1 09 00 00 00 69 |KIBS.... U Ñ....i|
0030 74 73 67 6b 6b 55 4d 45-02 00 00 00 55 20 d1 09 |tsgkkUME ....U Ñ.|
0040 00 00 00 69 74 73 67 6b-6b 55 4d 4c 02 00 00 00 |...itsgk kUML....|
0050 55 20 d1 09 00 00 00 69-74 73 67 6b 6b 56 53 53 |U Ñ....i tsgkkVSS|
0060 02 00 00 00 55 20 d1 0d-00 00 00 73 79 73 61 6c |....U Ñ. ...sysal|
0070 74 65 72 6e 61 74 65 73-02 00 00 00 53 20 d1 0d |ternates ....S Ñ.|
0080 00 00 00 73 79 73 61 74-74 72 69 62 75 74 65 73 |...sysat tributes|
0090 02 00 00 00 53 20 d1 0a-00 00 00 73 79 73 63 6f |....S Ñ. ...sysco|
00a0 6c 75 6d 6e 73 02 00 00-00 53 20 d1 0b 00 00 00 |lumns... .S Ñ....|
00b0 73 79 73 63 6f 6d 6d 65-6e 74 73 02 00 00 00 53 |syscomme nts....S|
00c0 20 d1 0e 00 00 00 73 79-73 63 6f 6e 73 74 72 61 | Ñ....sy sconstra|
00d0 69 6e 74 73 02 00 00 00-53 20 d1 0a 00 00 00 73 |ints.... S Ñ....s|
00e0 79 73 64 65 70 65 6e 64-73 02 00 00 00 53 20 d1 |ysdepend s....S Ñ|
00f0 0e 00 00 00 73 79 73 65-6e 63 72 79 70 74 6b 65 |....syse ncryptke|
0100 79 73 02 00 00 00 53 20-d1 07 00 00 00 73 79 73 |ys....S  Ñ....sys|
0110 67 61 6d 73 02 00 00 00-53 20 d1 0a 00 00 00 73 |gams.... S Ñ....s|
0120 79 73 69 6e 64 65 78 65-73 02 00 00 00 53 20 d1 |ysindexe s....S Ñ|
0130 07 00 00 00 73 79 73 6a-61 72 73 02 00 00 00 53 |....sysj ars....S|
0140 20 d1 07 00 00 00 73 79-73 6b 65 79 73 02 00 00 | Ñ....sy skeys...|
0150 00 53 20 d1 07 00 00 00-73 79 73 6c 6f 67 73 02 |.S Ñ.... syslogs.|
0160 00 00 00 53 20 d1 0a 00-00 00 73 79 73 6f 62 6a |...S Ñ.. ..sysobj|
0170 65 63 74 73 02 00 00 00-53 20 d1 10 00 00 00 73 |ects.... S Ñ....s|
0180 79 73 70 61 72 74 69 74-69 6f 6e 6b 65 79 73 02 |yspartit ionkeys.|
0190 00 00 00 53 20 d1 0d 00-00 00 73 79 73 70 61 72 |...S Ñ.. ..syspar|
01a0 74 69 74 69 6f 6e 73 02-00 00 00 53 20 d1 0d 00 |titions. ...S Ñ..|
01b0 00 00 73 79 73 70 72 6f-63 65 64 75 72 65 73 02 |..syspro cedures.|
01c0 00 00 00 53 20 d1 0b 00-00 00 73 79 73 70 72 6f |...S Ñ.. ..syspro|
01d0 74 65 63 74 73 02 00 00-00 53 20 d1 0f 00 00 00 |tects... .S Ñ....|
01e0 73 79 73 71 75 65 72 79-6d 65 74 72 69 63 73 02 |sysquery metrics.|
01f0 00 00 00 56 20 d1 0d 00-00 00 73 79 73 71 75 65 |...V Ñ.. ..sysque|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
net.c:555:Received header
0000 04 01 01 0d 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 01 01 0d 00 00 00 00-72 79 70 6c 61 6e 73 02 |........ ryplans.|
0010 00 00 00 53 20 d1 0d 00-00 00 73 79 73 72 65 66 |...S Ñ.. ..sysref|
0020 65 72 65 6e 63 65 73 02-00 00 00 53 20 d1 08 00 |erences. ...S Ñ..|
0030 00 00 73 79 73 72 6f 6c-65 73 02 00 00 00 53 20 |..sysrol es....S |
0040 d1 0b 00 00 00 73 79 73-73 65 67 6d 65 6e 74 73 |Ñ....sys segments|
0050 02 00 00 00 53 20 d1 09-00 00 00 73 79 73 73 6c |....S Ñ. ...syssl|
0060 69 63 65 73 02 00 00 00-53 20 d1 0d 00 00 00 73 |ices.... S Ñ....s|
0070 79 73 73 74 61 74 69 73-74 69 63 73 02 00 00 00 |ysstatis tics....|
0080 53 20 d1 0b 00 00 00 73-79 73 74 61 62 73 74 61 |S Ñ....s ystabsta|
0090 74 73 02 00 00 00 53 20-d1 0d 00 00 00 73 79 73 |ts....S  Ñ....sys|
00a0 74 68 72 65 73 68 6f 6c-64 73 02 00 00 00 53 20 |threshol ds....S |
00b0 d1 08 00 00 00 73 79 73-74 79 70 65 73 02 00 00 |Ñ....sys types...|
00c0 00 53 20 d1 0f 00 00 00-73 79 73 75 73 65 72 6d |.S Ñ.... sysuserm|
00d0 65 73 73 61 67 65 73 02-00 00 00 53 20 d1 08 00 |essages. ...S Ñ..|
00e0 00 00 73 79 73 75 73 65-72 73 02 00 00 00 53 20 |..sysuse rs....S |
00f0 d1 09 00 00 00 73 79 73-78 74 79 70 65 73 02 00 |Ñ....sys xtypes..|
0100 00 00 53 20 fd 10 00 02-00 8d 00 00 00          |..S ý... .....|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341cc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428eb0, 0x7fff77c340b0, 0x142a500, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c34000, 0x1428ed0, 0x7fff77c340b0, 0x1428490, 0x7fff77c33ffc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3425c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c34258)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c341c8, 0x7fff77c341cc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 141
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33f6c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33d98, 0x7fff77c33d9c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x4eb29c, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 1f 00 00 00 00-21 12 00 00 00 00 73 65 |........ !.....se|
0010 6c 65 63 74 20 40 40 76-65 72 73 69 6f 6e 0a    |lect @@v ersion.|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c344bc)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342e8, 0x7fff77c342ec, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 b6 00 00 00 00-                        |...¶....|

net.c:609:Received packet
0000 04 01 00 b6 00 00 00 00-61 15 00 00 00 01 00 00 |...¶.... a.......|
0010 00 00 00 00 30 00 00 00-02 00 00 00 af fe 01 00 |....0... ....¯þ..|
0020 00 00 ae 01 00 00 d1 82-00 00 00 41 64 61 70 74 |..®...Ñ. ...Adapt|
0030 69 76 65 20 53 65 72 76-65 72 20 45 6e 74 65 72 |ive Serv er Enter|
0040 70 72 69 73 65 2f 31 35-2e 37 2e 30 2f 45 42 46 |prise/15 .7.0/EBF|
0050 20 31 39 38 30 35 20 53-4d 50 20 45 53 44 23 30 | 19805 S MP ESD#0|
0060 31 20 2f 50 2f 78 38 36-5f 36 34 2f 45 6e 74 65 |1 /P/x86 _64/Ente|
0070 72 70 72 69 73 65 20 4c-69 6e 75 78 2f 61 73 65 |rprise L inux/ase|
0080 61 73 61 70 2f 32 39 31-38 2f 36 34 2d 62 69 74 |asap/291 8/64-bit|
0090 2f 46 42 4f 2f 57 65 64-20 46 65 62 20 20 38 20 |/FBO/Wed  Feb  8 |
00a0 30 37 3a 35 30 3a 32 38-20 32 30 31 32 fd 10 00 |07:50:28  2012ý..|
00b0 02 00 01 00 00 00      -                        |......|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c3454c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c34400)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c34088, 0x7fff77c3408c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c342ec, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c340f0)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x7fff77c341a0, 0x1429b90, (nil), 0x14296d0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3454c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c344bc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 130 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 130
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c342f0, 0x1429fb0, 0x7fff77c343a0, 0x1429b90, 0x7fff77c342ec)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (130 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3454c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c34548)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c344b8, 0x7fff77c344bc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3425c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c34088, 0x7fff77c3408c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x7fff77c343c0, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 18 00 00 00 00-21 0b 00 00 00 00 75 73 |........ !.....us|
0010 65 20 63 61 73 79 0a 0a-                        |e casy..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c342ec)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c34118, 0x7fff77c3411c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 61 00 00 00 00-                        |...a....|

net.c:609:Received packet
0000 04 01 00 61 00 00 00 00-e3 0b 00 01 04 63 61 73 |...a.... ã....cas|
0010 79 04 63 61 73 79 e5 3f-00 45 16 00 00 01 0a 05 |y.casyå? .E......|
0020 5a 5a 5a 5a 5a 00 01 00-24 00 43 68 61 6e 67 65 |ZZZZZ... $.Change|
0030 64 20 64 61 74 61 62 61-73 65 20 63 6f 6e 74 65 |d databa se conte|
0040 78 74 20 74 6f 20 27 63-61 73 79 27 2e 0a 06 4d |xt to 'c asy'...M|
0050 4f 52 49 4e 49 00 01 00-fd 00 00 02 00 00 00 00 |ORINI... ý.......|
0060 00                     -                        |.|

token.c:555:processing result tokens.  marker is  e3(ENVCHANGE)
token.c:122:tds_process_default_tokens() marker is e3(ENVCHANGE)
token.c:555:processing result tokens.  marker is  e5(EED)
token.c:122:tds_process_default_tokens() marker is e5(EED)
token.c:2589:tds_process_msg() reading message 5701 from server
token.c:2662:tds_process_msg() calling client msg handler
ctutil.c:153:_ct_handle_server_message(0x1427d70, 0x1428120, 0x7fff77c33fa0)
token.c:2675:tds_process_msg() returning TDS_SUCCEED
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c342ec)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3408c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33eb8, 0x7fff77c33ebc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x4eb520, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 59 00 00 00 00-21 4c 00 00 00 00 73 65 |...Y.... !L....se|
0010 6c 65 63 74 20 6e 61 6d-65 2c 74 79 70 65 20 66 |lect nam e,type f|
0020 72 6f 6d 20 73 79 73 6f-62 6a 65 63 74 73 20 77 |rom syso bjects w|
0030 68 65 72 65 20 74 79 70-65 20 69 6e 20 28 27 55 |here typ e in ('U|
0040 27 2c 27 53 27 2c 27 56-27 29 20 6f 72 64 65 72 |','S','V ') order|
0050 20 62 79 20 6e 61 6d 65-0a                      | by name .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c342ac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c340d8, 0x7fff77c340dc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 52 00 00 00 02 00 00 |........ aR......|
0010 04 63 61 73 79 03 64 62-6f 0a 73 79 73 6f 62 6a |.casy.db o.sysobj|
0020 65 63 74 73 04 6e 61 6d-65 10 00 00 00 2a 00 00 |ects.nam e....*..|
0030 00 af fe 01 00 00 00 00-04 63 61 73 79 03 64 62 |.¯þ..... .casy.db|
0040 6f 0a 73 79 73 6f 62 6a-65 63 74 73 04 74 79 70 |o.sysobj ects.typ|
0050 65 10 00 00 00 01 00 00-00 af 04 00 00 00 00 ae |e....... .¯.....®|
0060 02 00 00 00 a9 01 00 01-d1 05 00 00 00 41 32 46 |....©... Ñ....A2F|
0070 41 51 02 00 00 00 55 20-d1 0b 00 00 00 41 62 66 |AQ....U  Ñ....Abf|
0080 72 61 67 65 55 73 65 72-02 00 00 00 55 20 d1 08 |rageUser ....U Ñ.|
0090 00 00 00 43 48 42 65 7a-69 72 6b 02 00 00 00 55 |...CHBez irk....U|
00a0 20 d1 0a 00 00 00 43 48-47 65 6d 65 69 6e 64 65 | Ñ....CH Gemeinde|
00b0 02 00 00 00 55 20 d1 08-00 00 00 43 48 4b 61 6e |....U Ñ. ...CHKan|
00c0 74 6f 6e 02 00 00 00 55-20 d1 06 00 00 00 43 48 |ton....U  Ñ....CH|
00d0 50 4c 5a 31 02 00 00 00-55 20 d1 06 00 00 00 43 |PLZ1.... U Ñ....C|
00e0 48 50 4c 5a 32 02 00 00-00 55 20 d1 0a 00 00 00 |HPLZ2... .U Ñ....|
00f0 44 6f 6b 75 41 41 72 74-65 6e 02 00 00 00 55 20 |DokuAArt en....U |
0100 d1 0a 00 00 00 44 6f 6b-75 49 41 72 74 65 6e 02 |Ñ....Dok uIArten.|
0110 00 00 00 55 20 d1 09 00-00 00 44 6f 6b 75 49 64 |...U Ñ.. ..DokuId|
0120 65 6e 74 02 00 00 00 55-20 d1 0e 00 00 00 44 6f |ent....U  Ñ....Do|
0130 6b 75 49 64 65 6e 74 69-74 69 65 73 02 00 00 00 |kuIdenti ties....|
0140 55 20 d1 08 00 00 00 44-6f 6b 75 49 74 65 6d 02 |U Ñ....D okuItem.|
0150 00 00 00 55 20 d1 0a 00-00 00 44 6f 6b 75 52 41 |...U Ñ.. ..DokuRA|
0160 72 74 65 6e 02 00 00 00-55 20 d1 0c 00 00 00 44 |rten.... U Ñ....D|
0170 6f 6b 75 52 65 6c 61 74-69 6f 6e 02 00 00 00 55 |okuRelat ion....U|
0180 20 d1 08 00 00 00 44 6f-6b 75 54 65 78 74 02 00 | Ñ....Do kuText..|
0190 00 00 55 20 d1 0d 00 00-00 44 72 75 63 6b 44 65 |..U Ñ... .DruckDe|
01a0 66 61 75 6c 74 73 02 00-00 00 55 20 d1 0e 00 00 |faults.. ..U Ñ...|
01b0 00 44 72 75 63 6b 50 61-72 61 6d 65 74 65 72 02 |.DruckPa rameter.|
01c0 00 00 00 55 20 d1 07 00-00 00 44 72 75 63 6b 65 |...U Ñ.. ..Drucke|
01d0 72 02 00 00 00 55 20 d1-0d 00 00 00 44 72 75 63 |r....U Ñ ....Druc|
01e0 6b 65 72 47 72 75 70 70-65 02 00 00 00 55 20 d1 |kerGrupp e....U Ñ|
01f0 0d 00 00 00 44 72 75 63-6b 65 72 53 70 65 72 72 |....Druc kerSperr|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[name]
token.c:1844:	flags=10 utype=42 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[type]
token.c:1844:	flags=10 utype=1 type=47 varint=5
token.c:1847:	colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c3433c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c341f0)
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c341f0)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3404c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33e78, 0x7fff77c33e7c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c340dc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c33ee0)
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x7fff77c33f90, 0x14296b0, (nil), 0x142a470)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c33ee0)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x7fff77c33f90, 0x1429ad0, (nil), 0x142a4a8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 02 00 00 00 55 20 d1 |........ e....U Ñ|
0010 10 00 00 00 44 72 75 63-6b 65 72 5a 75 6f 72 64 |....Druc kerZuord|
0020 6e 75 6e 67 02 00 00 00-55 20 d1 0c 00 00 00 45 |nung.... U Ñ....E|
0030 42 69 6c 61 6e 7a 5f 67-61 61 70 02 00 00 00 55 |Bilanz_g aap....U|
0040 20 d1 0b 00 00 00 45 42-69 6c 61 6e 7a 5f 67 63 | Ñ....EB ilanz_gc|
0050 64 02 00 00 00 55 20 d1-03 00 00 00 46 41 51 02 |d....U Ñ ....FAQ.|
0060 00 00 00 55 20 d1 06 00-00 00 46 41 51 32 52 4e |...U Ñ.. ..FAQ2RN|
0070 02 00 00 00 55 20 d1 0e-00 00 00 46 43 44 42 43 |....U Ñ. ...FCDBC|
0080 61 74 65 67 6f 72 69 65-73 02 00 00 00 55 20 d1 |ategorie s....U Ñ|
0090 15 00 00 00 46 43 44 42-43 6f 64 65 73 42 65 73 |....FCDB CodesBes|
00a0 74 45 73 74 69 6d 61 74-65 02 00 00 00 55 20 d1 |tEstimat e....U Ñ|
00b0 0e 00 00 00 46 43 44 42-43 6f 6d 70 6f 6e 65 6e |....FCDB Componen|
00c0 74 73 02 00 00 00 55 20-d1 13 00 00 00 46 43 44 |ts....U  Ñ....FCD|
00d0 42 43 6f 6d 70 6f 6e 65-6e 74 73 55 6e 69 74 73 |BCompone ntsUnits|
00e0 02 00 00 00 55 20 d1 09-00 00 00 46 43 44 42 46 |....U Ñ. ...FCDBF|
00f0 6f 6f 64 73 02 00 00 00-55 20 d1 13 00 00 00 46 |oods.... U Ñ....F|
0100 43 44 42 46 6f 6f 64 73-43 6f 6d 70 6f 6e 65 6e |CDBFoods Componen|
0110 74 73 02 00 00 00 55 20-d1 15 00 00 00 46 43 44 |ts....U  Ñ....FCD|
0120 42 46 6f 6f 64 73 54 6f-43 61 74 65 67 6f 72 69 |BFoodsTo Categori|
0130 65 73 02 00 00 00 55 20-d1 04 00 00 00 46 6f 72 |es....U  Ñ....For|
0140 6d 02 00 00 00 55 20 d1-09 00 00 00 46 6f 72 6d |m....U Ñ ....Form|
0150 50 61 72 61 6d 02 00 00-00 55 20 d1 0d 00 00 00 |Param... .U Ñ....|
0160 46 6f 72 6d 53 74 61 74-69 73 74 69 6b 02 00 00 |FormStat istik...|
0170 00 55 20 d1 13 00 00 00-46 6f 72 6d 53 74 61 74 |.U Ñ.... FormStat|
0180 69 73 74 69 6b 44 65 74-61 69 6c 02 00 00 00 55 |istikDet ail....U|
0190 20 d1 08 00 00 00 46 6f-72 6d 54 65 78 74 02 00 | Ñ....Fo rmText..|
01a0 00 00 55 20 d1 0b 00 00-00 46 6f 72 6d 54 65 78 |..U Ñ... .FormTex|
01b0 74 55 73 65 02 00 00 00-55 20 d1 0c 00 00 00 46 |tUse.... U Ñ....F|
01c0 72 65 69 65 41 6e 66 72-61 67 65 02 00 00 00 55 |reieAnfr age....U|
01d0 20 d1 12 00 00 00 46 72-65 69 65 41 6e 66 72 61 | Ñ....Fr eieAnfra|
01e0 67 65 46 65 6c 64 65 72-02 00 00 00 55 20 d1 08 |geFelder ....U Ñ.|
01f0 00 00 00 47 48 53 5f 54-65 78 74 02 00 00 00 55 |...GHS_T ext....U|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 d1 08 00 00 00 47 6c |........  Ñ....Gl|
0010 6f 62 61 6c 65 73 02 00-00 00 55 20 d1 0f 00 00 |obales.. ..U Ñ...|
0020 00 47 72 75 70 70 65 6e-52 65 63 68 74 65 50 48 |.Gruppen RechtePH|
0030 02 00 00 00 55 20 d1 17-00 00 00 47 72 75 70 70 |....U Ñ. ...Grupp|
0040 65 6e 52 65 63 68 74 65-50 48 5f 48 69 73 74 6f |enRechte PH_Histo|
0050 72 79 02 00 00 00 55 20-d1 0e 00 00 00 4b 6f 6e |ry....U  Ñ....Kon|
0060 73 6f 6c 69 64 69 65 72-75 6e 67 02 00 00 00 55 |solidier ung....U|
0070 20 d1 07 00 00 00 4c 61-65 6e 64 65 72 02 00 00 | Ñ....La ender...|
0080 00 55 20 d1 07 00 00 00-4c 6f 6b 61 6c 65 73 02 |.U Ñ.... Lokales.|
0090 00 00 00 55 20 d1 04 00-00 00 4d 61 69 6c 02 00 |...U Ñ.. ..Mail..|
00a0 00 00 55 20 d1 07 00 00-00 4d 61 6e 64 61 6e 74 |..U Ñ... .Mandant|
00b0 02 00 00 00 55 20 d1 0c-00 00 00 4d 6f 64 75 6c |....U Ñ. ...Modul|
00c0 45 69 6e 68 65 69 74 02-00 00 00 55 20 d1 06 00 |Einheit. ...U Ñ..|
00d0 00 00 4d 6f 64 75 6c 65-02 00 00 00 55 20 d1 04 |..Module ....U Ñ.|
00e0 00 00 00 4e 61 76 69 02-00 00 00 55 20 d1 0a 00 |...Navi. ...U Ñ..|
00f0 00 00 4e 61 76 69 4c 65-69 73 74 65 02 00 00 00 |..NaviLe iste....|
0100 55 20 d1 0f 00 00 00 4f-62 6a 65 63 74 44 69 72 |U Ñ....O bjectDir|
0110 65 63 74 6f 72 79 02 00-00 00 55 20 d1 06 00 00 |ectory.. ..U Ñ...|
0120 00 50 61 70 69 65 72 02-00 00 00 55 20 d1 0d 00 |.Papier. ...U Ñ..|
0130 00 00 50 6f 73 74 5a 45-42 55 44 61 74 65 6e 02 |..PostZE BUDaten.|
0140 00 00 00 55 20 d1 06 00-00 00 50 72 6f 66 69 6c |...U Ñ.. ..Profil|
0150 02 00 00 00 55 20 d1 0a-00 00 00 50 72 6f 66 69 |....U Ñ. ...Profi|
0160 6c 4b 6f 70 66 02 00 00-00 55 20 d1 10 00 00 00 |lKopf... .U Ñ....|
0170 52 65 63 68 74 65 44 65-66 69 6e 69 74 69 6f 6e |RechteDe finition|
0180 02 00 00 00 55 20 d1 0c-00 00 00 52 65 6c 65 61 |....U Ñ. ...Relea|
0190 73 65 4e 6f 74 65 73 02-00 00 00 55 20 d1 0e 00 |seNotes. ...U Ñ..|
01a0 00 00 53 70 65 64 44 50-44 44 65 70 6f 74 73 31 |..SpedDP DDepots1|
01b0 02 00 00 00 55 20 d1 0c-00 00 00 53 70 65 64 44 |....U Ñ. ...SpedD|
01c0 50 44 4c 61 6e 64 31 02-00 00 00 55 20 d1 0f 00 |PDLand1. ...U Ñ..|
01d0 00 00 53 70 65 64 44 50-44 52 6f 75 74 69 6e 67 |..SpedDP DRouting|
01e0 31 02 00 00 00 55 20 d1-0f 00 00 00 53 70 65 64 |1....U Ñ ....Sped|
01f0 44 50 44 53 65 72 76 69-63 65 31 02 00 00 00 55 |DPDServi ce1....U|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 d1 13 00 00 00 53 70 |........  Ñ....Sp|
0010 65 64 44 50 44 53 65 72-76 69 63 65 49 6e 66 6f |edDPDSer viceInfo|
0020 31 02 00 00 00 55 20 d1-10 00 00 00 53 70 65 64 |1....U Ñ ....Sped|
0030 44 50 44 53 74 61 6e 64-6f 72 74 31 02 00 00 00 |DPDStand ort1....|
0040 55 20 d1 0f 00 00 00 53-70 65 64 44 50 5f 47 52 |U Ñ....S pedDP_GR|
0050 4f 53 53 5f 44 41 02 00-00 00 55 20 d1 0a 00 00 |OSS_DA.. ..U Ñ...|
0060 00 53 70 65 64 44 50 5f-49 4e 54 02 00 00 00 55 |.SpedDP_ INT....U|
0070 20 d1 0d 00 00 00 53 70-65 64 44 50 5f 4f 52 54 | Ñ....Sp edDP_ORT|
0080 5f 44 41 02 00 00 00 55-20 d1 0d 00 00 00 53 70 |_DA....U  Ñ....Sp|
0090 65 64 44 50 5f 4f 54 4c-5f 44 42 02 00 00 00 55 |edDP_OTL _DB....U|
00a0 20 d1 0d 00 00 00 53 70-65 64 44 50 5f 50 4c 5a | Ñ....Sp edDP_PLZ|
00b0 5f 44 41 02 00 00 00 55-20 d1 0a 00 00 00 53 70 |_DA....U  Ñ....Sp|
00c0 65 64 44 50 5f 52 4b 5a-02 00 00 00 55 20 d1 0e |edDP_RKZ ....U Ñ.|
00d0 00 00 00 53 70 65 64 44-50 5f 53 54 52 41 5f 44 |...SpedD P_STRA_D|
00e0 42 02 00 00 00 55 20 d1-12 00 00 00 53 70 65 64 |B....U Ñ ....Sped|
00f0 4e 61 63 68 76 65 72 66-6f 6c 67 75 6e 67 02 00 |Nachverf olgung..|
0100 00 00 55 20 d1 0f 00 00-00 53 70 65 64 54 4e 54 |..U Ñ... .SpedTNT|
0110 5f 45 78 70 72 65 73 73-02 00 00 00 55 20 d1 0f |_Express ....U Ñ.|
0120 00 00 00 53 70 65 64 54-4e 54 5f 50 4c 5a 54 6f |...SpedT NT_PLZTo|
0130 75 72 02 00 00 00 55 20-d1 0e 00 00 00 53 70 65 |ur....U  Ñ....Spe|
0140 64 54 4e 54 5f 53 6f 72-74 43 64 02 00 00 00 55 |dTNT_Sor tCd....U|
0150 20 d1 0e 00 00 00 53 70-65 64 54 4f 46 52 6f 75 | Ñ....Sp edTOFRou|
0160 74 69 6e 67 02 00 00 00-55 20 d1 08 00 00 00 53 |ting.... U Ñ....S|
0170 70 72 61 63 68 65 6e 02-00 00 00 55 20 d1 0f 00 |prachen. ...U Ñ..|
0180 00 00 53 74 61 6e 64 61-72 64 44 72 75 63 6b 65 |..Standa rdDrucke|
0190 72 02 00 00 00 55 20 d1-13 00 00 00 53 74 61 6e |r....U Ñ ....Stan|
01a0 64 61 72 64 45 69 6e 73-74 65 6c 6c 75 6e 67 02 |dardEins tellung.|
01b0 00 00 00 55 20 d1 0d 00-00 00 53 74 61 6e 64 61 |...U Ñ.. ..Standa|
01c0 72 64 4c 69 73 74 65 02-00 00 00 55 20 d1 17 00 |rdListe. ...U Ñ..|
01d0 00 00 53 74 61 6e 64 61-72 64 4c 69 73 74 65 6e |..Standa rdListen|
01e0 50 61 72 61 6d 65 74 65-72 02 00 00 00 55 20 d1 |Paramete r....U Ñ|
01f0 0c 00 00 00 53 74 61 6e-64 61 72 64 54 65 78 74 |....Stan dardText|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-02 00 00 00 55 20 d1 0b |........ ....U Ñ.|
0010 00 00 00 53 74 61 74 75-73 43 6f 64 65 73 02 00 |...Statu sCodes..|
0020 00 00 55 20 d1 0f 00 00-00 53 77 69 66 74 57 61 |..U Ñ... .SwiftWa|
0030 65 68 72 75 6e 67 65 6e-02 00 00 00 55 20 d1 0c |ehrungen ....U Ñ.|
0040 00 00 00 54 65 6d 70 54-61 62 6c 65 44 65 66 02 |...TempT ableDef.|
0050 00 00 00 55 20 d1 08 00-00 00 54 72 69 67 67 65 |...U Ñ.. ..Trigge|
0060 72 73 02 00 00 00 55 20-d1 08 00 00 00 55 73 65 |rs....U  Ñ....Use|
0070 72 41 75 74 68 02 00 00-00 55 20 d1 09 00 00 00 |rAuth... .U Ñ....|
0080 55 73 65 72 47 72 6f 75-70 02 00 00 00 55 20 d1 |UserGrou p....U Ñ|
0090 11 00 00 00 55 73 65 72-47 72 6f 75 70 5f 48 69 |....User Group_Hi|
00a0 73 74 6f 72 79 02 00 00-00 55 20 d1 0b 00 00 00 |story... .U Ñ....|
00b0 55 73 65 72 4d 61 6e 64-61 6e 74 02 00 00 00 55 |UserMand ant....U|
00c0 20 d1 13 00 00 00 55 73-65 72 4d 61 6e 64 61 6e | Ñ....Us erMandan|
00d0 74 5f 48 69 73 74 6f 72-79 02 00 00 00 55 20 d1 |t_Histor y....U Ñ|
00e0 0a 00 00 00 55 73 65 72-52 69 67 68 74 73 02 00 |....User Rights..|
00f0 00 00 55 20 d1 12 00 00-00 55 73 65 72 52 69 67 |..U Ñ... .UserRig|
0100 68 74 73 5f 48 69 73 74-6f 72 79 02 00 00 00 55 |hts_Hist ory....U|
0110 20 d1 09 00 00 00 55 73-65 72 6c 6f 67 69 6e 02 | Ñ....Us erlogin.|
0120 00 00 00 55 20 d1 11 00-00 00 55 73 65 72 6c 6f |...U Ñ.. ..Userlo|
0130 67 69 6e 5f 48 69 73 74-6f 72 79 02 00 00 00 55 |gin_Hist ory....U|
0140 20 d1 05 00 00 00 55 73-65 72 73 02 00 00 00 55 | Ñ....Us ers....U|
0150 20 d1 0d 00 00 00 55 73-65 72 73 5f 48 69 73 74 | Ñ....Us ers_Hist|
0160 6f 72 79 02 00 00 00 55-20 d1 08 00 00 00 56 61 |ory....U  Ñ....Va|
0170 72 69 61 62 6c 65 02 00-00 00 55 20 d1 0d 00 00 |riable.. ..U Ñ...|
0180 00 56 61 72 69 61 62 6c-65 6e 57 65 72 74 02 00 |.Variabl enWert..|
0190 00 00 55 20 d1 0a 00 00-00 5a 65 72 74 69 66 69 |..U Ñ... .Zertifi|
01a0 6b 61 74 02 00 00 00 55-20 d1 09 00 00 00 69 74 |kat....U  Ñ....it|
01b0 73 67 6b 6b 41 44 52 02-00 00 00 55 20 d1 09 00 |sgkkADR. ...U Ñ..|
01c0 00 00 69 74 73 67 6b 6b-42 4e 54 02 00 00 00 55 |..itsgkk BNT....U|
01d0 20 d1 09 00 00 00 69 74-73 67 6b 6b 42 54 53 02 | Ñ....it sgkkBTS.|
01e0 00 00 00 55 20 d1 09 00-00 00 69 74 73 67 6b 6b |...U Ñ.. ..itsgkk|
01f0 45 42 53 02 00 00 00 55-20 d1 09 00 00 00 69 74 |EBS....U  Ñ....it|

token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 67 6b 6b 48 44 52 02 |........ sgkkHDR.|
0010 00 00 00 55 20 d1 0a 00-00 00 69 74 73 67 6b 6b |...U Ñ.. ..itsgkk|
0020 4b 49 42 53 02 00 00 00-55 20 d1 09 00 00 00 69 |KIBS.... U Ñ....i|
0030 74 73 67 6b 6b 55 4d 45-02 00 00 00 55 20 d1 09 |tsgkkUME ....U Ñ.|
0040 00 00 00 69 74 73 67 6b-6b 55 4d 4c 02 00 00 00 |...itsgk kUML....|
0050 55 20 d1 09 00 00 00 69-74 73 67 6b 6b 56 53 53 |U Ñ....i tsgkkVSS|
0060 02 00 00 00 55 20 d1 0d-00 00 00 73 79 73 61 6c |....U Ñ. ...sysal|
0070 74 65 72 6e 61 74 65 73-02 00 00 00 53 20 d1 0d |ternates ....S Ñ.|
0080 00 00 00 73 79 73 61 74-74 72 69 62 75 74 65 73 |...sysat tributes|
0090 02 00 00 00 53 20 d1 0a-00 00 00 73 79 73 63 6f |....S Ñ. ...sysco|
00a0 6c 75 6d 6e 73 02 00 00-00 53 20 d1 0b 00 00 00 |lumns... .S Ñ....|
00b0 73 79 73 63 6f 6d 6d 65-6e 74 73 02 00 00 00 53 |syscomme nts....S|
00c0 20 d1 0e 00 00 00 73 79-73 63 6f 6e 73 74 72 61 | Ñ....sy sconstra|
00d0 69 6e 74 73 02 00 00 00-53 20 d1 0a 00 00 00 73 |ints.... S Ñ....s|
00e0 79 73 64 65 70 65 6e 64-73 02 00 00 00 53 20 d1 |ysdepend s....S Ñ|
00f0 0e 00 00 00 73 79 73 65-6e 63 72 79 70 74 6b 65 |....syse ncryptke|
0100 79 73 02 00 00 00 53 20-d1 07 00 00 00 73 79 73 |ys....S  Ñ....sys|
0110 67 61 6d 73 02 00 00 00-53 20 d1 0a 00 00 00 73 |gams.... S Ñ....s|
0120 79 73 69 6e 64 65 78 65-73 02 00 00 00 53 20 d1 |ysindexe s....S Ñ|
0130 07 00 00 00 73 79 73 6a-61 72 73 02 00 00 00 53 |....sysj ars....S|
0140 20 d1 07 00 00 00 73 79-73 6b 65 79 73 02 00 00 | Ñ....sy skeys...|
0150 00 53 20 d1 07 00 00 00-73 79 73 6c 6f 67 73 02 |.S Ñ.... syslogs.|
0160 00 00 00 53 20 d1 0a 00-00 00 73 79 73 6f 62 6a |...S Ñ.. ..sysobj|
0170 65 63 74 73 02 00 00 00-53 20 d1 10 00 00 00 73 |ects.... S Ñ....s|
0180 79 73 70 61 72 74 69 74-69 6f 6e 6b 65 79 73 02 |yspartit ionkeys.|
0190 00 00 00 53 20 d1 0d 00-00 00 73 79 73 70 61 72 |...S Ñ.. ..syspar|
01a0 74 69 74 69 6f 6e 73 02-00 00 00 53 20 d1 0d 00 |titions. ...S Ñ..|
01b0 00 00 73 79 73 70 72 6f-63 65 64 75 72 65 73 02 |..syspro cedures.|
01c0 00 00 00 53 20 d1 0b 00-00 00 73 79 73 70 72 6f |...S Ñ.. ..syspro|
01d0 74 65 63 74 73 02 00 00-00 53 20 d1 0f 00 00 00 |tects... .S Ñ....|
01e0 73 79 73 71 75 65 72 79-6d 65 74 72 69 63 73 02 |sysquery metrics.|
01f0 00 00 00 56 20 d1 0d 00-00 00 73 79 73 71 75 65 |...V Ñ.. ..sysque|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
net.c:555:Received header
0000 04 01 01 0d 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 01 01 0d 00 00 00 00-72 79 70 6c 61 6e 73 02 |........ ryplans.|
0010 00 00 00 53 20 d1 0d 00-00 00 73 79 73 72 65 66 |...S Ñ.. ..sysref|
0020 65 72 65 6e 63 65 73 02-00 00 00 53 20 d1 08 00 |erences. ...S Ñ..|
0030 00 00 73 79 73 72 6f 6c-65 73 02 00 00 00 53 20 |..sysrol es....S |
0040 d1 0b 00 00 00 73 79 73-73 65 67 6d 65 6e 74 73 |Ñ....sys segments|
0050 02 00 00 00 53 20 d1 09-00 00 00 73 79 73 73 6c |....S Ñ. ...syssl|
0060 69 63 65 73 02 00 00 00-53 20 d1 0d 00 00 00 73 |ices.... S Ñ....s|
0070 79 73 73 74 61 74 69 73-74 69 63 73 02 00 00 00 |ysstatis tics....|
0080 53 20 d1 0b 00 00 00 73-79 73 74 61 62 73 74 61 |S Ñ....s ystabsta|
0090 74 73 02 00 00 00 53 20-d1 0d 00 00 00 73 79 73 |ts....S  Ñ....sys|
00a0 74 68 72 65 73 68 6f 6c-64 73 02 00 00 00 53 20 |threshol ds....S |
00b0 d1 08 00 00 00 73 79 73-74 79 70 65 73 02 00 00 |Ñ....sys types...|
00c0 00 53 20 d1 0f 00 00 00-73 79 73 75 73 65 72 6d |.S Ñ.... sysuserm|
00d0 65 73 73 61 67 65 73 02-00 00 00 53 20 d1 08 00 |essages. ...S Ñ..|
00e0 00 00 73 79 73 75 73 65-72 73 02 00 00 00 53 20 |..sysuse rs....S |
00f0 d1 09 00 00 00 73 79 73-78 74 79 70 65 73 02 00 |Ñ....sys xtypes..|
0100 00 00 53 20 fd 10 00 02-00 8d 00 00 00          |..S ý... .....|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342ac, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 42, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b30, 0x7fff77c34190, 0x14296b0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 1, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c340e0, 0x1429b50, 0x7fff77c34190, 0x1429ad0, 0x7fff77c340dc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (5 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c3433c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c34338)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c342a8, 0x7fff77c342ac, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 141
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c3404c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33e78, 0x7fff77c33e7c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x148c7a8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 22 00 00 00 00-21 15 00 00 00 00 73 65 |...".... !.....se|
0010 6c 65 63 74 20 40 40 73-65 72 76 65 72 6e 61 6d |lect @@s ervernam|
0020 65 0a                  -                        |e.|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33ecc)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33cf8, 0x7fff77c33cfc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 3a 00 00 00 00-                        |...:....|

net.c:609:Received packet
0000 04 01 00 3a 00 00 00 00-61 15 00 00 00 01 00 00 |...:.... a.......|
0010 00 00 00 00 30 00 00 00-02 00 00 00 af 3c 00 00 |....0... ....¯<..|
0020 00 00 ae 01 00 00 d1 06-00 00 00 4d 4f 52 49 4e |..®...Ñ. ...MORIN|
0030 49 fd 10 00 02 00 01 00-00 00                   |Iý...... ..|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c33f5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c33e10)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33c6c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a98, 0x7fff77c33a9c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c33cfc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c33b00)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x7fff77c33bb0, 0x1428eb0, (nil), 0x14b7b50)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33f5c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33ecc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1428f50, 0x1428f50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33d00, 0x14a1e80, 0x7fff77c33db0, 0x1428eb0, 0x7fff77c33cfc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33f5c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33f58)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33ec8, 0x7fff77c33ecc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33c6c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a98, 0x7fff77c33a9c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14e1d48, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 f6 00 00 00 00-21 e9 01 00 00 00 20 20 |...ö.... !é....  |
0010 20 20 20 20 73 65 6c 65-63 74 0a 20 20 20 20 20 |    sele ct.     |
0020 20 20 20 55 73 65 72 4d-61 6e 64 61 6e 74 2c 0a |   UserM andant,.|
0030 20 20 20 20 20 20 20 20-42 47 43 6f 6c 6f 72 2c |         BGColor,|
0040 0a 20 20 20 20 20 20 20-20 45 72 66 61 73 73 74 |.         Erfasst|
0050 41 6d 20 3d 20 63 6f 6e-76 65 72 74 28 76 61 72 |Am = con vert(var|
0060 63 68 61 72 2c 20 45 72-66 61 73 73 74 41 6d 2c |char, Er fasstAm,|
0070 20 34 29 2c 0a 20 20 20-20 20 20 20 20 45 72 66 | 4),.         Erf|
0080 61 73 73 74 57 65 72 2c-0a 20 20 20 20 20 20 20 |asstWer, .       |
0090 20 47 65 61 65 6e 64 65-72 74 41 6d 20 3d 20 63 | Geaende rtAm = c|
00a0 6f 6e 76 65 72 74 28 76-61 72 63 68 61 72 2c 20 |onvert(v archar, |
00b0 47 65 61 65 6e 64 65 72-74 41 6d 2c 20 34 29 2c |Geaender tAm, 4),|
00c0 0a 20 20 20 20 20 20 20-20 47 65 61 65 6e 64 65 |.         Geaende|
00d0 72 74 57 65 72 2c 0a 20-20 20 20 20 20 20 20 49 |rtWer,.         I|
00e0 6e 4b 6f 6e 7a 65 72 6e-2c 0a 20 20 20 20 20 20 |nKonzern ,.      |
00f0 20 20 49 6e 55 53 54 4f-72 67 61 6e 2c 0a 20 20 |  InUSTO rgan,.  |
0100 20 20 20 20 20 20 49 73-74 54 65 73 74 4d 61 6e |      Is tTestMan|
0110 64 61 6e 74 2c 0a 20 20-20 20 20 20 20 20 4d 61 |dant,.         Ma|
0120 6e 64 61 6e 74 41 63 63-6f 75 6e 74 2c 0a 20 20 |ndantAcc ount,.  |
0130 20 20 20 20 20 20 4d 61-6e 64 61 6e 74 44 65 73 |      Ma ndantDes|
0140 63 72 69 70 74 69 6f 6e-2c 0a 20 20 20 20 20 20 |cription ,.      |
0150 20 20 4d 61 6e 64 61 6e-74 65 6e 4e 72 2c 0a 20 |  Mandan tenNr,. |
0160 20 20 20 20 20 20 20 54-72 61 6e 73 66 65 72 4e |       T ransferN|
0170 72 2c 0a 20 20 20 20 20-20 20 20 55 73 65 72 49 |r,.         UserI|
0180 64 2c 0a 20 20 20 20 20-20 20 20 55 73 65 72 49 |d,.         UserI|
0190 64 46 69 62 75 2c 0a 20-20 20 20 20 20 20 20 55 |dFibu,.         U|
01a0 73 65 72 49 64 4c 6f 68-6e 2c 0a 20 20 20 20 20 |serIdLoh n,.     |
01b0 20 20 20 55 73 65 72 49-64 50 50 53 0a 20 20 20 |   UserI dPPS.   |
01c0 20 20 20 66 72 6f 6d 20-63 61 73 79 2e 2e 4d 61 |   from  casy..Ma|
01d0 6e 64 61 6e 74 0a 20 20-20 20 20 20 6f 72 64 65 |ndant.       orde|
01e0 72 20 62 79 20 55 73 65-72 4d 61 6e 64 61 6e 74 |r by Use rMandant|
01f0 0a 20 20 20 20 0a      -                        |.    .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c32f1c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32d48, 0x7fff77c32d4c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 04 03 00 00 11 00 00 |........ a.......|
0010 04 63 61 73 79 07 6b 6f-6d 6d 65 72 7a 07 4d 61 |.casy.ko mmerz.Ma|
0020 6e 64 61 6e 74 0b 55 73-65 72 4d 61 6e 64 61 6e |ndant.Us erMandan|
0030 74 10 00 00 00 01 00 00-00 af 3c 00 00 00 00 00 |t....... .¯<.....|
0040 04 63 61 73 79 07 6b 6f-6d 6d 65 72 7a 07 4d 61 |.casy.ko mmerz.Ma|
0050 6e 64 61 6e 74 07 42 47-43 6f 6c 6f 72 30 00 00 |ndant.BG Color0..|
0060 00 07 00 00 00 26 04 00-09 45 72 66 61 73 73 74 |.....&.. .Erfasst|
0070 41 6d 00 00 00 09 45 72-66 61 73 73 74 41 6d 30 |Am....Er fasstAm0|
0080 00 00 00 02 00 00 00 af-3c 00 00 00 00 00 04 63 |.......¯ <......c|
0090 61 73 79 07 6b 6f 6d 6d-65 72 7a 07 4d 61 6e 64 |asy.komm erz.Mand|
00a0 61 6e 74 0a 45 72 66 61-73 73 74 57 65 72 30 00 |ant.Erfa sstWer0.|
00b0 00 00 02 00 00 00 af 18-00 00 00 00 0b 47 65 61 |......¯. .....Gea|
00c0 65 6e 64 65 72 74 41 6d-00 00 00 0b 47 65 61 65 |endertAm ....Geae|
00d0 6e 64 65 72 74 41 6d 30-00 00 00 02 00 00 00 af |ndertAm0 .......¯|
00e0 3c 00 00 00 00 00 04 63-61 73 79 07 6b 6f 6d 6d |<......c asy.komm|
00f0 65 72 7a 07 4d 61 6e 64-61 6e 74 0c 47 65 61 65 |erz.Mand ant.Geae|
0100 6e 64 65 72 74 57 65 72-30 00 00 00 02 00 00 00 |ndertWer 0.......|
0110 af 18 00 00 00 00 00 04-63 61 73 79 07 6b 6f 6d |¯....... casy.kom|
0120 6d 65 72 7a 07 4d 61 6e-64 61 6e 74 09 49 6e 4b |merz.Man dant.InK|
0130 6f 6e 7a 65 72 6e 30 00-00 00 01 00 00 00 af 02 |onzern0. ......¯.|
0140 00 00 00 00 00 04 63 61-73 79 07 6b 6f 6d 6d 65 |......ca sy.komme|
0150 72 7a 07 4d 61 6e 64 61-6e 74 0a 49 6e 55 53 54 |rz.Manda nt.InUST|
0160 4f 72 67 61 6e 30 00 00-00 01 00 00 00 af 02 00 |Organ0.. .....¯..|
0170 00 00 00 00 04 63 61 73-79 07 6b 6f 6d 6d 65 72 |.....cas y.kommer|
0180 7a 07 4d 61 6e 64 61 6e-74 0e 49 73 74 54 65 73 |z.Mandan t.IstTes|
0190 74 4d 61 6e 64 61 6e 74-30 00 00 00 01 00 00 00 |tMandant 0.......|
01a0 af 02 00 00 00 00 00 04-63 61 73 79 07 6b 6f 6d |¯....... casy.kom|
01b0 6d 65 72 7a 07 4d 61 6e-64 61 6e 74 0e 4d 61 6e |merz.Man dant.Man|
01c0 64 61 6e 74 41 63 63 6f-75 6e 74 30 00 00 00 05 |dantAcco unt0....|
01d0 00 00 00 26 01 00 00 04-63 61 73 79 07 6b 6f 6d |...&.... casy.kom|
01e0 6d 65 72 7a 07 4d 61 6e-64 61 6e 74 12 4d 61 6e |merz.Man dant.Man|
01f0 64 61 6e 74 44 65 73 63-72 69 70 74 69 6f 6e 30 |dantDesc ription0|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=17
token.c:1837:col 0:
token.c:1838:	column_name=[UserMandant]
token.c:1844:	flags=10 utype=1 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[BGColor]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
token.c:1837:col 2:
token.c:1838:	column_name=[ErfasstAm]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
token.c:1837:col 3:
token.c:1838:	column_name=[ErfasstWer]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=24 prec=0 scale=0
token.c:1837:col 4:
token.c:1838:	column_name=[GeaendertAm]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
token.c:1837:col 5:
token.c:1838:	column_name=[GeaendertWer]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=24 prec=0 scale=0
token.c:1837:col 6:
token.c:1838:	column_name=[InKonzern]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 7:
token.c:1838:	column_name=[InUSTOrgan]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 8:
token.c:1838:	column_name=[IstTestMandant]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 9:
token.c:1838:	column_name=[MandantAccount]
token.c:1844:	flags=30 utype=5 type=38 varint=1
token.c:1847:	colsize=1 prec=0 scale=0
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 00 01 00 00 00 af |........ .......¯|
0010 fe 01 00 00 00 00 04 63-61 73 79 07 6b 6f 6d 6d |þ......c asy.komm|
0020 65 72 7a 07 4d 61 6e 64-61 6e 74 0b 4d 61 6e 64 |erz.Mand ant.Mand|
0030 61 6e 74 65 6e 4e 72 30-00 00 00 07 00 00 00 26 |antenNr0 .......&|
0040 04 00 00 04 63 61 73 79-07 6b 6f 6d 6d 65 72 7a |....casy .kommerz|
0050 07 4d 61 6e 64 61 6e 74-0a 54 72 61 6e 73 66 65 |.Mandant .Transfe|
0060 72 4e 72 30 00 00 00 07-00 00 00 26 04 00 00 04 |rNr0.... ...&....|
0070 63 61 73 79 07 6b 6f 6d-6d 65 72 7a 07 4d 61 6e |casy.kom merz.Man|
0080 64 61 6e 74 06 55 73 65-72 49 64 30 00 00 00 06 |dant.Use rId0....|
0090 00 00 00 26 02 00 00 04-63 61 73 79 07 6b 6f 6d |...&.... casy.kom|
00a0 6d 65 72 7a 07 4d 61 6e-64 61 6e 74 0a 55 73 65 |merz.Man dant.Use|
00b0 72 49 64 46 69 62 75 30-00 00 00 06 00 00 00 26 |rIdFibu0 .......&|
00c0 02 00 00 04 63 61 73 79-07 6b 6f 6d 6d 65 72 7a |....casy .kommerz|
00d0 07 4d 61 6e 64 61 6e 74-0a 55 73 65 72 49 64 4c |.Mandant .UserIdL|
00e0 6f 68 6e 30 00 00 00 06-00 00 00 26 02 00 00 04 |ohn0.... ...&....|
00f0 63 61 73 79 07 6b 6f 6d-6d 65 72 7a 07 4d 61 6e |casy.kom merz.Man|
0100 64 61 6e 74 09 55 73 65-72 49 64 50 50 53 30 00 |dant.Use rIdPPS0.|
0110 00 00 06 00 00 00 26 02-00 ae 11 00 00 00 00 00 |......&. .®......|
0120 00 00 00 00 00 00 00 00-00 00 00 00 00 a9 01 00 |........ .....©..|
0130 01 d1 1e 00 00 00 44 6f-6b 75 20 20 20 20 20 20 |.Ñ....Do ku      |
0140 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
0150 20 20 20 20 04 ff c4 c4-00 00 00 00 00 00 00 00 |    .ÿÄÄ ........|
0160 00 08 00 00 00 30 36 2e-30 31 2e 31 37 05 00 00 |.....06. 01.17...|
0170 00 66 72 65 64 79 01 00-00 00 42 00 00 00 00 01 |.fredy.. ..B.....|
0180 00 00 00 4a 01 00 17 00-00 00 44 65 6d 6f 43 48 |...J.... ..DemoCH|
0190 20 2d 20 53 74 61 6e 64-20 30 36 2e 30 31 2e 31 | - Stand  06.01.1|
01a0 37 00 00 02 17 00 00 00-00 d1 1e 00 00 00 45 6e |7....... .Ñ....En|
01b0 74 77 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |tw               |
01c0 20 20 20 20 20 20 20 20-20 20 20 20 04 f0 be b4 |             .ð¾´|
01d0 00 00 00 00 00 00 00 00-00 08 00 00 00 30 36 2e |........ .....06.|
01e0 30 31 2e 31 37 05 00 00-00 66 72 65 64 79 00 00 |01.17... .fredy..|
01f0 00 00 01 00 00 00 41 01-00 00 00 4a 01 00 17 00 |......A. ...J....|

token.c:1837:col 10:
token.c:1838:	column_name=[MandantDescription]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 11:
token.c:1838:	column_name=[MandantenNr]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
token.c:1837:col 12:
token.c:1838:	column_name=[TransferNr]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
token.c:1837:col 13:
token.c:1838:	column_name=[UserId]
token.c:1844:	flags=30 utype=6 type=38 varint=1
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 14:
token.c:1838:	column_name=[UserIdFibu]
token.c:1844:	flags=30 utype=6 type=38 varint=1
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 15:
token.c:1838:	column_name=[UserIdLohn]
token.c:1844:	flags=30 utype=6 type=38 varint=1
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 16:
token.c:1838:	column_name=[UserIdPPS]
token.c:1844:	flags=30 utype=6 type=38 varint=1
token.c:1847:	colsize=2 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c32fac, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 17
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:2282:ct_describe(0x14285c0, 3, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 4, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 5, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 6, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 7, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 8, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 9, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 10, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
ct.c:2303:ct_describe() datafmt->datatype = 6 server type 38
ct.c:2282:ct_describe(0x14285c0, 11, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 12, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:2282:ct_describe(0x14285c0, 13, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:2282:ct_describe(0x14285c0, 14, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:2282:ct_describe(0x14285c0, 15, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:2282:ct_describe(0x14285c0, 16, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:2282:ct_describe(0x14285c0, 17, 0x7fff77c32e60)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:1122:ct_results(0x14285c0, 0x7fff77c32cbc)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32ae8, 0x7fff77c32aec, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c32d4c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 17
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x7fff77c32c00, 0x111afc0, (nil), 0x127d730)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 2, 0x7fff77c32c00, 0x1236f90, (nil), 0x127d768)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:2282:ct_describe(0x14285c0, 3, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 3, 0x7fff77c32c00, 0x11be820, (nil), 0x127d7a0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 3
ct.c:2282:ct_describe(0x14285c0, 4, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 4, 0x7fff77c32c00, 0x14bac50, (nil), 0x127d7d8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 4
ct.c:2282:ct_describe(0x14285c0, 5, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 5, 0x7fff77c32c00, 0x125ec40, (nil), 0x127d810)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 5
ct.c:2282:ct_describe(0x14285c0, 6, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 6, 0x7fff77c32c00, 0x10c6ed0, (nil), 0x127d848)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 6
ct.c:2282:ct_describe(0x14285c0, 7, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 7, 0x7fff77c32c00, 0x1430140, (nil), 0x127d880)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 7
ct.c:2282:ct_describe(0x14285c0, 8, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 8, 0x7fff77c32c00, 0x14712f0, (nil), 0x127d8b8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 8
ct.c:2282:ct_describe(0x14285c0, 9, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 9, 0x7fff77c32c00, 0x14af5e0, (nil), 0x127d8f0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 9
ct.c:2282:ct_describe(0x14285c0, 10, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
ct.c:2303:ct_describe() datafmt->datatype = 6 server type 38
ct.c:1457:ct_bind(0x14285c0, 10, 0x7fff77c32c00, 0x14892c0, (nil), 0x127d928)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 10
ct.c:2282:ct_describe(0x14285c0, 11, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 11, 0x7fff77c32c00, 0x12b9c00, (nil), 0x127d960)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 11
ct.c:2282:ct_describe(0x14285c0, 12, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 12, 0x7fff77c32c00, 0x111b510, (nil), 0x127d998)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 12
ct.c:2282:ct_describe(0x14285c0, 13, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 13, 0x7fff77c32c00, 0x1358e40, (nil), 0x127d9d0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 13
ct.c:2282:ct_describe(0x14285c0, 14, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:1457:ct_bind(0x14285c0, 14, 0x7fff77c32c00, 0x12099e0, (nil), 0x127da08)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 14
ct.c:2282:ct_describe(0x14285c0, 15, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:1457:ct_bind(0x14285c0, 15, 0x7fff77c32c00, 0x14c3200, (nil), 0x127da40)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 15
ct.c:2282:ct_describe(0x14285c0, 16, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:1457:ct_bind(0x14285c0, 16, 0x7fff77c32c00, 0x11b6b50, (nil), 0x127da78)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 16
ct.c:2282:ct_describe(0x14285c0, 17, 0x7fff77c32b50)
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 38
ct.c:1457:ct_bind(0x14285c0, 17, 0x7fff77c32c00, 0x14e1f40, (nil), 0x127dab0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 17
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1291eb0, 0x7fff77c32e00, 0x1430140, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x129f430, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 44 65 6d 6f 43 48 |........ ..DemoCH|
0010 20 2d 20 53 74 61 6e 64-20 30 36 2e 30 31 2e 31 | - Stand  06.01.1|
0020 37 00 00 02 00 00 00 00-00 d1 1e 00 00 00 54 65 |7....... .Ñ....Te|
0030 73 74 31 31 20 20 20 20-20 20 20 20 20 20 20 20 |st11             |
0040 20 20 20 20 20 20 20 20-20 20 20 20 04 12 f4 ff |             ..ôÿ|
0050 00 00 00 00 00 00 00 00-00 08 00 00 00 30 37 2e |........ .....07.|
0060 30 34 2e 31 37 05 00 00-00 66 72 65 64 79 00 00 |04.17... .fredy..|
0070 00 00 00 00 00 00 01 00-00 00 4a 01 00 19 00 00 |........ ..J.....|
0080 00 47 4d 49 54 65 73 74-32 20 2d 20 30 36 2e 30 |.GMITest 2 - 06.0|
0090 34 2e 31 37 20 31 35 3a-30 30 00 00 02 2c 00 00 |4.17 15: 00...,..|
00a0 00 00 d1 1e 00 00 00 54-65 73 74 31 32 20 20 20 |..Ñ....T est12   |
00b0 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
00c0 20 20 20 20 20 04 9d ff-7b 00 00 00 00 00 00 00 |     ..ÿ {.......|
00d0 00 00 08 00 00 00 32 39-2e 30 35 2e 31 37 05 00 |......29 .05.17..|
00e0 00 00 64 61 6e 6e 79 00-00 00 00 00 00 00 00 01 |..danny. ........|
00f0 00 00 00 4a 01 00 18 00-00 00 47 72 61 6e 75 6c |...J.... ..Granul|
0100 61 20 2d 20 32 36 2e 30-35 2e 31 37 20 32 32 3a |a - 26.0 5.17 22:|
0110 30 30 00 00 02 2c 00 00-00 00 d1 1e 00 00 00 54 |00...,.. ..Ñ....T|
0120 65 73 74 31 33 20 20 20-20 20 20 20 20 20 20 20 |est13            |
0130 20 20 20 20 20 20 20 20-20 20 20 20 20 04 c4 c4 |              .ÄÄ|
0140 ff 00 00 00 00 00 00 00-00 00 08 00 00 00 31 38 |ÿ....... ......18|
0150 2e 30 31 2e 31 34 05 00-00 00 66 72 65 64 79 00 |.01.14.. ..fredy.|
0160 00 00 00 00 00 00 00 01-00 00 00 4a 01 00 18 00 |........ ...J....|
0170 00 00 54 52 49 4e 41 4d-4f 20 2d 20 31 38 2e 30 |..TRINAM O - 18.0|
0180 31 2e 31 34 20 31 36 3a-34 35 00 00 02 35 00 00 |1.14 16: 45...5..|
0190 00 00 d1 1e 00 00 00 54-65 73 74 31 34 20 20 20 |..Ñ....T est14   |
01a0 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
01b0 20 20 20 20 20 04 00 32-ff 00 00 00 00 00 00 00 |     ..2 ÿ.......|
01c0 00 00 08 00 00 00 30 37-2e 30 34 2e 31 37 05 00 |......07 .04.17..|
01d0 00 00 64 61 6e 6e 79 01-00 00 00 42 00 00 00 00 |..danny. ...B....|
01e0 01 00 00 00 4a 01 00 19-00 00 00 47 61 75 74 73 |....J... ...Gauts|
01f0 63 68 69 20 2d 20 30 36-2e 30 34 2e 31 37 20 32 |chi - 06 .04.17 2|

token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11e4ed0, 0x7fff77c32e00, 0x14712f0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x129f430, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 7
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-32 3a 30 30 00 00 02 2c |........ 2:00...,|
0010 00 00 00 00 d1 1e 00 00-00 54 65 73 74 31 35 20 |....Ñ... .Test15 |
0020 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
0030 20 20 20 20 20 20 20 04-0c 83 ed 00 00 00 00 00 |       . ..í.....|
0040 00 00 00 00 08 00 00 00-33 31 2e 30 33 2e 31 37 |........ 31.03.17|
0050 05 00 00 00 66 72 65 64-79 01 00 00 00 42 00 00 |....fred y....B..|
0060 00 00 01 00 00 00 4a 01-00 1a 00 00 00 50 61 74 |......J. .....Pat|
0070 69 73 77 69 73 73 20 2d-20 31 35 2e 30 32 2e 31 |iswiss -  15.02.1|
0080 37 20 30 39 3a 34 35 00-00 02 2c 00 00 00 00 d1 |7 09:45. ..,....Ñ|
0090 1e 00 00 00 54 65 73 74-31 36 20 20 20 20 20 20 |....Test 16      |
00a0 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
00b0 20 20 04 ff e6 84 00 08-00 00 00 33 30 2e 30 31 |  .ÿæ... ...30.01|
00c0 2e 30 36 05 00 00 00 66-72 65 64 79 08 00 00 00 |.06....f redy....|
00d0 31 33 2e 30 31 2e 31 36-05 00 00 00 66 72 65 64 |13.01.16 ....fred|
00e0 79 00 00 00 00 00 00 00-00 01 00 00 00 4a 01 00 |y....... .....J..|
00f0 15 00 00 00 42 50 41 47-20 2d 20 31 32 2e 30 31 |....BPAG  - 12.01|
0100 2e 31 36 20 32 31 3a 35-33 00 00 02 17 00 00 00 |.16 21:5 3.......|
0110 00 d1 1e 00 00 00 54 65-73 74 31 37 20 20 20 20 |.Ñ....Te st17    |
0120 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
0130 20 20 20 20 04 79 7a e8-00 08 00 00 00 32 32 2e |    .yzè .....22.|
0140 30 37 2e 31 34 05 00 00-00 64 61 6e 6e 79 08 00 |07.14... .danny..|
0150 00 00 31 35 2e 31 31 2e-31 36 05 00 00 00 64 61 |..15.11. 16....da|
0160 6e 6e 79 00 00 00 00 00-00 00 00 01 00 00 00 4a |nny..... .......J|
0170 01 00 12 00 00 00 43 6f-72 61 64 69 6e 20 2d 20 |......Co radin - |
0180 31 35 2e 31 31 2e 31 36-00 00 02 35 00 00 00 00 |15.11.16 ...5....|
0190 d1 1e 00 00 00 54 65 73-74 31 38 20 20 20 20 20 |Ñ....Tes t18     |
01a0 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
01b0 20 20 20 04 99 99 40 00-08 00 00 00 32 33 2e 31 |   ...@. ....23.1|
01c0 31 2e 31 35 05 00 00 00-64 61 6e 6e 79 08 00 00 |1.15.... danny...|
01d0 00 30 33 2e 30 36 2e 31-36 05 00 00 00 66 72 65 |.03.06.1 6....fre|
01e0 64 79 00 00 00 00 00 00-00 00 01 00 00 00 4a 01 |dy...... ......J.|
01f0 00 14 00 00 00 4c 50 4c-20 2d 20 30 32 2e 30 36 |.....LPL  - 02.06|

token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1291eb0, 0x7fff77c32e00, 0x1430140, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1291eb0, 0x7fff77c32e00, 0x1430140, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 7
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x129f430, 0x7fff77c32e00, 0x11be820, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x12a9f50, 0x7fff77c32e00, 0x14bac50, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 8
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x129f430, 0x7fff77c32e00, 0x11be820, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x12a9f50, 0x7fff77c32e00, 0x14bac50, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f1c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 7 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 9 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 10 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
net.c:555:Received header
0000 04 01 00 22 00 00 00 00-                        |..."....|

net.c:609:Received packet
0000 04 01 00 22 00 00 00 00-2e 31 36 20 32 31 3a 35 |...".... .16 21:5|
0010 33 00 00 02 35 00 00 00-00 fd 10 00 02 00 0a 00 |3...5... .ý......|
0020 00 00                  -                        |..|

token.c:2305:tds_process_row(): reading column 11 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 12 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 13 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 14 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 15 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 16 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is -1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1289170, 0x1289170, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0xfc3250, 0x7fff77c32e00, 0x111afc0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9840, 0x7fff77c32e00, 0x1236f90, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 7
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x129f430, 0x7fff77c32e00, 0x11be820, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x12a9f50, 0x7fff77c32e00, 0x14bac50, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x11f5e60, 0x7fff77c32e00, 0x125ec40, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 24)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x120d400, 0x7fff77c32e00, 0x10c6ed0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (25 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 7 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 8 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1296230, 0x7fff77c32e00, 0x14af5e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 9 is type 38 and has length 1
ct.c:1907:_ct_get_client_type(type 38, user 5, size 1)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9928, 0x7fff77c32e00, 0x14892c0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(6)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 48 (1 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 10 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 1, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x1213790, 0x7fff77c32e00, 0x12b9c00, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 11 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 12 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 13 is type 38 and has length 2
ct.c:1907:_ct_get_client_type(type 38, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c32d50, 0x14b9960, 0x7fff77c32e00, 0x12099e0, 0x7fff77c32d4c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 14 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 15 is type 38 and has length -1
ct.c:1736:_ct_bind_data(): column 16 is type 38 and has length -1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c32fac)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c32fa8)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32f18, 0x7fff77c32f1c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 10
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c32cbc)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c32ae8, 0x7fff77c32aec, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14c32e8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 12 00 00 00 00-21 05 01 00 00 00 20 20 |........ !.....  |
0010 20 20 73 65 6c 65 63 74-20 64 69 73 74 69 6e 63 |  select  distinc|
0020 74 20 4b 65 79 76 61 6c-20 3d 20 46 6f 72 6d 54 |t Keyval  = FormT|
0030 65 78 74 44 2c 20 54 72-61 6e 73 6c 61 74 69 6f |extD, Tr anslatio|
0040 6e 20 3d 20 46 6f 72 6d-54 65 78 74 45 0a 20 20 |n = Form TextE.  |
0050 20 20 66 72 6f 6d 20 63-61 73 79 2e 2e 46 6f 72 |  from c asy..For|
0060 6d 54 65 78 74 20 74 2c-20 63 61 73 79 2e 2e 46 |mText t,  casy..F|
0070 6f 72 6d 54 65 78 74 55-73 65 20 75 0a 20 20 20 |ormTextU se u.   |
0080 20 77 68 65 72 65 20 74-2e 46 6f 72 6d 54 65 78 | where t .FormTex|
0090 74 49 44 20 3d 20 75 2e-46 6f 72 6d 54 65 78 74 |tID = u. FormText|
00a0 49 44 20 61 6e 64 20 46-6f 72 6d 4f 62 6a 20 6c |ID and F ormObj l|
00b0 69 6b 65 20 22 25 22 0a-20 20 20 20 20 20 61 6e |ike "%".       an|
00c0 64 20 75 2e 46 6f 72 6d-49 44 20 3d 20 22 6f 70 |d u.Form ID = "op|
00d0 67 5f 6e 61 76 69 22 0a-20 20 20 20 20 20 61 6e |g_navi".       an|
00e0 64 20 46 6f 72 6d 54 65-78 74 45 20 69 73 20 6e |d FormTe xtE is n|
00f0 6f 74 20 6e 75 6c 6c 0a-20 20 20 20 6f 72 64 65 |ot null.     orde|
0100 72 20 62 79 20 46 6f 72-6d 54 65 78 74 44 0a 20 |r by For mTextD. |
0110 20 0a                  -                        | .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x14fea5c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe888, 0x14fe88c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 5b 00 00 00 02 00 06 |........ a[......|
0010 4b 65 79 76 61 6c 00 00-08 46 6f 72 6d 54 65 78 |Keyval.. .FormTex|
0020 74 09 46 6f 72 6d 54 65-78 74 44 30 00 00 00 02 |t.FormTe xtD0....|
0030 00 00 00 af fe 01 00 00-00 0b 54 72 61 6e 73 6c |...¯þ... ..Transl|
0040 61 74 69 6f 6e 00 00 08-46 6f 72 6d 54 65 78 74 |ation... FormText|
0050 09 46 6f 72 6d 54 65 78-74 45 30 00 00 00 02 00 |.FormTex tE0.....|
0060 00 00 af fe 01 00 00 00-ae 02 00 00 00 a9 01 00 |..¯þ.... ®....©..|
0070 01 d1 05 00 00 00 41 6b-74 69 76 06 00 00 00 41 |.Ñ....Ak tiv....A|
0080 63 74 69 76 65 d1 0d 00-00 00 41 6c 6c 65 20 61 |ctiveÑ.. ..Alle a|
0090 6e 7a 65 69 67 65 6e 08-00 00 00 53 68 6f 77 20 |nzeigen. ...Show |
00a0 61 6c 6c d1 25 00 00 00-41 75 63 68 20 61 75 73 |allÑ%... Auch aus|
00b0 67 65 62 6c 65 6e 64 65-74 65 20 45 69 6e 74 72 |geblende te Eintr|
00c0 c3 a4 67 65 20 61 6e 7a-65 69 67 65 6e 13 00 00 |äge anz eigen...|
00d0 00 53 68 6f 77 20 68 69-64 64 65 6e 20 65 6e 74 |.Show hi dden ent|
00e0 72 69 65 73 d1 0a 00 00-00 41 75 73 62 6c 65 6e |riesÑ... .Ausblen|
00f0 64 65 6e 04 00 00 00 48-69 64 65 d1 14 00 00 00 |den....H ideÑ....|
0100 43 41 53 59 4d 49 52 20-49 6e 73 74 61 6c 6c 61 |CASYMIR  Installa|
0110 74 69 6f 6e 14 00 00 00-43 41 53 59 4d 49 52 20 |tion.... CASYMIR |
0120 49 6e 73 74 61 6c 6c 61-74 69 6f 6e d1 26 00 00 |Installa tionÑ&..|
0130 00 44 61 73 20 56 65 72-7a 65 69 63 68 6e 69 73 |.Das Ver zeichnis|
0140 20 22 25 22 20 65 78 69-73 74 69 65 72 74 20 62 | "%" exi stiert b|
0150 65 72 65 69 74 73 21 1d-00 00 00 44 69 72 65 63 |ereits!. ...Direc|
0160 74 6f 72 79 20 22 25 22-20 61 6c 72 65 61 64 79 |tory "%"  already|
0170 20 65 78 69 73 74 73 21-d1 0a 00 00 00 45 69 6e | exists! Ñ....Ein|
0180 62 6c 65 6e 64 65 6e 04-00 00 00 53 68 6f 77 d1 |blenden. ...ShowÑ|
0190 11 00 00 00 4d 61 6e 64-61 6e 74 65 6e 2d 41 75 |....Mand anten-Au|
01a0 73 77 61 68 6c 12 00 00-00 4d 61 6e 64 61 74 6f |swahl... .Mandato|
01b0 72 20 73 65 6c 65 63 74-69 6f 6e d1 43 00 00 00 |r select ionÑC...|
01c0 4d c3 b6 63 68 74 65 6e-20 53 69 65 20 49 68 72 |Möchten  Sie Ihr|
01d0 65 20 4e 61 76 69 67 61-74 69 6f 6e 73 6c 65 69 |e Naviga tionslei|
01e0 73 74 65 20 61 75 66 20-64 65 6e 20 53 74 61 6e |ste auf  den Stan|
01f0 64 61 72 64 20 7a 75 72-c3 bc 63 6b 73 65 74 7a |dard zur ücksetz|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[Keyval]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[Translation]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x14feaec, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x14fe9a0)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x14fe9a0)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x14fe7fc)
token.c:540:tds_process_tokens(0x1428120, 0x14fe628, 0x14fe62c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x14fe88c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x14fe690)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x14fe740, 0x14bd200, (nil), 0x12af7a0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x14fe690)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x14fe740, 0x12b9c00, (nil), 0x12af7d8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x113ebc0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14c8a70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x113ebc0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14c8a70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x12bc7d0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14c8a70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x12bc7d0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14c8a70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x12bc7d0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14c8a70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x12bc7d0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x12bc7d0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x12bc7d0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
net.c:555:Received header
0000 04 01 00 b6 00 00 00 00-                        |...¶....|

net.c:609:Received packet
0000 04 01 00 b6 00 00 00 00-65 6e 3f 26 00 00 00 52 |...¶.... en?&...R|
0010 65 73 65 74 20 79 6f 75-72 20 6e 61 76 69 67 61 |eset you r naviga|
0020 74 69 6f 6e 20 62 61 72-20 74 6f 20 73 74 61 6e |tion bar  to stan|
0030 64 61 72 64 3f d1 0a 00-00 00 4e 61 76 69 67 61 |dard?Ñ.. ..Naviga|
0040 74 69 6f 6e 0a 00 00 00-4e 61 76 69 67 61 74 69 |tion.... Navigati|
0050 6f 6e d1 08 00 00 00 52-65 66 65 72 65 6e 7a 09 |onÑ....R eferenz.|
0060 00 00 00 52 65 66 65 72-65 6e 63 65 d1 05 00 00 |...Refer enceÑ...|
0070 00 53 75 63 68 65 06 00-00 00 53 65 61 72 63 68 |.Suche.. ..Search|
0080 d1 13 00 00 00 53 75 63-68 66 65 6c 64 20 65 69 |Ñ....Suc hfeld ei|
0090 6e 62 6c 65 6e 64 65 6e-11 00 00 00 53 68 6f 77 |nblenden ....Show|
00a0 20 73 65 61 72 63 68 20-66 69 65 6c 64 fd 10 00 | search  fieldý..|
00b0 02 00 0d 00 00 00      -                        |......|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14beeb0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14beeb0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14beeb0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14beeb0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
token.c:540:tds_process_tokens(0x1428120, 0x14fea5c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x14abfb0, 0x14abfb0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x14beeb0, 0x14fe940, 0x14bd200, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe890, 0x11b7d70, 0x14fe940, 0x12b9c00, 0x14fe88c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14feaec)
ct.c:1122:ct_results(0x14285c0, 0x14feae8)
token.c:540:tds_process_tokens(0x1428120, 0x14fea58, 0x14fea5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 13
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe7fc)
token.c:540:tds_process_tokens(0x1428120, 0x14fe628, 0x14fe62c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x130e788, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-21 32 02 00 00 00 20 20 |........ !2....  |
0010 20 20 20 20 63 72 65 61-74 65 20 74 61 62 6c 65 |    crea te table|
0020 20 23 66 6f 72 6d 5f 69-63 6f 6e 73 20 28 46 6f | #form_i cons (Fo|
0030 72 6d 54 79 70 20 63 68-61 72 28 31 29 2c 20 49 |rmTyp ch ar(1), I|
0040 63 6f 6e 4e 61 6d 65 20-76 61 72 63 68 61 72 28 |conName  varchar(|
0050 33 32 29 20 6e 75 6c 6c-29 0a 20 20 20 20 69 6e |32) null ).    in|
0060 73 65 72 74 20 23 66 6f-72 6d 5f 69 63 6f 6e 73 |sert #fo rm_icons|
0070 20 76 61 6c 75 65 73 20-28 27 41 27 2c 20 27 67 | values  ('A', 'g|
0080 74 6b 2d 73 65 6c 65 63-74 2d 61 6c 6c 27 29 69 |tk-selec t-all')i|
0090 6e 73 65 72 74 20 23 66-6f 72 6d 5f 69 63 6f 6e |nsert #f orm_icon|
00a0 73 20 76 61 6c 75 65 73-20 28 27 50 27 2c 20 27 |s values  ('P', '|
00b0 67 74 6b 2d 66 69 6e 64-27 29 69 6e 73 65 72 74 |gtk-find ')insert|
00c0 20 23 66 6f 72 6d 5f 69-63 6f 6e 73 20 76 61 6c | #form_i cons val|
00d0 75 65 73 20 28 27 43 27-2c 20 27 67 74 6b 2d 69 |ues ('C' , 'gtk-i|
00e0 6e 64 65 78 27 29 69 6e-73 65 72 74 20 23 66 6f |ndex')in sert #fo|
00f0 72 6d 5f 69 63 6f 6e 73-20 76 61 6c 75 65 73 20 |rm_icons  values |
0100 28 27 45 27 2c 20 27 67-74 6b 2d 65 64 69 74 27 |('E', 'g tk-edit'|
0110 29 69 6e 73 65 72 74 20-23 66 6f 72 6d 5f 69 63 |)insert  #form_ic|
0120 6f 6e 73 20 76 61 6c 75-65 73 20 28 27 44 27 2c |ons valu es ('D',|
0130 20 27 67 74 6b 2d 70 72-69 6e 74 27 29 69 6e 73 | 'gtk-pr int')ins|
0140 65 72 74 20 23 66 6f 72-6d 5f 69 63 6f 6e 73 20 |ert #for m_icons |
0150 76 61 6c 75 65 73 20 28-27 49 27 2c 20 27 67 74 |values ( 'I', 'gt|
0160 6b 2d 64 69 61 6c 6f 67-2d 61 75 74 68 65 6e 74 |k-dialog -authent|
0170 69 63 61 74 69 6f 6e 27-29 69 6e 73 65 72 74 20 |ication' )insert |
0180 23 66 6f 72 6d 5f 69 63-6f 6e 73 20 76 61 6c 75 |#form_ic ons valu|
0190 65 73 20 28 27 48 27 2c-20 27 67 74 6b 2d 68 6f |es ('H',  'gtk-ho|
01a0 6d 65 27 29 69 6e 73 65-72 74 20 23 66 6f 72 6d |me')inse rt #form|
01b0 5f 69 63 6f 6e 73 20 76-61 6c 75 65 73 20 28 27 |_icons v alues ('|
01c0 4d 27 2c 20 27 67 74 6b-2d 64 6e 64 2d 6d 75 6c |M', 'gtk -dnd-mul|
01d0 74 69 70 6c 65 27 29 69-6e 73 65 72 74 20 23 66 |tiple')i nsert #f|
01e0 6f 72 6d 5f 69 63 6f 6e-73 20 76 61 6c 75 65 73 |orm_icon s values|
01f0 20 28 27 4f 27 2c 20 27-67 74 6b 2d 64 69 61 6c | ('O', ' gtk-dial|

util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 47 00 00 00 00-6f 67 2d 77 61 72 6e 69 |...G.... og-warni|
0010 6e 67 27 29 69 6e 73 65-72 74 20 23 66 6f 72 6d |ng')inse rt #form|
0020 5f 69 63 6f 6e 73 20 76-61 6c 75 65 73 20 28 27 |_icons v alues ('|
0030 53 27 2c 20 27 67 74 6b-2d 70 72 65 66 65 72 65 |S', 'gtk -prefere|
0040 6e 63 65 73 27 29 0a   -                        |nces').|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe5c8, 0x14fe5cc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 6b 00 00 00 00-                        |...k....|

net.c:609:Received packet
0000 04 01 00 6b 00 00 00 00-fd 01 00 02 00 00 00 00 |...k.... ý.......|
0010 00 fd 11 00 02 00 01 00-00 00 fd 11 00 02 00 01 |.ý...... ..ý.....|
0020 00 00 00 fd 11 00 02 00-01 00 00 00 fd 11 00 02 |...ý.... ....ý...|
0030 00 01 00 00 00 fd 11 00-02 00 01 00 00 00 fd 11 |.....ý.. ......ý.|
0040 00 02 00 01 00 00 00 fd-11 00 02 00 01 00 00 00 |.......ý ........|
0050 fd 11 00 02 00 01 00 00-00 fd 11 00 02 00 01 00 |ý....... .ý......|
0060 00 00 fd 10 00 02 00 01-00 00 00                |..ý..... ...|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0xf580e8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 c5 00 00 00 00-21 b8 00 00 00 00 20 20 |...Å.... !¸....  |
0010 20 20 20 20 63 72 65 61-74 65 20 74 61 62 6c 65 |    crea te table|
0020 20 23 73 74 61 74 75 73-5f 69 63 6f 6e 73 20 28 | #status _icons (|
0030 53 74 61 74 75 73 20 63-68 61 72 28 31 29 2c 20 |Status c har(1), |
0040 49 63 6f 6e 4e 61 6d 65-20 76 61 72 63 68 61 72 |IconName  varchar|
0050 28 33 32 29 20 6e 75 6c-6c 29 0a 20 20 20 20 20 |(32) nul l).     |
0060 20 69 6e 73 65 72 74 20-23 73 74 61 74 75 73 5f | insert  #status_|
0070 69 63 6f 6e 73 20 76 61-6c 75 65 73 20 28 27 41 |icons va lues ('A|
0080 27 2c 20 27 67 74 6b 2d-79 65 73 27 29 0a 20 20 |', 'gtk- yes').  |
0090 20 20 20 20 69 6e 73 65-72 74 20 23 73 74 61 74 |    inse rt #stat|
00a0 75 73 5f 69 63 6f 6e 73-20 76 61 6c 75 65 73 20 |us_icons  values |
00b0 28 27 49 27 2c 20 27 67-74 6b 2d 6e 6f 27 29 0a |('I', 'g tk-no').|
00c0 20 20 20 20 0a         -                        |    .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe5c8, 0x14fe5cc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 23 00 00 00 00-                        |...#....|

net.c:609:Received packet
0000 04 01 00 23 00 00 00 00-fd 01 00 02 00 00 00 00 |...#.... ý.......|
0010 00 fd 11 00 02 00 01 00-00 00 fd 10 00 02 00 01 |.ý...... ..ý.....|
0020 00 00 00               -                        |...|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x12b2568, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-21 d4 05 00 00 00 20 20 |........ !Ô....  |
0010 20 20 20 20 64 65 63 6c-61 72 65 20 40 53 75 63 |    decl are @Suc|
0020 68 4d 75 73 74 65 72 20-76 61 72 63 68 61 72 28 |hMuster  varchar(|
0030 32 30 30 29 0a 20 20 20-20 20 20 73 65 6c 65 63 |200).       selec|
0040 74 20 40 53 75 63 68 4d-75 73 74 65 72 20 3d 20 |t @SuchM uster = |
0050 6e 75 6c 6c 0a 20 20 20-20 20 20 69 66 20 40 53 |null.       if @S|
0060 75 63 68 4d 75 73 74 65-72 20 69 73 20 6e 6f 74 |uchMuste r is not|
0070 20 6e 75 6c 6c 20 73 65-6c 65 63 74 20 40 53 75 | null se lect @Su|
0080 63 68 4d 75 73 74 65 72-20 3d 20 27 25 27 20 2b |chMuster  = '%' +|
0090 20 75 70 70 65 72 28 40-53 75 63 68 4d 75 73 74 | upper(@ SuchMust|
00a0 65 72 29 20 2b 20 27 25-27 0a 20 20 20 20 20 20 |er) + '% '.      |
00b0 0a 20 20 20 20 20 20 73-65 6c 65 63 74 20 4c 66 |.      s elect Lf|
00c0 64 4e 72 32 2c 0a 20 20-20 20 20 20 20 20 20 4e |dNr2,.          N|
00d0 61 76 69 50 66 61 64 20-3d 20 6e 2e 4e 61 76 69 |aviPfad  = n.Navi|
00e0 50 66 61 64 2c 0a 20 20-20 20 20 20 20 20 20 4e |Pfad,.          N|
00f0 61 76 69 42 65 7a 65 69-63 68 6e 75 6e 67 20 3d |aviBezei chnung =|
0100 20 69 73 6e 75 6c 6c 28-6e 2e 46 6f 72 6d 44 65 | isnull( n.FormDe|
0110 73 63 72 69 70 74 69 6f-6e 2c 20 66 2e 46 6f 72 |scriptio n, f.For|
0120 6d 44 65 73 63 72 69 70-74 69 6f 6e 29 2c 0a 20 |mDescrip tion),. |
0130 20 20 20 20 20 20 20 20-54 6f 6f 6c 74 69 70 20 |         Tooltip |
0140 3d 20 69 73 6e 75 6c 6c-28 6e 2e 46 6f 72 6d 48 |= isnull (n.FormH|
0150 69 6c 66 65 54 65 78 74-2c 20 69 73 6e 75 6c 6c |ilfeText , isnull|
0160 28 66 2e 46 6f 72 6d 48-69 6c 66 65 54 65 78 74 |(f.FormH ilfeText|
0170 2c 20 0a 20 20 20 20 20-20 20 20 20 20 20 20 69 |, .             i|
0180 73 6e 75 6c 6c 28 6e 2e-46 6f 72 6d 44 65 73 63 |snull(n. FormDesc|
0190 72 69 70 74 69 6f 6e 2c-20 66 2e 46 6f 72 6d 44 |ription,  f.FormD|
01a0 65 73 63 72 69 70 74 69-6f 6e 29 29 29 20 2b 20 |escripti on))) + |
01b0 22 0a 22 20 2b 20 27 28-27 20 2b 20 72 74 72 69 |"." + '( ' + rtri|
01c0 6d 28 66 2e 46 6f 72 6d-49 44 29 20 2b 20 27 29 |m(f.Form ID) + ')|
01d0 27 2c 20 0a 20 20 20 20-20 20 20 20 20 6e 2e 46 |', .          n.F|
01e0 6f 72 6d 52 65 66 65 72-65 6e 7a 2c 0a 20 20 20 |ormRefer enz,.   |
01f0 20 20 20 20 20 20 4e 61-76 69 49 63 6f 6e 20 3d |      Na viIcon =|

net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-20 69 2e 49 63 6f 6e 4e |........  i.IconN|
0010 61 6d 65 2c 0a 20 20 20-20 20 20 20 20 20 41 6b |ame,.          Ak|
0020 74 69 76 20 3d 20 73 69-2e 49 63 6f 6e 4e 61 6d |tiv = si .IconNam|
0030 65 0a 20 20 20 20 20 20-66 72 6f 6d 20 63 61 73 |e.       from cas|
0040 79 2e 2e 4e 61 76 69 4c-65 69 73 74 65 20 6c 2c |y..NaviL eiste l,|
0050 20 63 61 73 79 2e 2e 4e-61 76 69 20 6e 2c 20 23 | casy..N avi n, #|
0060 73 74 61 74 75 73 5f 69-63 6f 6e 73 20 73 69 2c |status_i cons si,|
0070 0a 20 20 20 20 20 20 20-20 20 20 63 61 73 79 2e |.           casy.|
0080 2e 46 6f 72 6d 20 66 2c-20 23 66 6f 72 6d 5f 69 |.Form f,  #form_i|
0090 63 6f 6e 73 20 69 0a 20-20 20 20 20 20 77 68 65 |cons i.       whe|
00a0 72 65 20 6c 2e 4e 61 76-69 49 44 20 3d 20 22 53 |re l.Nav iID = "S|
00b0 74 61 6e 64 61 72 64 22-20 61 6e 64 20 6c 2e 55 |tandard"  and l.U|
00c0 73 65 72 49 64 20 3d 20-2d 31 0a 20 20 20 20 20 |serId =  -1.     |
00d0 20 20 20 61 6e 64 20 28-28 30 20 3d 20 31 29 20 |   and ( (0 = 1) |
00e0 6f 72 20 28 69 73 6e 75-6c 6c 28 6e 2e 53 74 61 |or (isnu ll(n.Sta|
00f0 74 75 73 2c 20 27 41 27-29 20 3d 20 27 41 27 29 |tus, 'A' ) = 'A')|
0100 29 0a 20 20 20 20 20 20-20 20 61 6e 64 20 69 73 |).         and is|
0110 6e 75 6c 6c 28 66 2e 55-73 65 72 4d 61 6e 64 61 |null(f.U serManda|
0120 6e 74 2c 20 27 2a 27 29-20 3d 20 22 63 61 73 79 |nt, '*')  = "casy|
0130 22 0a 20 20 20 20 20 20-20 20 61 6e 64 20 28 28 |".         and ((|
0140 31 20 3d 20 31 20 61 6e-64 20 66 2e 46 6f 72 6d |1 = 1 an d f.Form|
0150 49 44 20 69 6e 20 28 27-53 74 61 72 74 55 70 27 |ID in (' StartUp'|
0160 2c 27 4c 6f 67 69 6e 27-29 29 20 0a 20 20 20 20 |,'Login' )) .    |
0170 20 20 20 20 20 20 6f 72-20 28 31 20 3d 20 30 20 |      or  (1 = 0 |
0180 61 6e 64 20 66 2e 46 6f-72 6d 49 44 20 6e 6f 74 |and f.Fo rmID not|
0190 20 69 6e 20 28 27 53 74-61 72 74 55 70 27 2c 27 | in ('St artUp','|
01a0 4c 6f 67 69 6e 27 29 29-29 0a 20 20 20 20 20 20 |Login')) ).      |
01b0 20 20 61 6e 64 20 6c 2e-4e 61 76 69 49 44 20 3d |  and l. NaviID =|
01c0 20 6e 2e 4e 61 76 69 49-44 20 61 6e 64 20 6c 2e | n.NaviI D and l.|
01d0 55 73 65 72 49 64 20 3d-20 6e 2e 55 73 65 72 49 |UserId =  n.UserI|
01e0 64 0a 20 20 20 20 20 20-20 20 61 6e 64 20 69 73 |d.         and is|
01f0 6e 75 6c 6c 28 6e 2e 53-74 61 74 75 73 2c 20 27 |null(n.S tatus, '|

util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 f1 00 00 00 00-41 27 29 20 2a 3d 20 73 |...ñ.... A') *= s|
0010 69 2e 53 74 61 74 75 73-0a 20 20 20 20 20 20 20 |i.Status .       |
0020 20 61 6e 64 20 6e 2e 46-6f 72 6d 49 44 20 3d 20 | and n.F ormID = |
0030 66 2e 46 6f 72 6d 49 44-0a 20 20 20 20 20 20 20 |f.FormID .       |
0040 20 61 6e 64 20 28 28 69-73 6e 75 6c 6c 28 66 2e | and ((i snull(f.|
0050 4e 61 76 69 47 65 65 69-67 6e 65 74 2c 20 27 4e |NaviGeei gnet, 'N|
0060 27 29 20 3d 20 27 4a 27-29 20 0a 20 20 20 20 20 |') = 'J' ) .     |
0070 20 20 20 20 20 20 20 6f-72 20 28 31 20 3d 20 31 |       o r (1 = 1|
0080 20 61 6e 64 20 69 73 6e-75 6c 6c 28 66 2e 4e 61 | and isn ull(f.Na|
0090 76 69 47 65 65 69 67 6e-65 74 2c 20 27 4e 27 29 |viGeeign et, 'N')|
00a0 20 3d 20 27 54 27 29 29-0a 20 20 20 20 20 20 20 | = 'T')) .       |
00b0 20 61 6e 64 20 66 2e 46-6f 72 6d 54 79 70 20 2a | and f.F ormTyp *|
00c0 3d 20 69 2e 46 6f 72 6d-54 79 70 0a 20 20 20 20 |= i.Form Typ.    |
00d0 20 20 20 20 61 6e 64 20-28 40 53 75 63 68 4d 75 |    and  (@SuchMu|
00e0 73 74 65 72 20 69 73 20-6e 75 6c 6c 20 0a 20 20 |ster is  null .  |
00f0 20 20 20 20 20 20 20 20-6f 72 20 75 70 70 65 72 |         or upper|
0100 28 69 73 6e 75 6c 6c 28-6e 2e 46 6f 72 6d 44 65 |(isnull( n.FormDe|
0110 73 63 72 69 70 74 69 6f-6e 2c 20 66 2e 46 6f 72 |scriptio n, f.For|
0120 6d 44 65 73 63 72 69 70-74 69 6f 6e 29 29 20 6c |mDescrip tion)) l|
0130 69 6b 65 20 40 53 75 63-68 4d 75 73 74 65 72 0a |ike @Suc hMuster.|
0140 20 20 20 20 20 20 20 20-20 20 6f 72 20 75 70 70 |           or upp|
0150 65 72 28 6e 2e 46 6f 72-6d 52 65 66 65 72 65 6e |er(n.For mReferen|
0160 7a 29 20 6c 69 6b 65 20-40 53 75 63 68 4d 75 73 |z) like  @SuchMus|
0170 74 65 72 0a 20 20 20 20-20 20 20 20 20 20 29 0a |ter.           ).|
0180 20 20 20 20 6f 72 64 65-72 20 62 79 20 6e 2e 4e |    orde r by n.N|
0190 61 76 69 50 66 61 64 2c-20 63 68 61 72 69 6e 64 |aviPfad,  charind|
01a0 65 78 28 66 2e 46 6f 72-6d 54 79 70 2c 27 48 41 |ex(f.For mTyp,'HA|
01b0 4d 45 44 53 27 29 2c 20-0a 20 20 20 20 20 20 69 |MEDS'),  .      i|
01c0 73 6e 75 6c 6c 28 6e 2e-46 6f 72 6d 44 65 73 63 |snull(n. FormDesc|
01d0 72 69 70 74 69 6f 6e 2c-20 66 2e 46 6f 72 6d 44 |ription,  f.FormD|
01e0 65 73 63 72 69 70 74 69-6f 6e 29 0a 20 20 20 20 |escripti on).    |
01f0 0a                     -                        |.|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe5c8, 0x14fe5cc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 01 b4 00 00 00 00-                        |...´....|

net.c:609:Received packet
0000 04 01 01 b4 00 00 00 00-fd 11 00 02 00 01 00 00 |...´.... ý.......|
0010 00 fd 01 00 02 00 00 00-00 00 61 1d 01 00 00 07 |.ý...... ..a.....|
0020 00 00 00 00 04 4e 61 76-69 06 4c 66 64 4e 72 32 |.....Nav i.LfdNr2|
0030 10 00 00 00 07 00 00 00-38 00 08 4e 61 76 69 50 |........ 8..NaviP|
0040 66 61 64 00 00 04 4e 61-76 69 08 4e 61 76 69 50 |fad...Na vi.NaviP|
0050 66 61 64 30 00 00 00 02-00 00 00 af fe 01 00 00 |fad0.... ...¯þ...|
0060 00 0f 4e 61 76 69 42 65-7a 65 69 63 68 6e 75 6e |..NaviBe zeichnun|
0070 67 00 00 00 0f 4e 61 76-69 42 65 7a 65 69 63 68 |g....Nav iBezeich|
0080 6e 75 6e 67 30 00 00 00-02 00 00 00 af f0 00 00 |nung0... ....¯ð..|
0090 00 00 07 54 6f 6f 6c 74-69 70 00 00 00 07 54 6f |...Toolt ip....To|
00a0 6f 6c 74 69 70 30 00 00-00 02 00 00 00 af 40 02 |oltip0.. .....¯@.|
00b0 00 00 00 00 00 00 04 4e-61 76 69 0c 46 6f 72 6d |.......N avi.Form|
00c0 52 65 66 65 72 65 6e 7a-30 00 00 00 02 00 00 00 |Referenz 0.......|
00d0 af fe 01 00 00 00 08 4e-61 76 69 49 63 6f 6e 06 |¯þ.....N aviIcon.|
00e0 74 65 6d 70 64 62 05 67-75 65 73 74 0b 23 66 6f |tempdb.g uest.#fo|
00f0 72 6d 5f 69 63 6f 6e 73-08 49 63 6f 6e 4e 61 6d |rm_icons .IconNam|
0100 65 30 00 00 00 02 00 00-00 af 40 00 00 00 00 05 |e0...... .¯@.....|
0110 41 6b 74 69 76 00 00 0d-23 73 74 61 74 75 73 5f |Aktiv... #status_|
0120 69 63 6f 6e 73 08 49 63-6f 6e 4e 61 6d 65 30 00 |icons.Ic onName0.|
0130 00 00 02 00 00 00 af 40-00 00 00 00 ae 07 00 00 |......¯@ ....®...|
0140 00 00 00 00 00 00 a9 02-00 02 03 d1 9e 00 00 00 |......©. ...Ñ....|
0150 01 00 00 00 2f 05 00 00-00 4c 6f 67 69 6e 0d 00 |..../... .Login..|
0160 00 00 4c 6f 67 69 6e 0a-28 4c 6f 67 69 6e 29 10 |..Login. (Login).|
0170 00 00 00 46 7c 4c 6f 67-69 6e 5f 30 61 7c 32 7c |...F|Log in_0a|2||
0180 4e 7c 4e 19 00 00 00 67-74 6b 2d 64 69 61 6c 6f |N|N....g tk-dialo|
0190 67 2d 61 75 74 68 65 6e-74 69 63 61 74 69 6f 6e |g-authen tication|
01a0 07 00 00 00 67 74 6b 2d-79 65 73 fd 10 00 02 00 |....gtk- yesý....|
01b0 01 00 00 00            -                        |....|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=7
token.c:1837:col 0:
token.c:1838:	column_name=[LfdNr2]
token.c:1844:	flags=10 utype=7 type=56 varint=0
token.c:1847:	colsize=4 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[NaviPfad]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 2:
token.c:1838:	column_name=[NaviBezeichnung]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=240 prec=0 scale=0
token.c:1837:col 3:
token.c:1838:	column_name=[Tooltip]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=576 prec=0 scale=0
token.c:1837:col 4:
token.c:1838:	column_name=[FormReferenz]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 5:
token.c:1838:	column_name=[NaviIcon]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=64 prec=0 scale=0
token.c:1837:col 6:
token.c:1838:	column_name=[Aktiv]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=64 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x14fe5cc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 7
ct.c:2282:ct_describe(0x14285c0, 1, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 56, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 56
ct.c:2282:ct_describe(0x14285c0, 2, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 3, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 240)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 4, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 576)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 5, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 6, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 7, 0x14fe480)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x14fe2dc)
token.c:540:tds_process_tokens(0x1428120, 0x14fe108, 0x14fe10c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x14fe36c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 7
ct.c:2282:ct_describe(0x14285c0, 1, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 56, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 56
ct.c:1457:ct_bind(0x14285c0, 1, 0x14fe220, 0xfc8ee0, (nil), 0x14a5840)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x14fe220, 0x14bd200, (nil), 0x14a5878)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:2282:ct_describe(0x14285c0, 3, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 240)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 3, 0x14fe220, 0x14b51c0, (nil), 0x14a58b0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 3
ct.c:2282:ct_describe(0x14285c0, 4, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 576)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 4, 0x14fe220, 0x14e1870, (nil), 0x14a58e8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 4
ct.c:2282:ct_describe(0x14285c0, 5, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 5, 0x14fe220, 0x131a060, (nil), 0x14a5920)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 5
ct.c:2282:ct_describe(0x14285c0, 6, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 6, 0x14fe220, 0x13f83b0, (nil), 0x14a5958)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 6
ct.c:2282:ct_describe(0x14285c0, 7, 0x14fe170)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 7, 0x14fe220, 0x12ae800, (nil), 0x14a5990)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 7
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14fe82c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe79c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 56, varint size 0
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 4 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 5 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x12ffd00, 0x12ffd00, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 56 and has length 4
ct.c:1907:_ct_get_client_type(type 56, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x13f8b60, 0x14fe680, 0xfc8ee0, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 3
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x14e0f20, 0x14fe680, 0x14bd200, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 240)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x13544e0, 0x14fe680, 0x14b51c0, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (241 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 3 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 576)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x12985c0, 0x14fe680, 0x14e1870, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (577 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 4 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x12e37b0, 0x14fe680, 0x131a060, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 5 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x14ce720, 0x14fe680, 0x13f83b0, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (65 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 6 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
cs.c:523:cs_convert(0x1427ce0, 0x14fe5d0, 0x123d120, 0x14fe680, 0x12ae800, 0x14fe5cc)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (65 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x14fe82c)
ct.c:1122:ct_results(0x14285c0, 0x14fe828)
token.c:540:tds_process_tokens(0x1428120, 0x14fe798, 0x14fe79c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14ced98, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 53 00 00 00 00-21 46 00 00 00 00 20 20 |...S.... !F....  |
0010 20 20 20 20 20 20 64 72-6f 70 20 74 61 62 6c 65 |      dr op table|
0020 20 23 66 6f 72 6d 5f 69-63 6f 6e 73 0a 20 20 20 | #form_i cons.   |
0030 20 20 20 20 20 64 72 6f-70 20 74 61 62 6c 65 20 |     dro p table |
0040 23 73 74 61 74 75 73 5f-69 63 6f 6e 73 0a 20 20 |#status_ icons.  |
0050 20 20 0a               -                        |  .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe5c8, 0x14fe5cc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 1a 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 01 00 1a 00 00 00 00-fd 01 00 02 00 00 00 00 |........ ý.......|
0010 00 fd 00 00 02 00 00 00-00 00                   |.ý...... ..|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x14fe79c)
ct.c:1122:ct_results(0x14285c0, 0x14fe53c)
token.c:540:tds_process_tokens(0x1428120, 0x14fe368, 0x14fe36c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x123be58, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 0b 00 00 00 00-21 fe 00 00 00 00 20 20 |........ !þ....  |
0010 20 20 73 65 6c 65 63 74-20 64 69 73 74 69 6e 63 |  select  distinc|
0020 74 20 4b 65 79 76 61 6c-20 3d 20 46 6f 72 6d 54 |t Keyval  = FormT|
0030 65 78 74 44 2c 20 54 72-61 6e 73 6c 61 74 69 6f |extD, Tr anslatio|
0040 6e 20 3d 20 46 6f 72 6d-54 65 78 74 45 0a 20 20 |n = Form TextE.  |
0050 20 20 66 72 6f 6d 20 63-61 73 79 2e 2e 46 6f 72 |  from c asy..For|
0060 6d 54 65 78 74 20 74 2c-20 63 61 73 79 2e 2e 46 |mText t,  casy..F|
0070 6f 72 6d 54 65 78 74 55-73 65 20 75 0a 20 20 20 |ormTextU se u.   |
0080 20 77 68 65 72 65 20 74-2e 46 6f 72 6d 54 65 78 | where t .FormTex|
0090 74 49 44 20 3d 20 75 2e-46 6f 72 6d 54 65 78 74 |tID = u. FormText|
00a0 49 44 20 61 6e 64 20 46-6f 72 6d 4f 62 6a 20 6c |ID and F ormObj l|
00b0 69 6b 65 20 22 25 22 0a-20 20 20 20 20 20 61 6e |ike "%".       an|
00c0 64 20 75 2e 46 6f 72 6d-49 44 20 3d 20 22 2a 22 |d u.Form ID = "*"|
00d0 0a 20 20 20 20 20 20 61-6e 64 20 46 6f 72 6d 54 |.      a nd FormT|
00e0 65 78 74 45 20 69 73 20-6e 6f 74 20 6e 75 6c 6c |extE is  not null|
00f0 0a 20 20 20 20 6f 72 64-65 72 20 62 79 20 46 6f |.    ord er by Fo|
0100 72 6d 54 65 78 74 44 0a-20 20 0a                |rmTextD.   .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33c0c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 5b 00 00 00 02 00 06 |........ a[......|
0010 4b 65 79 76 61 6c 00 00-08 46 6f 72 6d 54 65 78 |Keyval.. .FormTex|
0020 74 09 46 6f 72 6d 54 65-78 74 44 30 00 00 00 02 |t.FormTe xtD0....|
0030 00 00 00 af fe 01 00 00-00 0b 54 72 61 6e 73 6c |...¯þ... ..Transl|
0040 61 74 69 6f 6e 00 00 08-46 6f 72 6d 54 65 78 74 |ation... FormText|
0050 09 46 6f 72 6d 54 65 78-74 45 30 00 00 00 02 00 |.FormTex tE0.....|
0060 00 00 af fe 01 00 00 00-ae 02 00 00 00 a9 01 00 |..¯þ.... ®....©..|
0070 01 d1 16 00 00 00 20 42-69 74 74 65 20 65 72 6e |.Ñ.... B itte ern|
0080 65 75 74 20 73 74 61 72-74 65 6e 21 10 00 00 00 |eut star ten!....|
0090 20 50 6c 65 61 73 65 20-72 65 73 74 61 72 74 21 | Please  restart!|
00a0 d1 01 00 00 00 25 01 00-00 00 25 d1 03 00 00 00 |Ñ....%.. ..%Ñ....|
00b0 25 20 25 03 00 00 00 25-20 25 d1 05 00 00 00 25 |% %....%  %Ñ....%|
00c0 20 3d 20 25 05 00 00 00-25 20 3d 20 25 d1 22 00 | = %.... % = %Ñ".|
00d0 00 00 25 20 44 61 74 65-6e 73 c3 a4 74 7a 65 20 |..% Date nsätze |
00e0 69 6e 20 44 61 74 65 69-20 65 78 70 6f 72 74 69 |in Datei  exporti|
00f0 65 72 74 2e 2c 00 00 00-25 20 64 61 74 61 20 72 |ert.,... % data r|
0100 65 63 6f 72 64 73 20 68-61 76 65 20 62 65 65 6e |ecords h ave been|
0110 20 65 78 70 6f 72 74 65-64 20 69 6e 74 6f 20 66 | exporte d into f|
0120 69 6c 65 2e d1 0a 00 00-00 25 20 48 69 6e 77 65 |ile.Ñ... .% Hinwe|
0130 69 73 65 09 00 00 00 25-20 72 65 6d 61 72 6b 73 |ise....%  remarks|
0140 d1 0c 00 00 00 25 20 54-65 69 6c 6e 65 68 6d 65 |Ñ....% T eilnehme|
0150 72 0e 00 00 00 25 20 70-61 72 74 69 63 69 70 61 |r....% p articipa|
0160 6e 74 73 d1 27 00 00 00-25 20 64 65 73 20 41 6e |ntsÑ'... % des An|
0170 73 63 68 61 66 66 75 6e-67 73 77 65 72 74 65 73 |schaffun gswertes|
0180 20 28 44 65 67 72 2d 3e-4c 69 6e 65 61 72 29 25 | (Degr-> Linear)%|
0190 00 00 00 25 20 6f 66 20-61 63 71 75 69 73 69 74 |...% of  acquisit|
01a0 69 6f 6e 20 76 61 6c 75-65 20 28 64 65 67 72 2d |ion valu e (degr-|
01b0 3e 6c 69 6e 65 61 72 29-d1 16 00 00 00 25 20 66 |>linear) Ñ....% f|
01c0 65 68 6c 65 6e 64 65 20-5a 75 6f 72 64 6e 75 6e |ehlende  Zuordnun|
01d0 67 65 6e 15 00 00 00 25-20 6d 69 73 73 69 6e 67 |gen....%  missing|
01e0 20 61 6c 6c 6f 63 61 74-69 6f 6e 73 d1 18 00 00 | allocat ionsÑ...|
01f0 00 25 20 67 6c 65 69 63-68 62 6c 65 69 62 65 6e |.% gleic hbleiben|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[Keyval]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[Translation]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c33c9c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c33b50)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c33b50)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x7fff77c339ac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c337d8, 0x7fff77c337dc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x7fff77c33a3c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x7fff77c33840)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x7fff77c338f0, 0x14bd200, (nil), 0x13e8b50)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x7fff77c33840)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x7fff77c338f0, 0x131a060, (nil), 0x13e8b88)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e0f20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b03b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e0f20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b03b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e0f20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b03b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e0f20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b03b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e1cd0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e1cd0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 65 20 4b 6f 6e 74 65 |........ de Konte|
0010 6e 15 00 00 00 25 20 63-6f 6e 74 69 6e 75 6f 75 |n....% c ontinuou|
0020 73 20 61 63 63 6f 75 6e-74 73 d1 38 00 00 00 25 |s accoun tsÑ8...%|
0030 20 69 73 74 20 65 69 6e-20 4c 61 67 65 72 61 72 | ist ein  Lagerar|
0040 74 69 6b 65 6c 2e 20 57-6f 6c 6c 65 6e 20 53 69 |tikel. W ollen Si|
0050 65 20 64 65 6e 20 42 65-73 74 61 6e 64 20 70 72 |e den Be stand pr|
0060 c3 bc 66 65 6e 20 3f 3b-00 00 00 25 20 69 73 20 |üfen ?; ...% is |
0070 61 20 73 74 6f 63 6b 65-64 20 70 72 6f 64 75 63 |a stocke d produc|
0080 74 2e 20 44 6f 20 79 6f-75 20 77 61 6e 74 20 74 |t. Do yo u want t|
0090 6f 20 63 68 65 63 6b 20-74 68 65 20 69 6e 76 65 |o check  the inve|
00a0 6e 74 6f 72 79 3f d1 15-00 00 00 25 20 6e 6f 65 |ntory?Ñ. ...% noe|
00b0 74 69 67 65 20 5a 75 6f-72 64 6e 75 6e 67 65 6e |tige Zuo rdnungen|
00c0 16 00 00 00 25 20 61 6c-6c 6f 63 61 74 69 6f 6e |....% al location|
00d0 73 20 72 65 71 75 69 72-65 64 d1 23 00 00 00 25 |s requir edÑ#...%|
00e0 20 6e 75 72 20 62 65 69-20 53 65 72 76 65 72 64 | nur bei  Serverd|
00f0 72 75 63 6b 20 75 6e 74-65 72 73 74 75 65 74 7a |ruck unt erstuetz|
0100 74 21 29 00 00 00 25 20-69 73 20 6f 6e 6c 79 20 |t!)...%  is only |
0110 61 76 61 69 6c 61 62 6c-65 20 77 69 74 68 20 73 |availabl e with s|
0120 65 72 76 65 72 20 70 72-69 6e 74 69 6e 67 21 d1 |erver pr inting!Ñ|
0130 0a 00 00 00 25 20 73 65-74 20 74 6f 20 25 0a 00 |....% se t to %..|
0140 00 00 25 20 73 65 74 20-74 6f 20 25 d1 17 00 00 |..% set  to %Ñ...|
0150 00 25 20 75 6e 6e 6f 65-74 69 67 65 20 5a 75 6f |.% unnoe tige Zuo|
0160 72 64 6e 75 6e 67 65 6e-19 00 00 00 25 20 75 6e |rdnungen ....% un|
0170 6e 65 63 65 73 73 61 72-79 20 61 6c 6c 6f 63 61 |necessar y alloca|
0180 74 69 6f 6e 73 d1 16 00-00 00 25 20 76 6f 6d 20 |tionsÑ.. ..% vom |
0190 41 6e 73 63 68 61 66 66-75 6e 67 73 77 65 72 74 |Anschaff ungswert|
01a0 16 00 00 00 25 20 6f 66-20 61 63 71 75 69 73 69 |....% of  acquisi|
01b0 74 69 6f 6e 20 76 61 6c-75 65 d1 1a 00 00 00 25 |tion val ueÑ....%|
01c0 20 76 6f 6d 20 57 65 72-74 20 69 6d 20 6c 65 74 | vom Wer t im let|
01d0 7a 74 65 6e 20 4a 61 68-72 14 00 00 00 25 20 6f |zten Jah r....% o|
01e0 66 20 76 61 6c 75 65 20-6c 61 73 74 20 79 65 61 |f value  last yea|
01f0 72 d1 19 00 00 00 25 20-76 6f 6d 20 6a 65 77 65 |rÑ....%  vom jewe|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e1cd0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6c 69 67 65 6e 20 42 |........ iligen B|
0010 75 63 68 77 65 72 74 1a-00 00 00 25 20 6f 66 20 |uchwert. ...% of |
0020 61 70 70 6c 69 63 61 62-6c 65 20 62 6f 6f 6b 20 |applicab le book |
0030 76 61 6c 75 65 d1 03 00-00 00 25 2f 25 03 00 00 |valueÑ.. ..%/%...|
0040 00 25 2f 25 d1 07 00 00-00 25 3a 20 25 3a 20 25 |.%/%Ñ... .%: %: %|
0050 07 00 00 00 25 3a 20 25-3a 20 25 d1 50 00 00 00 |....%: % : %ÑP...|
0060 25 3a 20 42 65 69 20 45-78 70 6f 72 74 20 6d 75 |%: Bei E xport mu|
0070 73 73 20 65 69 6e 65 20-4b 6f 6e 74 61 6b 74 70 |ss eine  Kontaktp|
0080 65 72 73 6f 6e 20 69 6e-20 64 65 72 20 45 6d 70 |erson in  der Emp|
0090 66 c3 a4 6e 67 65 72 61-64 72 65 73 73 65 20 61 |fängera dresse a|
00a0 6e 67 65 67 65 62 65 6e-20 77 65 72 64 65 6e 21 |ngegeben  werden!|
00b0 4f 00 00 00 25 3a 20 49-6e 20 6f 72 64 65 72 20 |O...%: I n order |
00c0 74 6f 20 65 78 70 6f 72-74 2c 20 79 6f 75 20 6d |to expor t, you m|
00d0 75 73 74 20 69 6e 64 69-63 61 74 65 20 61 20 63 |ust indi cate a c|
00e0 6f 6e 74 61 63 74 20 70-65 72 73 6f 6e 20 77 69 |ontact p erson wi|
00f0 74 68 69 6e 20 74 68 65-20 61 64 64 72 65 73 73 |thin the  address|
0100 65 65 21 d1 50 00 00 00-25 3a 20 42 65 69 20 45 |ee!ÑP... %: Bei E|
0110 78 70 6f 72 74 20 6d 75-73 73 20 65 69 6e 65 20 |xport mu ss eine |
0120 54 65 6c 65 66 6f 6e 6e-75 6d 6d 65 72 20 69 6e |Telefonn ummer in|
0130 20 64 65 72 20 45 6d 70-66 c3 a4 6e 67 65 72 61 | der Emp fängera|
0140 64 72 65 73 73 65 20 61-6e 67 65 67 65 62 65 6e |dresse a ngegeben|
0150 20 77 65 72 64 65 6e 21-4d 00 00 00 25 3a 20 49 | werden! M...%: I|
0160 6e 20 6f 72 64 65 72 20-74 6f 20 65 78 70 6f 72 |n order  to expor|
0170 74 2c 20 79 6f 75 20 6d-75 73 74 20 69 6e 64 69 |t, you m ust indi|
0180 63 61 74 65 20 61 20 70-68 6f 6e 65 20 6e 75 6d |cate a p hone num|
0190 62 65 72 20 77 69 74 68-69 6e 20 74 68 65 20 61 |ber with in the a|
01a0 64 64 72 65 73 73 65 65-21 d1 22 00 00 00 25 3a |ddressee !Ñ"...%:|
01b0 20 44 61 73 20 53 74 79-6c 65 73 68 65 65 74 20 | Das Sty lesheet |
01c0 65 78 69 73 74 69 65 72-74 20 6e 69 63 68 74 21 |existier t nicht!|
01d0 22 00 00 00 25 3a 20 54-68 69 73 20 73 74 79 6c |"...%: T his styl|
01e0 65 73 68 65 65 74 20 64-6f 65 73 20 6e 6f 74 20 |esheet d oes not |
01f0 65 78 69 73 74 21 d1 28-00 00 00 25 3a 20 44 61 |exist!Ñ( ...%: Da|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c70f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ef750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ef750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ef750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 65 69 20 6b 61 6e 6e |........ tei kann|
0010 20 6e 69 63 68 74 20 61-75 73 67 65 70 61 63 6b | nicht a usgepack|
0020 74 20 77 65 72 64 65 6e-3a 20 25 17 00 00 00 25 |t werden : %....%|
0030 3a 20 43 61 6e 6e 6f 74-20 75 6e 7a 69 70 20 66 |: Cannot  unzip f|
0040 69 6c 65 3a 20 25 d1 26-00 00 00 25 3a 20 44 61 |ile: %Ñ& ...%: Da|
0050 74 65 69 20 6b 6f 6e 6e-74 65 20 6e 69 63 68 74 |tei konn te nicht|
0060 20 67 65 c3 b6 66 66 6e-65 74 20 77 65 72 64 65 | geöffn et werde|
0070 6e 16 00 00 00 25 3a 20-43 6f 75 6c 64 20 6e 6f |n....%:  Could no|
0080 74 20 6f 70 65 6e 20 66-69 6c 65 d1 60 00 00 00 |t open f ileÑ`...|
0090 25 3a 20 44 65 72 20 42-65 73 74 61 6e 64 20 61 |%: Der B estand a|
00a0 6d 20 4c 61 67 65 72 20-72 65 69 63 68 74 20 65 |m Lager  reicht e|
00b0 76 65 6e 74 75 65 6c 6c-20 6e 69 63 68 74 20 61 |ventuell  nicht a|
00c0 75 73 20 28 31 29 2e 20-57 6f 6c 6c 65 6e 20 53 |us (1).  Wollen S|
00d0 69 65 20 64 69 65 20 53-69 74 75 61 74 69 6f 6e |ie die S ituation|
00e0 20 61 6d 20 4c 61 67 65-72 20 73 65 68 65 6e 3f | am Lage r sehen?|
00f0 4e 00 00 00 25 3a 20 54-68 65 20 69 6e 76 65 6e |N...%: T he inven|
0100 74 6f 72 79 20 6d 61 79-20 6e 6f 74 20 62 65 20 |tory may  not be |
0110 73 75 66 66 69 63 69 65-6e 74 20 28 31 29 2e 20 |sufficie nt (1). |
0120 57 6f 75 6c 64 20 79 6f-75 20 6c 69 6b 65 20 74 |Would yo u like t|
0130 6f 20 63 68 65 63 6b 20-74 68 65 20 73 74 6f 63 |o check  the stoc|
0140 6b 3f d1 60 00 00 00 25-3a 20 44 65 72 20 42 65 |k?Ñ`...% : Der Be|
0150 73 74 61 6e 64 20 61 6d-20 4c 61 67 65 72 20 72 |stand am  Lager r|
0160 65 69 63 68 74 20 65 76-65 6e 74 75 65 6c 6c 20 |eicht ev entuell |
0170 6e 69 63 68 74 20 61 75-73 20 28 32 29 2e 20 57 |nicht au s (2). W|
0180 6f 6c 6c 65 6e 20 53 69-65 20 64 69 65 20 53 69 |ollen Si e die Si|
0190 74 75 61 74 69 6f 6e 20-61 6d 20 4c 61 67 65 72 |tuation  am Lager|
01a0 20 73 65 68 65 6e 3f 4e-00 00 00 25 3a 20 54 68 | sehen?N ...%: Th|
01b0 65 20 69 6e 76 65 6e 74-6f 72 79 20 6d 61 79 20 |e invent ory may |
01c0 6e 6f 74 20 62 65 20 73-75 66 66 69 63 69 65 6e |not be s ufficien|
01d0 74 20 28 32 29 2e 20 57-6f 75 6c 64 20 79 6f 75 |t (2). W ould you|
01e0 20 6c 69 6b 65 20 74 6f-20 63 68 65 63 6b 20 74 | like to  check t|
01f0 68 65 20 73 74 6f 63 6b-3f d1 6a 00 00 00 25 3a |he stock ?Ñj...%:|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ef750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ef750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 96 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 96
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e7710, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (96 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 96 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 96
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e7710, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (96 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 106 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 44 65 72 20 67 65 70 |........  Der gep|
0010 72 c3 bc 66 74 65 20 42-65 73 74 61 6e 64 20 61 |rüfte B estand a|
0020 6d 20 4c 61 67 65 72 20-72 65 69 63 68 74 20 65 |m Lager  reicht e|
0030 76 65 6e 74 75 65 6c 6c-20 6e 69 63 68 74 20 61 |ventuell  nicht a|
0040 75 73 20 28 31 29 2e 20-57 6f 6c 6c 65 6e 20 53 |us (1).  Wollen S|
0050 69 65 20 64 69 65 20 53-69 74 75 61 74 69 6f 6e |ie die S ituation|
0060 20 61 6d 20 4c 61 67 65-72 20 73 65 68 65 6e 3f | am Lage r sehen?|
0070 56 00 00 00 25 3a 20 54-68 65 20 63 68 65 63 6b |V...%: T he check|
0080 65 64 20 69 6e 76 65 6e-74 6f 72 79 20 6d 61 79 |ed inven tory may|
0090 20 6e 6f 74 20 62 65 20-73 75 66 66 69 63 69 65 | not be  sufficie|
00a0 6e 74 20 28 31 29 2e 20-57 6f 75 6c 64 20 79 6f |nt (1).  Would yo|
00b0 75 20 6c 69 6b 65 20 74-6f 20 63 68 65 63 6b 20 |u like t o check |
00c0 74 68 65 20 73 74 6f 63-6b 3f d1 6a 00 00 00 25 |the stoc k?Ñj...%|
00d0 3a 20 44 65 72 20 67 65-70 72 c3 bc 66 74 65 20 |: Der ge prüfte |
00e0 42 65 73 74 61 6e 64 20-61 6d 20 4c 61 67 65 72 |Bestand  am Lager|
00f0 20 72 65 69 63 68 74 20-65 76 65 6e 74 75 65 6c | reicht  eventuel|
0100 6c 20 6e 69 63 68 74 20-61 75 73 20 28 32 29 2e |l nicht  aus (2).|
0110 20 57 6f 6c 6c 65 6e 20-53 69 65 20 64 69 65 20 | Wollen  Sie die |
0120 53 69 74 75 61 74 69 6f-6e 20 61 6d 20 4c 61 67 |Situatio n am Lag|
0130 65 72 20 73 65 68 65 6e-3f 56 00 00 00 25 3a 20 |er sehen ?V...%: |
0140 54 68 65 20 63 68 65 63-6b 65 64 20 69 6e 76 65 |The chec ked inve|
0150 6e 74 6f 72 79 20 6d 61-79 20 6e 6f 74 20 62 65 |ntory ma y not be|
0160 20 73 75 66 66 69 63 69-65 6e 74 20 28 32 29 2e | suffici ent (2).|
0170 20 57 6f 75 6c 64 20 79-6f 75 20 6c 69 6b 65 20 | Would y ou like |
0180 74 6f 20 63 68 65 63 6b-20 74 68 65 20 73 74 6f |to check  the sto|
0190 63 6b 3f d1 9b 00 00 00-25 3a 20 44 69 65 20 56 |ck?Ñ.... %: Die V|
01a0 65 72 73 69 6f 6e 20 64-65 72 20 50 72 c3 bc 66 |ersion d er Prüf|
01b0 76 6f 72 73 63 68 72 69-66 74 20 6b 6f 6e 6e 74 |vorschri ft konnt|
01c0 65 20 6e 69 63 68 74 20-65 72 6d 69 74 74 65 6c |e nicht  ermittel|
01d0 74 20 77 65 72 64 65 6e-2e 20 44 69 65 20 43 68 |t werden . Die Ch|
01e0 61 72 67 65 20 77 69 72-64 20 6f 68 6e 65 20 42 |arge wir d ohne B|
01f0 65 7a 75 67 20 61 75 66-20 65 69 6e 65 20 50 72 |ezug auf  eine Pr|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 106
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (106 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 106 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 106
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (106 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cac50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 155 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-c3 bc 66 76 6f 72 73 63 |........ üfvorsc|
0010 68 72 69 66 74 20 61 6e-67 65 6c 65 67 74 2e 20 |hrift an gelegt. |
0020 4d c3 b6 63 68 74 65 6e-20 53 69 65 20 77 65 69 |Möchten  Sie wei|
0030 74 65 72 6d 61 63 68 65-6e 20 3f 70 00 00 00 25 |termache n ?p...%|
0040 3a 20 54 65 73 74 20 72-65 67 75 6c 61 74 69 6f |: Test r egulatio|
0050 6e 20 76 65 72 73 69 6f-6e 20 6e 6f 74 20 66 6f |n versio n not fo|
0060 75 6e 64 2e 20 54 68 65-20 62 61 74 63 68 20 77 |und. The  batch w|
0070 69 6c 6c 20 62 65 20 65-73 74 61 62 6c 69 73 68 |ill be e stablish|
0080 65 64 20 77 69 74 68 6f-75 74 20 72 65 66 65 72 |ed witho ut refer|
0090 65 6e 63 65 20 74 6f 20-61 20 72 65 67 75 6c 61 |ence to  a regula|
00a0 74 69 6f 6e 2e 20 43 6f-6e 74 69 6e 75 65 3f d1 |tion. Co ntinue?Ñ|
00b0 49 00 00 00 25 3a 20 45-72 65 69 67 6e 69 73 52 |I...%: E reignisR|
00c0 65 61 6b 74 69 6f 6e 20-27 79 27 20 69 67 6e 6f |eaktion  'y' igno|
00d0 72 69 65 72 74 20 2d 20-4c 75 61 20 46 75 6e 6b |riert -  Lua Funk|
00e0 74 69 6f 6e 73 6e 61 6d-65 20 66 65 68 6c 74 20 |tionsnam e fehlt |
00f0 69 6e 20 64 65 72 20 41-6b 74 69 6f 6e 4f 00 00 |in der A ktionO..|
0100 00 25 3a 20 53 79 73 2d-65 76 65 6e 74 20 72 65 |.%: Sys- event re|
0110 61 63 74 69 6f 6e 20 27-79 27 20 77 69 6c 6c 20 |action ' y' will |
0120 62 65 20 69 67 6e 6f 72-65 64 20 2d 20 4c 75 61 |be ignor ed - Lua|
0130 20 66 75 6e 63 74 69 6f-6e 20 6e 61 6d 65 20 6d | functio n name m|
0140 69 73 73 69 6e 67 20 69-6e 20 61 63 74 69 6f 6e |issing i n action|
0150 d1 3c 00 00 00 25 3a 20-45 72 65 69 67 6e 69 73 |Ñ<...%:  Ereignis|
0160 52 65 61 6b 74 69 6f 6e-20 69 67 6e 6f 72 69 65 |Reaktion  ignorie|
0170 72 74 20 2d 20 52 65 61-6b 74 69 6f 6e 73 61 72 |rt - Rea ktionsar|
0180 74 20 69 73 74 20 75 6e-67 c3 bc 6c 74 69 67 20 |t ist un gültig |
0190 21 3a 00 00 00 25 3a 20-53 79 73 45 76 65 6e 74 |!:...%:  SysEvent|
01a0 52 65 61 63 74 69 6f 6e-20 69 67 6e 6f 72 65 64 |Reaction  ignored|
01b0 20 2d 20 72 65 61 63 74-69 6f 6e 20 74 79 70 65 | - react ion type|
01c0 20 69 73 20 69 6e 76 61-6c 75 61 62 6c 65 21 d1 | is inva luable!Ñ|
01d0 24 00 00 00 25 3a 20 49-6e 68 61 6c 74 73 76 65 |$...%: I nhaltsve|
01e0 72 7a 65 69 63 68 6e 69-73 20 6e 69 63 68 74 20 |rzeichni s nicht |
01f0 67 65 66 75 6e 64 65 6e-1e 00 00 00 25 3a 20 54 |gefunden ....%: T|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 112 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 155
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (155 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 112
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (112 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 62 6c 65 20 6f 66 20 |........ able of |
0010 63 6f 6e 74 65 6e 74 73-20 6e 6f 74 20 66 6f 75 |contents  not fou|
0020 6e 64 d1 24 00 00 00 25-3a 20 4b 61 6e 6e 20 41 |ndÑ$...% : Kann A|
0030 75 73 67 61 62 65 64 61-74 65 69 20 6e 69 63 68 |usgabeda tei nich|
0040 74 20 73 70 65 69 63 68-65 72 6e 1a 00 00 00 25 |t speich ern....%|
0050 3a 20 43 61 6e 6e 6f 74-20 73 61 76 65 20 6f 75 |: Cannot  save ou|
0060 74 70 75 74 20 66 69 6c-65 d1 1e 00 00 00 25 3a |tput fil eÑ....%:|
0070 20 4b 61 6e 6e 20 44 61-74 65 69 20 6e 69 63 68 | Kann Da tei nich|
0080 74 20 73 63 68 6c 69 65-73 73 65 6e 14 00 00 00 |t schlie ssen....|
0090 25 3a 20 43 61 6e 6e 6f-74 20 63 6c 6f 73 65 20 |%: Canno t close |
00a0 66 69 6c 65 d1 29 00 00-00 25 3a 20 4b 61 6e 6e |fileÑ).. .%: Kann|
00b0 20 44 61 74 65 69 20 6e-69 63 68 74 20 7a 75 6d | Datei n icht zum|
00c0 20 73 63 68 72 65 69 62-65 6e 20 c3 b6 66 66 6e | schreib en öffn|
00d0 65 6e 1c 00 00 00 25 3a-20 43 61 6e 6e 6f 74 20 |en....%:  Cannot |
00e0 6f 70 65 6e 20 66 69 6c-65 20 74 6f 20 77 72 69 |open fil e to wri|
00f0 74 65 d1 1b 00 00 00 25-3a 20 4b 61 6e 6e 20 44 |teÑ....% : Kann D|
0100 61 74 65 69 20 6e 69 63-68 74 20 c3 b6 66 66 6e |atei nic ht öffn|
0110 65 6e 13 00 00 00 25 3a-20 43 61 6e 6e 6f 74 20 |en....%:  Cannot |
0120 6f 70 65 6e 20 66 69 6c-65 d1 2d 00 00 00 25 3a |open fil eÑ-...%:|
0130 20 4b 65 69 6e 65 20 61-75 74 2e 20 42 75 63 68 | Keine a ut. Buch|
0140 75 6e 67 20 77 65 67 65-6e 20 65 78 69 73 74 69 |ung wege n existi|
0150 65 72 65 6e 64 65 72 20-56 50 45 29 00 00 00 25 |erender  VPE)...%|
0160 3a 20 4e 6f 20 61 75 74-6f 6d 61 74 69 63 20 70 |: No aut omatic p|
0170 6f 73 74 69 6e 67 20 64-75 65 20 74 6f 20 6d 69 |osting d ue to mi|
0180 73 73 69 6e 67 20 50 55-d1 2d 00 00 00 25 3a 20 |ssing PU Ñ-...%: |
0190 4b 65 69 6e 65 20 61 75-74 2e 20 42 75 63 68 75 |Keine au t. Buchu|
01a0 6e 67 20 77 65 67 65 6e-20 75 6e 67 c3 bc 6c 74 |ng wegen  ungült|
01b0 69 67 65 72 20 56 50 45-20 25 2b 00 00 00 25 3a |iger VPE  %+...%:|
01c0 20 4e 6f 20 61 75 74 6f-6d 61 74 69 63 20 70 6f | No auto matic po|
01d0 73 74 69 6e 67 20 64 75-65 20 74 6f 20 69 6e 76 |sting du e to inv|
01e0 61 6c 69 64 20 50 55 20-25 d1 3f 00 00 00 25 3a |alid PU  %Ñ?...%:|
01f0 20 4d 61 78 69 6d 61 6c-67 65 77 69 63 68 74 20 | Maximal gewicht |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a5be0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x142a7c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce600, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x142a7c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-28 25 20 6b 67 29 20 c3 |........ (% kg) Ã|
0010 bc 62 65 72 73 63 68 72-69 74 74 65 6e 20 2d 20 |¼berschr itten - |
0020 50 61 6b 65 74 20 25 20-6b 67 20 7a 75 20 73 63 |Paket %  kg zu sc|
0030 68 77 65 72 21 43 00 00-00 25 3a 20 4d 61 78 69 |hwer!C.. .%: Maxi|
0040 6d 75 6d 20 77 65 69 67-68 74 20 28 25 20 6b 67 |mum weig ht (% kg|
0050 73 29 20 65 78 63 65 65-64 65 64 20 2d 20 74 68 |s) excee ded - th|
0060 65 20 70 61 72 63 65 6c-20 69 73 20 25 20 6b 67 |e parcel  is % kg|
0070 73 20 74 6f 6f 20 68 65-61 76 79 21 d1 15 00 00 |s too he avy!Ñ...|
0080 00 25 3a 20 4d 69 6e 48-61 6c 74 62 61 72 54 61 |.%: MinH altbarTa|
0090 67 65 20 3d 20 25 15 00-00 00 25 3a 20 4d 69 6e |ge = %.. ..%: Min|
00a0 48 61 6c 74 62 61 72 54-61 67 65 20 3d 20 25 d1 |HaltbarT age = %Ñ|
00b0 3f 00 00 00 25 3a 20 4d-69 6e 69 6d 61 6c 67 65 |?...%: M inimalge|
00c0 77 69 63 68 74 20 28 25-20 6b 67 29 20 75 6e 74 |wicht (%  kg) unt|
00d0 65 72 73 63 68 72 69 74-74 65 6e 20 2d 20 50 61 |erschrit ten - Pa|
00e0 6b 65 74 20 25 20 6b 67-20 7a 75 20 6c 65 69 63 |ket % kg  zu leic|
00f0 68 74 21 40 00 00 00 25-3a 20 62 65 6c 6f 77 20 |ht!@...% : below |
0100 6d 69 6e 69 6d 75 6d 20-77 65 69 67 68 74 20 28 |minimum  weight (|
0110 25 20 6b 67 73 29 20 2d-20 74 68 65 20 70 61 72 |% kgs) -  the par|
0120 63 65 6c 20 69 73 20 25-20 6b 67 73 20 74 6f 6f |cel is %  kgs too|
0130 20 6c 69 67 68 74 21 d1-4b 00 00 00 25 3a 20 53 | light!Ñ K...%: S|
0140 6f 6c 6c 20 64 69 65 20-61 75 74 6f 6d 61 74 69 |oll die  automati|
0150 73 63 68 65 20 41 75 73-62 75 63 68 75 6e 67 20 |sche Aus buchung |
0160 70 65 72 20 25 20 61 75-73 20 4c 61 67 65 72 20 |per % au s Lager |
0170 28 25 29 20 76 6f 72 67-65 6e 6f 6d 6d 65 6e 20 |(%) vorg enommen |
0180 77 65 72 64 65 6e 3f 46-00 00 00 25 3a 20 53 68 |werden?F ...%: Sh|
0190 6f 75 6c 64 20 61 6e 20-61 75 74 6f 6d 61 74 69 |ould an  automati|
01a0 63 20 63 68 65 63 6b 2d-6f 75 74 20 61 73 20 61 |c check- out as a|
01b0 74 20 25 20 66 72 6f 6d-20 73 74 6f 63 6b 20 28 |t % from  stock (|
01c0 25 29 20 62 65 20 75 6e-64 65 72 74 61 6b 65 6e |%) be un dertaken|
01d0 3f d1 59 00 00 00 25 3a-20 53 6f 6c 6c 20 64 69 |?ÑY...%:  Soll di|
01e0 65 20 61 75 74 6f 6d 61-74 69 73 63 68 65 20 45 |e automa tische E|
01f0 69 6e 62 75 63 68 75 6e-67 20 70 65 72 20 25 20 |inbuchun g per % |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a1aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 89 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 6e 20 53 74 61 6e 64 |........ an Stand|
0010 6f 72 74 20 25 20 69 6e-73 20 4c 61 67 65 72 20 |ort % in s Lager |
0020 28 25 29 20 76 6f 72 67-65 6e 6f 6d 6d 65 6e 20 |(%) vorg enommen |
0030 77 65 72 64 65 6e 3f 4f-00 00 00 25 3a 20 53 68 |werden?O ...%: Sh|
0040 6f 75 6c 64 20 61 6e 20-61 75 74 6f 6d 61 74 69 |ould an  automati|
0050 63 20 63 68 65 63 6b 2d-69 6e 20 61 73 20 61 74 |c check- in as at|
0060 20 25 20 69 6e 20 6c 6f-63 61 74 69 6f 6e 20 25 | % in lo cation %|
0070 2c 20 73 74 6f 63 6b 20-28 25 29 20 62 65 20 75 |, stock  (%) be u|
0080 6e 64 65 72 74 61 6b 65-6e 3f d1 57 00 00 00 25 |ndertake n?ÑW...%|
0090 3a 20 53 6f 6c 6c 20 64-69 65 20 61 75 74 6f 6d |: Soll d ie autom|
00a0 61 74 69 73 63 68 65 20-55 6d 62 75 63 68 75 6e |atische  Umbuchun|
00b0 67 20 70 65 72 20 25 20-61 75 73 20 4c 61 67 65 |g per %  aus Lage|
00c0 72 20 28 25 29 20 7a 75-20 4c 61 67 65 72 20 28 |r (%) zu  Lager (|
00d0 25 29 20 76 6f 72 67 65-6e 6f 6d 6d 65 6e 20 77 |%) vorge nommen w|
00e0 65 72 64 65 6e 3f 51 00-00 00 25 3a 20 53 68 6f |erden?Q. ..%: Sho|
00f0 75 6c 64 20 61 6e 20 61-75 74 6f 6d 61 74 69 63 |uld an a utomatic|
0100 20 70 6f 73 74 69 6e 67-20 61 73 20 61 74 20 25 | posting  as at %|
0110 20 66 72 6f 6d 20 73 74-6f 63 6b 20 28 25 29 20 | from st ock (%) |
0120 74 6f 20 73 74 6f 63 6b-20 28 25 29 20 62 65 20 |to stock  (%) be |
0130 75 6e 64 65 72 74 61 6b-65 6e 3f d1 47 00 00 00 |undertak en?ÑG...|
0140 25 3a 20 53 6f 6c 6c 20-65 69 6e 65 20 77 65 69 |%: Soll  eine wei|
0150 74 65 72 65 20 41 75 73-62 75 63 68 75 6e 67 20 |tere Aus buchung |
0160 70 65 72 20 25 20 61 75-73 20 4c 61 67 65 72 20 |per % au s Lager |
0170 28 25 29 20 76 6f 72 67-65 6e 6f 6d 6d 65 6e 20 |(%) vorg enommen |
0180 77 65 72 64 65 6e 3f 48-00 00 00 25 3a 20 53 68 |werden?H ...%: Sh|
0190 6f 75 6c 64 20 61 6e 20-61 64 64 69 74 69 6f 6e |ould an  addition|
01a0 61 6c 20 63 68 65 63 6b-2d 6f 75 74 20 20 61 73 |al check -out  as|
01b0 20 61 74 20 25 20 66 72-6f 6d 20 73 74 6f 63 6b | at % fr om stock|
01c0 20 28 25 29 20 62 65 20-75 6e 64 65 72 74 61 6b | (%) be  undertak|
01d0 65 6e 3f d1 55 00 00 00-25 3a 20 53 6f 6c 6c 20 |en?ÑU... %: Soll |
01e0 65 69 6e 65 20 77 65 69-74 65 72 65 20 45 69 6e |eine wei tere Ein|
01f0 62 75 63 68 75 6e 67 20-70 65 72 20 25 20 61 6e |buchung  per % an|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 89
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (89 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 81 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 81
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (81 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 85 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 53 74 61 6e 64 6f 72 |........  Standor|
0010 74 20 25 20 69 6e 73 20-4c 61 67 65 72 20 28 25 |t % ins  Lager (%|
0020 29 20 76 6f 72 67 65 6e-6f 6d 6d 65 6e 20 77 65 |) vorgen ommen we|
0030 72 64 65 6e 3f 50 00 00-00 25 3a 20 53 68 6f 75 |rden?P.. .%: Shou|
0040 6c 64 20 61 6e 20 61 64-64 69 74 69 6f 6e 61 6c |ld an ad ditional|
0050 20 63 68 65 63 6b 2d 69-6e 20 61 73 20 61 74 20 | check-i n as at |
0060 25 20 69 6e 20 6c 6f 63-61 74 69 6f 6e 20 25 2c |% in loc ation %,|
0070 20 73 74 6f 63 6b 20 28-25 29 20 62 65 20 75 6e | stock ( %) be un|
0080 64 65 72 74 61 6b 65 6e-3f d1 53 00 00 00 25 3a |dertaken ?ÑS...%:|
0090 20 53 6f 6c 6c 20 65 69-6e 65 20 77 65 69 74 65 | Soll ei ne weite|
00a0 72 65 20 55 6d 62 75 63-68 75 6e 67 20 70 65 72 |re Umbuc hung per|
00b0 20 25 20 61 75 73 20 4c-61 67 65 72 20 28 25 29 | % aus L ager (%)|
00c0 20 7a 75 20 4c 61 67 65-72 20 28 25 29 20 76 6f | zu Lage r (%) vo|
00d0 72 67 65 6e 6f 6d 6d 65-6e 20 77 65 72 64 65 6e |rgenomme n werden|
00e0 3f 52 00 00 00 25 3a 20-53 68 6f 75 6c 64 20 61 |?R...%:  Should a|
00f0 6e 20 61 64 64 69 74 69-6f 6e 61 6c 20 70 6f 73 |n additi onal pos|
0100 74 69 6e 67 20 61 73 20-61 74 20 25 20 66 72 6f |ting as  at % fro|
0110 6d 20 73 74 6f 63 6b 20-28 25 29 20 74 6f 20 73 |m stock  (%) to s|
0120 74 6f 63 6b 20 28 25 29-20 62 65 20 75 6e 64 65 |tock (%)  be unde|
0130 72 74 61 6b 65 6e 3f d1-0e 00 00 00 25 3a 20 56 |rtaken?Ñ ....%: V|
0140 69 73 20 25 20 54 61 62-20 25 0e 00 00 00 25 3a |is % Tab  %....%:|
0150 20 56 69 73 20 25 20 54-61 62 20 25 d1 42 00 00 | Vis % T ab %ÑB..|
0160 00 25 3a 20 58 4d 4c 2d-44 61 74 65 69 20 6b 6f |.%: XML- Datei ko|
0170 6e 6e 74 65 20 6e 69 63-68 74 20 65 72 7a 65 75 |nnte nic ht erzeu|
0180 67 74 20 77 65 72 64 65-6e 20 28 44 65 74 61 69 |gt werde n (Detai|
0190 6c 73 20 73 69 65 68 65-20 63 61 73 79 2e 6c 6f |ls siehe  casy.lo|
01a0 67 29 21 3f 00 00 00 25-3a 20 58 4d 4c 20 66 69 |g)!?...% : XML fi|
01b0 6c 65 20 63 6f 75 6c 64-20 6e 6f 74 20 62 65 20 |le could  not be |
01c0 63 72 65 61 74 65 64 20-28 66 6f 72 20 64 65 74 |created  (for det|
01d0 61 69 6c 73 2c 20 63 68-65 63 6b 20 63 61 73 79 |ails, ch eck casy|
01e0 2e 6c 6f 67 29 21 d1 1d-00 00 00 25 3a 20 69 73 |.log)!Ñ. ...%: is|
01f0 74 20 65 69 6e 20 50 73-65 75 64 6f 2d 41 72 74 |t ein Ps eudo-Art|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 85
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (85 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 83 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 83
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (83 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6b 65 6c 2c 20 56 25 |........ ikel, V%|
0010 17 00 00 00 25 20 69 73-20 61 20 70 73 65 75 64 |....% is  a pseud|
0020 6f 20 61 72 74 69 63 6c-65 20 25 d1 18 00 00 00 |o articl e %Ñ....|
0030 25 3a 20 69 73 74 20 6b-65 69 6e 20 4c 61 67 65 |%: ist k ein Lage|
0040 72 61 72 74 69 6b 65 6c-19 00 00 00 25 3a 20 69 |rartikel ....%: i|
0050 73 20 6e 6f 74 20 61 20-73 74 6f 63 6b 20 61 72 |s not a  stock ar|
0060 74 69 63 6c 65 d1 22 00-00 00 25 3a 20 6b 61 6e |ticleÑ". ..%: kan|
0070 6e 20 41 75 73 67 61 62-65 64 61 74 65 69 20 6e |n Ausgab edatei n|
0080 69 63 68 74 20 61 6e 6c-65 67 65 6e 1c 00 00 00 |icht anl egen....|
0090 25 3a 20 43 61 6e 6e 6f-74 20 63 72 65 61 74 65 |%: Canno t create|
00a0 20 6f 75 74 70 75 74 20-66 69 6c 65 d1 1f 00 00 | output  fileÑ...|
00b0 00 25 3a 20 6b 65 69 6e-20 75 6e 74 65 72 73 74 |.%: kein  unterst|
00c0 c3 bc 74 7a 74 65 72 20-44 61 74 65 69 74 79 70 |ützter  Dateityp|
00d0 1a 00 00 00 25 3a 20 46-69 6c 65 20 74 79 70 65 |....%: F ile type|
00e0 20 6e 6f 74 20 73 75 70-70 6f 72 74 65 64 d1 1a | not sup portedÑ.|
00f0 00 00 00 25 3a 20 75 6e-7a 75 6c c3 a4 73 73 69 |...%: un zulässi|
0100 67 20 66 c3 bc 72 20 4c-61 6e 64 20 25 1c 00 00 |g für L and %...|
0110 00 25 3a 20 6e 6f 74 20-61 6c 6c 6f 77 65 64 20 |.%: not  allowed |
0120 66 6f 72 20 63 6f 75 6e-74 72 79 20 25 d1 0a 00 |for coun try %Ñ..|
0130 00 00 28 31 29 20 53 74-61 6f 20 25 09 00 00 00 |..(1) St ao %....|
0140 28 31 29 20 4c 6f 63 20-25 d1 0a 00 00 00 28 32 |(1) Loc  %Ñ....(2|
0150 29 20 53 74 61 6f 20 25-09 00 00 00 28 32 29 20 |) Stao % ....(2) |
0160 4c 6f 63 20 25 d1 0a 00-00 00 28 33 29 20 53 74 |Loc %Ñ.. ..(3) St|
0170 61 6f 20 25 09 00 00 00-28 33 29 20 4c 6f 63 20 |ao %.... (3) Loc |
0180 25 d1 37 00 00 00 30 2c-38 2d 66 72 65 69 20 31 |%Ñ7...0, 8-frei 1|
0190 2c 39 2c 31 30 2c 31 31-2c 31 32 2c 31 33 2c 31 |,9,10,11 ,12,13,1|
01a0 34 2c 31 35 2d 6c 69 6e-20 32 2c 33 2c 34 2c 37 |4,15-lin  2,3,4,7|
01b0 2d 64 65 67 20 35 2c 36-2d 70 72 6f 67 37 00 00 |-deg 5,6 -prog7..|
01c0 00 30 2c 38 2d 66 72 65-65 20 31 2c 39 2c 31 30 |.0,8-fre e 1,9,10|
01d0 2c 31 31 2c 31 32 2c 31-33 2c 31 34 2c 31 35 2d |,11,12,1 3,14,15-|
01e0 6c 69 6e 20 32 2c 33 2c-34 2c 37 2d 64 65 67 20 |lin 2,3, 4,7-deg |
01f0 35 2c 36 2d 70 72 6f 67-d1 25 00 00 00 31 2d 50 |5,6-prog Ñ%...1-P|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14abb20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11ddb40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 69 6d 20 47 72 70 20 |........ rim Grp |
0010 25 20 53 65 6b 20 47 72-70 20 25 20 57 61 6e 74 |% Sek Gr p % Want|
0020 65 64 20 3e 25 3c 20 53-20 25 25 00 00 00 31 2d |ed >%< S  %%...1-|
0030 50 72 69 6d 20 47 72 70-20 25 20 53 65 6b 20 47 |Prim Grp  % Sek G|
0040 72 70 20 25 20 57 61 6e-74 65 64 20 3e 25 3c 20 |rp % Wan ted >%< |
0050 53 20 25 d1 03 00 00 00-31 3a 25 04 00 00 00 31 |S %Ñ.... 1:%....1|
0060 20 3a 25 d1 21 00 00 00-32 2d 50 72 69 6d 20 47 | :%Ñ!... 2-Prim G|
0070 72 70 20 25 20 53 65 6b-20 47 72 70 20 25 20 57 |rp % Sek  Grp % W|
0080 61 6e 74 65 64 20 3e 25-3c 21 00 00 00 32 2d 50 |anted >% <!...2-P|
0090 72 69 6d 20 47 72 70 20-25 20 53 65 6b 20 47 72 |rim Grp  % Sek Gr|
00a0 70 20 25 20 57 61 6e 74-65 64 20 3e 25 3c d1 0a |p % Want ed >%<Ñ.|
00b0 00 00 00 32 2e 20 56 65-72 73 75 63 68 07 00 00 |...2. Ve rsuch...|
00c0 00 32 6e 64 20 74 72 79-d1 07 00 00 00 32 3a 25 |.2nd try Ñ....2:%|
00d0 2c 25 2c 25 07 00 00 00-32 3a 25 2c 25 2c 25 d1 |,%,%.... 2:%,%,%Ñ|
00e0 0a 00 00 00 33 2e 20 56-65 72 73 75 63 68 07 00 |....3. V ersuch..|
00f0 00 00 33 72 64 20 74 72-79 d1 0a 00 00 00 34 2e |..3rd tr yÑ....4.|
0100 20 56 65 72 73 75 63 68-07 00 00 00 34 74 68 20 | Versuch ....4th |
0110 74 72 79 d1 0a 00 00 00-35 2e 20 56 65 72 73 75 |tryÑ.... 5. Versu|
0120 63 68 07 00 00 00 35 74-68 20 74 72 79 d1 40 00 |ch....5t h tryÑ@.|
0130 00 00 3c 25 3e 20 69 73-74 20 6b 65 69 6e 20 7a |..<%> is t kein z|
0140 75 6c c3 a4 73 73 69 67-65 72 20 49 44 2d 43 6f |ulässig er ID-Co|
0150 64 65 2e 5c 6e 5c 6e 5a-75 6c c3 a4 73 73 69 67 |de.\n\nZ ulässig|
0160 65 20 5a 65 69 63 68 65-6e 20 73 69 6e 64 3a 5c |e Zeiche n sind:\|
0170 6e 25 3a 00 00 00 3c 25-3e 20 69 73 20 6e 6f 20 |n%:...<% > is no |
0180 63 6f 72 72 65 63 74 20-49 44 20 63 6f 64 65 2e |correct  ID code.|
0190 5c 6e 5c 6e 54 68 65 20-70 65 72 6d 69 74 74 65 |\n\nThe  permitte|
01a0 64 20 64 69 67 69 74 73-20 61 72 65 3a 5c 6e 25 |d digits  are:\n%|
01b0 d1 05 00 00 00 3c 25 3e-2c 25 05 00 00 00 3c 25 |Ñ....<%> ,%....<%|
01c0 3e 2c 25 d1 06 00 00 00-3c 25 3e 3c 25 3e 06 00 |>,%Ñ.... <%><%>..|
01d0 00 00 3c 25 3e 3c 25 3e-d1 03 00 00 00 3e 25 3c |..<%><%> Ñ....>%<|
01e0 03 00 00 00 3e 25 3c d1-07 00 00 00 41 42 42 52 |....>%<Ñ ....ABBR|
01f0 55 43 48 05 00 00 00 41-42 4f 52 54 d1 51 00 00 |UCH....A BORTÑQ..|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b91a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f80d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 41 42 42 52 55 43 48 |........ .ABBRUCH|
0010 20 77 65 67 65 6e 20 46-65 68 6c 65 72 20 69 6e | wegen F ehler in|
0020 20 56 53 50 57 65 72 74-54 65 73 74 65 6e 2c 20 | VSPWert Testen, |
0030 7a 2e 42 2e 20 77 65 67-65 6e 20 4b 6f 6d 6d 61 |z.B. weg en Komma|
0040 20 69 6e 20 55 6e 74 65-72 2d 20 6f 64 65 72 20 | in Unte r- oder |
0050 4f 62 65 72 67 72 65 6e-7a 65 48 00 00 00 41 42 |Obergren zeH...AB|
0060 4f 52 54 20 64 75 65 20-74 6f 20 65 72 72 6f 72 |ORT due  to error|
0070 73 20 69 6e 20 56 53 50-57 65 72 74 54 65 73 74 |s in VSP WertTest|
0080 65 6e 2c 20 65 2e 67 2e-20 63 6f 6d 6d 61 20 69 |en, e.g.  comma i|
0090 6e 20 6c 6f 77 65 72 20-6f 72 20 75 70 70 65 72 |n lower  or upper|
00a0 20 6c 69 6d 69 74 d1 26-00 00 00 41 42 42 52 55 | limitÑ& ...ABBRU|
00b0 43 48 3a 20 45 73 20 73-74 65 68 65 6e 20 6b 65 |CH: Es s tehen ke|
00c0 69 6e 65 20 44 61 74 65-6e 20 62 65 72 65 69 74 |ine Date n bereit|
00d0 21 17 00 00 00 41 42 4f-52 54 3a 20 4e 6f 20 64 |!....ABO RT: No d|
00e0 61 74 61 20 72 65 63 6f-72 64 73 21 d1 27 00 00 |ata reco rds!Ñ'..|
00f0 00 41 42 42 52 55 43 48-3a 20 4b 65 69 6e 65 20 |.ABBRUCH : Keine |
0100 41 75 73 67 61 62 65 65-69 6e 68 65 69 74 20 67 |Ausgabee inheit g|
0110 65 77 c3 a4 68 6c 74 2e-1e 00 00 00 41 42 4f 52 |ewählt. ....ABOR|
0120 54 3a 20 4e 6f 20 6f 75-74 70 75 74 20 75 6e 69 |T: No ou tput uni|
0130 74 20 73 65 6c 65 63 74-65 64 d1 2d 00 00 00 41 |t select edÑ-...A|
0140 42 4c 41 55 46 2d 46 65-68 6c 65 72 3a 20 45 73 |BLAUF-Fe hler: Es|
0150 20 77 75 72 64 65 20 6b-65 69 6e 20 57 65 72 74 | wurde k ein Wert|
0160 20 65 69 6e 67 65 67 65-62 65 6e 21 20 00 00 00 | eingege ben! ...|
0170 50 72 6f 63 65 64 75 72-65 20 65 72 72 6f 72 3a |Procedur e error:|
0180 20 4e 6f 20 76 61 6c 75-65 20 65 6e 74 72 79 21 | No valu e entry!|
0190 d1 54 00 00 00 41 43 48-54 55 4e 47 20 21 20 44 |ÑT...ACH TUNG ! D|
01a0 61 73 20 69 73 74 20 6b-65 69 6e 20 50 72 6f 64 |as ist k ein Prod|
01b0 75 6b 74 69 6f 6e 73 61-75 66 74 72 61 67 2e 20 |uktionsa uftrag. |
01c0 57 6f 6c 6c 65 6e 20 53-69 65 20 74 72 6f 74 7a |Wollen S ie trotz|
01d0 64 65 6d 20 65 69 6e 65-20 43 68 61 72 67 65 20 |dem eine  Charge |
01e0 61 6e 6c 65 67 65 6e 20-3f 44 00 00 00 41 54 54 |anlegen  ?D...ATT|
01f0 45 4e 54 49 4f 4e 21 20-54 68 69 73 20 69 73 20 |ENTION!  This is |

token.c:2111:tds_get_data(): wire column size is 81 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 81
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (81 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c0d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c0d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c0d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e8a70, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123c0d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 6f 74 20 61 20 70 72 |........ not a pr|
0010 6f 64 75 63 74 69 6f 6e-20 6f 72 64 65 72 2e 20 |oduction  order. |
0020 45 73 74 61 62 6c 69 73-68 20 61 20 62 61 74 63 |Establis h a batc|
0030 68 20 61 6e 79 77 61 79-3f d1 61 00 00 00 41 43 |h anyway ?Ña...AC|
0040 48 54 55 4e 47 20 21 20-44 69 65 20 6c 65 74 7a |HTUNG !  Die letz|
0050 74 65 20 56 65 72 73 69-6f 6e 20 64 65 72 20 56 |te Versi on der V|
0060 6f 72 73 63 68 72 69 66-74 20 69 73 74 20 6e 69 |orschrif t ist ni|
0070 63 68 74 20 66 72 65 69-67 65 67 65 62 65 6e 20 |cht frei gegeben |
0080 21 20 57 6f 6c 6c 65 6e-20 53 69 65 20 64 69 65 |! Wollen  Sie die|
0090 20 6c 65 74 7a 74 65 20-66 72 65 69 65 20 3f 61 | letzte  freie ?a|
00a0 00 00 00 41 54 54 45 4e-54 49 4f 4e 3a 20 54 68 |...ATTEN TION: Th|
00b0 65 20 6c 61 73 74 20 76-65 72 73 69 6f 6e 20 6f |e last v ersion o|
00c0 66 20 74 68 65 20 72 65-67 75 6c 61 74 69 6f 6e |f the re gulation|
00d0 20 69 73 20 6e 6f 74 20-61 70 70 72 6f 76 65 64 | is not  approved|
00e0 21 20 52 65 70 6c 61 63-65 64 20 62 79 20 74 68 |! Replac ed by th|
00f0 65 20 6c 61 73 74 20 6f-6e 65 20 61 70 70 72 6f |e last o ne appro|
0100 76 65 64 3f d1 39 00 00-00 41 43 48 54 55 4e 47 |ved?Ñ9.. .ACHTUNG|
0110 3a 20 25 20 69 73 74 20-61 6c 73 20 5a 69 65 6c |: % ist  als Ziel|
0120 20 65 69 6e 65 72 20 41-75 66 67 61 62 65 20 6e | einer A ufgabe n|
0130 69 63 68 74 20 75 6e 74-65 72 73 74 c3 bc 74 7a |icht unt erstütz|
0140 74 21 30 00 00 00 41 54-54 45 4e 54 49 4f 4e 3a |t!0...AT TENTION:|
0150 20 25 20 69 73 20 6e 6f-74 20 73 75 70 70 6f 72 | % is no t suppor|
0160 74 65 64 20 61 73 20 67-6f 61 6c 20 6f 66 20 61 |ted as g oal of a|
0170 20 74 61 73 6b 21 d1 2a-00 00 00 41 43 48 54 55 | task!Ñ* ...ACHTU|
0180 4e 47 3a 20 2a 2a 2a 20-44 69 65 20 42 4e 72 20 |NG: ***  Die BNr |
0190 77 69 72 64 20 6e 61 63-68 67 65 66 c3 bc 68 72 |wird nac hgeführ|
01a0 74 20 2a 2a 2a 2a 00 00-00 41 54 54 45 4e 54 49 |t ****.. .ATTENTI|
01b0 4f 4e 3a 20 2a 2a 2a 20-6f 72 64 2e 20 6e 6f 20 |ON: ***  ord. no |
01c0 77 69 6c 6c 20 62 65 20-75 70 64 61 74 65 64 20 |will be  updated |
01d0 2a 2a 2a d1 2a 00 00 00-41 43 48 54 55 4e 47 3a |***Ñ*... ACHTUNG:|
01e0 20 41 6c 6c 67 50 72 6f-67 72 61 6d 6d 41 75 66 | AllgPro grammAuf|
01f0 72 75 66 53 70 6c 69 74-20 2d 20 69 64 78 20 3d |rufSplit  - idx =|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e4cd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13124b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 97 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 97 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 97
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (97 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 97
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (97 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 25 2c 00 00 00 41 54 |........  %,...AT|
0010 54 45 4e 54 49 4f 4e 3a-20 41 6c 6c 67 50 72 6f |TENTION:  AllgPro|
0020 67 72 61 6d 6d 41 75 66-72 75 66 53 70 6c 69 74 |grammAuf rufSplit|
0030 20 2d 20 69 64 78 20 3d-20 25 d1 4d 00 00 00 41 | - idx =  %ÑM...A|
0040 43 48 54 55 4e 47 3a 20-41 6e 20 25 20 53 74 65 |CHTUNG:  An % Ste|
0050 6c 6c 65 6e 20 73 69 6e-64 20 6e 6f 63 68 20 6e |llen sin d noch n|
0060 69 63 68 74 20 61 6c 6c-65 20 52 6f 68 73 74 6f |icht all e Rohsto|
0070 66 66 65 20 65 6e 74 6e-6f 6d 6d 65 6e 20 77 6f |ffe entn ommen wo|
0080 72 64 65 6e 21 20 7a 2e-42 2e 20 25 49 00 00 00 |rden! z. B. %I...|
0090 41 54 54 45 4e 54 49 4f-4e 3a 20 41 74 20 25 20 |ATTENTIO N: At % |
00a0 70 6c 61 63 65 73 2c 20-6e 6f 74 20 61 6c 6c 20 |places,  not all |
00b0 72 61 77 20 6d 61 74 65-72 69 61 6c 73 20 68 61 |raw mate rials ha|
00c0 76 65 20 62 65 65 6e 20-65 78 74 72 61 63 74 65 |ve been  extracte|
00d0 64 21 20 45 2e 67 2e 20-25 d1 5d 00 00 00 41 43 |d! E.g.  %Ñ]...AC|
00e0 48 54 55 4e 47 3a 20 42-65 69 20 25 20 5a 61 68 |HTUNG: B ei % Zah|
00f0 6c 75 6e 67 65 6e 20 6b-6f 6e 6e 74 65 20 6b 65 |lungen k onnte ke|
0100 69 6e 20 5a 61 68 6c 6d-65 64 69 75 6d 20 7a 75 |in Zahlm edium zu|
0110 67 65 77 69 65 73 65 6e-20 77 65 72 64 65 6e 21 |gewiesen  werden!|
0120 20 57 6f 6c 6c 65 6e 20-53 69 65 20 65 69 6e 65 | Wollen  Sie eine|
0130 6e 20 41 75 73 64 72 75-63 6b 3f 3d 00 00 00 41 |n Ausdru ck?=...A|
0140 54 54 45 4e 54 49 4f 4e-3a 20 4e 6f 20 6d 65 61 |TTENTION : No mea|
0150 6e 73 20 6f 66 20 70 61-79 6d 65 6e 74 20 61 73 |ns of pa yment as|
0160 73 69 67 6e 65 64 20 74-6f 20 25 20 70 61 79 6d |signed t o % paym|
0170 65 6e 74 73 21 20 50 72-69 6e 74 3f d1 45 00 00 |ents! Pr int?ÑE..|
0180 00 41 43 48 54 55 4e 47-3a 20 42 65 69 20 41 72 |.ACHTUNG : Bei Ar|
0190 74 69 6b 65 6c 20 25 20-56 65 72 73 69 6f 6e 20 |tikel %  Version |
01a0 25 20 73 69 6e 64 20 25-20 50 72 6f 64 75 6b 74 |% sind %  Produkt|
01b0 69 6f 6e 73 6d 69 74 74-65 6c 20 7a 75 67 65 6f |ionsmitt el zugeo|
01c0 72 64 6e 65 74 21 44 00-00 00 41 54 54 45 4e 54 |rdnet!D. ..ATTENT|
01d0 49 4f 4e 20 3a 20 46 6f-72 20 61 72 74 69 63 6c |ION : Fo r articl|
01e0 65 20 25 20 76 65 72 73-69 6f 6e 20 25 2c 20 25 |e % vers ion %, %|
01f0 20 6d 65 61 6e 73 20 6f-66 20 70 72 6f 64 75 63 | means o f produc|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x130e770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 93 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 93
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (93 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x130e770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 69 6f 6e 20 61 73 73 |........ tion ass|
0010 69 67 6e 65 64 21 d1 40-00 00 00 41 43 48 54 55 |igned!Ñ@ ...ACHTU|
0020 4e 47 3a 20 44 61 73 20-4b 75 72 7a 7a 65 69 63 |NG: Das  Kurzzeic|
0030 68 65 6e 20 69 73 74 20-62 65 72 65 69 74 73 20 |hen ist  bereits |
0040 61 6c 73 20 43 41 53 59-4d 49 52 20 55 73 65 72 |als CASY MIR User|
0050 20 76 6f 72 68 61 6e 64-65 6e 21 43 00 00 00 41 | vorhand en!C...A|
0060 54 54 45 4e 54 49 4f 4e-3a 20 54 68 69 73 20 61 |TTENTION : This a|
0070 62 62 72 65 76 69 61 74-69 6f 6e 20 69 73 20 61 |bbreviat ion is a|
0080 6c 72 65 61 64 79 20 61-73 73 69 67 6e 65 64 20 |lready a ssigned |
0090 74 6f 20 61 20 43 41 53-59 4d 49 52 20 75 73 65 |to a CAS YMIR use|
00a0 72 21 d1 32 00 00 00 41-43 48 54 55 4e 47 3a 20 |r!Ñ2...A CHTUNG: |
00b0 44 65 72 20 4b 6f 73 74-65 6e 70 6c 61 74 7a 20 |Der Kost enplatz |
00c0 69 73 74 20 7a 75 6d 20-42 75 63 68 65 6e 20 67 |ist zum  Buchen g|
00d0 65 73 70 65 72 72 74 20-21 32 00 00 00 41 54 54 |esperrt  !2...ATT|
00e0 45 4e 54 49 4f 4e 3a 20-54 68 65 20 63 6f 73 74 |ENTION:  The cost|
00f0 20 70 6c 61 63 65 20 69-73 20 62 6c 6f 63 6b 65 | place i s blocke|
0100 64 20 66 6f 72 20 62 6f-6f 6b 69 6e 67 73 21 d1 |d for bo okings!Ñ|
0110 30 00 00 00 41 43 48 54-55 4e 47 3a 20 44 65 72 |0...ACHT UNG: Der|
0120 20 4b 6f 73 74 65 6e 74-72 c3 a4 67 65 72 20 69 | Kostent räger i|
0130 73 74 20 6e 69 63 68 74-20 65 69 6e 64 65 75 74 |st nicht  eindeut|
0140 69 67 20 21 26 00 00 00-41 54 54 45 4e 54 49 4f |ig !&... ATTENTIO|
0150 4e 3a 20 54 68 65 20 63-6f 73 74 20 75 6e 69 74 |N: The c ost unit|
0160 20 69 73 20 61 6d 62 69-67 75 6f 75 73 21 d1 8d | is ambi guous!Ñ.|
0170 00 00 00 41 43 48 54 55-4e 47 3a 20 44 65 72 20 |...ACHTU NG: Der |
0180 4d 61 6e 64 61 6e 74 20-25 20 69 73 74 20 61 6c |Mandant  % ist al|
0190 73 20 54 65 73 74 6d 61-6e 64 61 6e 74 20 28 25 |s Testma ndant (%|
01a0 29 20 67 65 6b 65 6e 6e-7a 65 69 63 68 6e 65 74 |) gekenn zeichnet|
01b0 2e 20 45 73 20 77 65 72-64 65 6e 20 61 6c 73 6f |. Es wer den also|
01c0 20 44 61 74 65 6e 20 65-72 7a 65 75 67 74 2c 20 | Daten e rzeugt, |
01d0 64 69 65 20 65 62 65 6e-66 61 6c 6c 73 20 61 6c |die eben falls al|
01e0 73 20 54 65 73 74 64 61-74 65 6e 20 67 65 6b 65 |s Testda ten geke|
01f0 6e 6e 7a 65 69 63 68 6e-65 74 20 73 69 6e 64 21 |nnzeichn et sind!|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x130e770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x130e770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x130e770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7e40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x130e770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 141 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-7d 00 00 00 41 54 54 45 |........ }...ATTE|
0010 4e 54 49 4f 4e 3a 20 4d-61 6e 64 61 74 6f 72 20 |NTION: M andator |
0020 25 20 69 73 20 64 65 73-69 67 6e 61 74 65 64 20 |% is des ignated |
0030 61 73 20 74 65 73 74 20-6d 61 6e 64 61 74 6f 72 |as test  mandator|
0040 20 28 25 29 2e 20 54 68-65 72 65 66 6f 72 65 2c | (%). Th erefore,|
0050 20 74 68 65 20 67 65 6e-65 72 61 74 65 64 20 64 | the gen erated d|
0060 61 74 61 20 77 69 6c 6c-20 61 6c 73 6f 20 62 65 |ata will  also be|
0070 20 64 65 73 69 67 6e 61-74 65 64 20 61 73 20 74 | designa ted as t|
0080 65 73 74 20 64 61 74 61-21 d1 30 00 00 00 41 43 |est data !Ñ0...AC|
0090 48 54 55 4e 47 3a 20 44-65 72 20 57 65 72 74 20 |HTUNG: D er Wert |
00a0 69 73 74 20 75 6e 74 65-72 20 64 65 72 20 75 6e |ist unte r der un|
00b0 74 65 72 65 6e 20 47 72-65 6e 7a 65 20 21 2a 00 |teren Gr enze !*.|
00c0 00 00 41 54 54 45 4e 54-49 4f 4e 3a 20 56 61 6c |..ATTENT ION: Val|
00d0 75 65 20 69 73 20 62 65-6c 6f 77 20 74 68 65 20 |ue is be low the |
00e0 6c 6f 77 65 72 20 6c 69-6d 69 74 21 d1 2f 00 00 |lower li mit!Ñ/..|
00f0 00 41 43 48 54 55 4e 47-3a 20 44 65 72 20 57 65 |.ACHTUNG : Der We|
0100 72 74 20 69 73 74 20 c3-bc 62 65 72 20 64 65 72 |rt ist à ¼ber der|
0110 20 6f 62 65 72 65 6e 20-47 72 65 6e 7a 65 20 21 | oberen  Grenze !|
0120 29 00 00 00 41 54 54 45-4e 54 49 4f 4e 3a 20 56 |)...ATTE NTION: V|
0130 61 6c 75 65 20 65 78 63-65 65 64 73 20 74 68 65 |alue exc eeds the|
0140 20 75 70 70 65 72 20 6c-69 6d 69 74 21 d1 33 00 | upper l imit!Ñ3.|
0150 00 00 41 43 48 54 55 4e-47 3a 20 44 69 65 20 4b |..ACHTUN G: Die K|
0160 6f 73 74 65 6e 73 74 65-6c 6c 65 20 69 73 74 20 |ostenste lle ist |
0170 7a 75 6d 20 42 75 63 68-65 6e 20 67 65 73 70 65 |zum Buch en gespe|
0180 72 72 74 20 21 34 00 00-00 41 54 54 45 4e 54 49 |rrt !4.. .ATTENTI|
0190 4f 4e 3a 20 42 6f 6f 6b-69 6e 67 73 20 6f 6e 20 |ON: Book ings on |
01a0 74 68 69 73 20 63 6f 73-74 20 63 65 6e 74 65 72 |this cos t center|
01b0 20 61 72 65 20 62 6c 6f-63 6b 65 64 21 d1 33 00 | are blo cked!Ñ3.|
01c0 00 00 41 43 48 54 55 4e-47 3a 20 44 69 65 20 4b |..ACHTUN G: Die K|
01d0 6f 73 74 65 6e 73 74 65-6c 6c 65 20 69 73 74 20 |ostenste lle ist |
01e0 7a 75 6d 20 62 75 63 68-65 6e 20 67 65 73 70 65 |zum buch en gespe|
01f0 72 72 74 20 21 34 00 00-00 41 54 54 45 4e 54 49 |rrt !4.. .ATTENTI|

token.c:2111:tds_get_data(): wire column size is 125 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 141
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (141 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 125
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fc070, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (125 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fc070, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fc070, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fc070, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-4f 4e 3a 20 42 6f 6f 6b |........ ON: Book|
0010 69 6e 67 73 20 6f 6e 20-74 68 69 73 20 63 6f 73 |ings on  this cos|
0020 74 20 63 65 6e 74 65 72-20 61 72 65 20 62 6c 6f |t center  are blo|
0030 63 6b 65 64 21 d1 38 00-00 00 41 43 48 54 55 4e |cked!Ñ8. ..ACHTUN|
0040 47 3a 20 44 69 65 20 4b-75 72 73 64 69 66 66 65 |G: Die K ursdiffe|
0050 72 65 6e 7a 20 69 73 74-20 67 72 c3 b6 73 73 65 |renz ist  grösse|
0060 72 20 61 6c 73 20 31 30-20 50 72 6f 7a 65 6e 74 |r als 10  Prozent|
0070 20 21 43 00 00 00 41 54-54 45 4e 54 49 4f 4e 3a | !C...AT TENTION:|
0080 20 54 68 65 20 65 78 63-68 61 6e 67 65 20 72 61 | The exc hange ra|
0090 74 65 20 64 69 66 66 65-72 65 6e 63 65 20 69 73 |te diffe rence is|
00a0 20 68 69 67 68 65 72 20-74 68 61 6e 20 31 30 20 | higher  than 10 |
00b0 70 65 72 20 63 65 6e 74-21 d1 32 00 00 00 41 43 |per cent !Ñ2...AC|
00c0 48 54 55 4e 47 3a 20 44-69 65 20 4d 65 6e 67 65 |HTUNG: D ie Menge|
00d0 20 6d 75 73 73 20 6b 6f-72 72 69 67 69 65 72 74 | muss ko rrigiert|
00e0 20 77 65 72 64 65 6e 20-28 25 20 3c 3e 20 25 29 | werden  (% <> %)|
00f0 32 00 00 00 41 54 54 45-4e 54 49 4f 4e 3a 20 54 |2...ATTE NTION: T|
0100 68 65 20 71 75 61 6e 74-69 74 79 20 6d 75 73 74 |he quant ity must|
0110 20 62 65 20 63 6f 72 72-65 63 74 65 64 20 28 25 | be corr ected (%|
0120 20 3c 3e 20 25 29 d1 23-00 00 00 41 43 48 54 55 | <> %)Ñ# ...ACHTU|
0130 4e 47 3a 20 45 73 20 66-65 68 6c 74 20 65 69 6e |NG: Es f ehlt ein|
0140 20 57 65 72 74 20 66 c3-bc 72 20 25 20 21 2b 00 | Wert fà ¼r % !+.|
0150 00 00 41 54 54 45 4e 54-49 4f 4e 3a 20 4e 6f 20 |..ATTENT ION: No |
0160 76 61 6c 75 65 20 68 61-73 20 62 65 65 6e 20 65 |value ha s been e|
0170 6e 74 65 72 65 64 20 66-6f 72 20 25 21 d1 42 00 |ntered f or %!ÑB.|
0180 00 00 41 43 48 54 55 4e-47 3a 20 45 73 20 67 69 |..ACHTUN G: Es gi|
0190 62 74 20 6d 65 68 72 65-72 65 20 41 6e 6c 61 67 |bt mehre re Anlag|
01a0 65 67 72 75 70 70 65 6e-20 7a 75 20 64 65 6d 20 |egruppen  zu dem |
01b0 61 6e 67 65 67 65 62 65-6e 65 6e 20 4d 75 73 74 |angegebe nen Must|
01c0 65 72 20 21 42 00 00 00-41 54 54 45 4e 54 49 4f |er !B... ATTENTIO|
01d0 4e 3a 20 54 68 65 72 65-20 61 72 65 20 73 65 76 |N: There  are sev|
01e0 65 72 61 6c 20 61 73 73-65 74 20 67 72 6f 75 70 |eral ass et group|
01f0 73 20 74 6f 20 74 68 65-20 69 6e 64 69 63 61 74 |s to the  indicat|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fc070, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13fbfd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 64 20 73 61 6d 70 6c |........ ed sampl|
0010 65 21 d1 3b 00 00 00 41-43 48 54 55 4e 47 3a 20 |e!Ñ;...A CHTUNG: |
0020 45 73 20 67 69 62 74 20-6d 65 68 72 65 72 65 20 |Es gibt  mehrere |
0030 4b 75 6e 64 65 6e 20 7a-75 20 64 65 6d 20 61 6e |Kunden z u dem an|
0040 67 65 67 65 62 65 6e 65-6e 20 4d 75 73 74 65 72 |gegebene n Muster|
0050 20 21 45 00 00 00 41 54-54 45 4e 54 49 4f 4e 3a | !E...AT TENTION:|
0060 20 54 68 65 72 65 20 61-72 65 20 73 65 76 65 72 | There a re sever|
0070 61 6c 20 63 75 73 74 6f-6d 65 72 73 20 6d 61 74 |al custo mers mat|
0080 63 68 69 6e 67 20 74 68-65 20 69 6e 64 69 63 61 |ching th e indica|
0090 74 65 64 20 73 61 6d 70-6c 65 21 d1 40 00 00 00 |ted samp le!Ñ@...|
00a0 41 43 48 54 55 4e 47 3a-20 45 73 20 67 69 62 74 |ACHTUNG:  Es gibt|
00b0 20 6d 65 68 72 65 72 65-20 4c 69 65 66 65 72 61 | mehrere  Liefera|
00c0 6e 74 65 6e 20 7a 75 20-64 65 6d 20 61 6e 67 65 |nten zu  dem ange|
00d0 67 65 62 65 6e 65 6e 20-4d 75 73 74 65 72 20 21 |gebenen  Muster !|
00e0 45 00 00 00 41 54 54 45-4e 54 49 4f 4e 3a 20 54 |E...ATTE NTION: T|
00f0 68 65 72 65 20 61 72 65-20 73 65 76 65 72 61 6c |here are  several|
0100 20 73 75 70 70 6c 69 65-72 73 20 6d 61 74 63 68 | supplie rs match|
0110 69 6e 67 20 74 68 65 20-69 6e 64 69 63 61 74 65 |ing the  indicate|
0120 64 20 73 61 6d 70 6c 65-21 d1 3d 00 00 00 41 43 |d sample !Ñ=...AC|
0130 48 54 55 4e 47 3a 20 45-73 20 67 69 62 74 20 6d |HTUNG: E s gibt m|
0140 65 68 72 65 72 65 20 50-65 72 73 6f 6e 65 6e 20 |ehrere P ersonen |
0150 7a 75 20 64 65 6d 20 61-6e 67 65 67 65 62 65 6e |zu dem a ngegeben|
0160 65 6e 20 4d 75 73 74 65-72 20 21 43 00 00 00 41 |en Muste r !C...A|
0170 54 54 45 4e 54 49 4f 4e-3a 20 54 68 65 72 65 20 |TTENTION : There |
0180 61 72 65 20 73 65 76 65-72 61 6c 20 70 65 72 73 |are seve ral pers|
0190 6f 6e 73 20 6d 61 74 63-68 69 6e 67 20 74 68 65 |ons matc hing the|
01a0 20 69 6e 64 69 63 61 74-65 64 20 73 61 6d 70 6c | indicat ed sampl|
01b0 65 21 d1 5a 00 00 00 41-43 48 54 55 4e 47 3a 20 |e!ÑZ...A CHTUNG: |
01c0 46 72 65 69 67 61 62 65-20 4f 48 4e 45 20 42 65 |Freigabe  OHNE Be|
01d0 72 65 63 68 6e 75 6e 67-20 64 65 73 20 56 2d 44 |rechnung  des V-D|
01e0 61 74 75 6d 20 75 6e 64-20 6b 65 69 6e 20 45 72 |atum und  kein Er|
01f0 65 69 67 6e 69 73 20 3e-50 52 4f 44 5f 56 2d 44 |eignis > PROD_V-D|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131d300, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131d300, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131d300, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131d300, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1401100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-41 54 55 4d 3c 20 64 65 |........ ATUM< de|
0010 66 69 6e 69 65 72 74 20-21 5e 00 00 00 41 54 54 |finiert  !^...ATT|
0020 45 4e 54 49 4f 4e 3a 20-52 65 6c 65 61 73 65 20 |ENTION:  Release |
0030 57 49 54 48 4f 55 54 20-63 6f 6d 70 75 74 61 74 |WITHOUT  computat|
0040 69 6f 6e 20 6f 66 20 73-61 6c 65 20 64 61 74 65 |ion of s ale date|
0050 20 61 6e 64 20 6e 6f 20-73 79 73 2d 65 76 65 6e | and no  sys-even|
0060 74 20 3e 50 52 4f 44 5f-53 41 4c 45 5f 44 41 54 |t >PROD_ SALE_DAT|
0070 45 3c 20 64 65 66 69 6e-65 64 21 d1 25 00 00 00 |E< defin ed!Ñ%...|
0080 41 43 48 54 55 4e 47 3a-20 4e 65 75 65 20 52 65 |ACHTUNG:  Neue Re|
0090 63 68 74 65 20 2d 20 62-69 74 74 65 20 61 6e 70 |chte - b itte anp|
00a0 61 73 73 65 6e 25 00 00-00 41 54 54 45 4e 54 49 |assen%.. .ATTENTI|
00b0 4f 4e 3a 20 4e 65 77 20-72 69 67 68 74 73 20 2d |ON: New  rights -|
00c0 20 70 6c 65 61 73 65 20-61 64 6a 75 73 74 d1 57 | please  adjustÑW|
00d0 00 00 00 41 43 48 54 55-4e 47 3a 20 65 73 20 73 |...ACHTU NG: es s|
00e0 69 6e 64 20 46 65 68 6c-65 72 20 62 65 69 20 64 |ind Fehl er bei d|
00f0 65 72 20 56 65 72 61 72-62 65 69 74 75 6e 67 20 |er Verar beitung |
0100 61 75 66 67 65 74 72 65-74 65 6e 2c 20 65 73 20 |aufgetre ten, es |
0110 77 75 72 64 65 20 6b 65-69 6e 65 20 44 61 74 65 |wurde ke ine Date|
0120 69 20 65 72 7a 65 75 67-74 21 43 00 00 00 41 54 |i erzeug t!C...AT|
0130 54 45 4e 54 49 4f 4e 3a-20 45 72 72 6f 72 73 20 |TENTION:  Errors |
0140 6f 63 63 75 72 65 64 20-64 75 72 69 6e 67 20 74 |occured  during t|
0150 68 65 20 70 72 6f 63 65-73 73 69 6e 67 2c 20 6e |he proce ssing, n|
0160 6f 20 66 69 6c 65 20 67-65 6e 65 72 61 74 65 64 |o file g enerated|
0170 21 d1 06 00 00 00 41 49-20 3d 20 25 06 00 00 00 |!Ñ....AI  = %....|
0180 41 49 20 3d 20 25 d1 3e-00 00 00 41 50 43 2d 57 |AI = %Ñ> ...APC-W|
0190 65 72 74 20 64 65 73 20-42 65 75 74 65 6c 73 20 |ert des  Beutels |
01a0 28 25 29 20 25 20 69 73-74 20 69 6d 20 50 72 6f |(%) % is t im Pro|
01b0 74 6f 6b 6f 6c 6c 20 6e-69 63 68 74 20 68 69 6e |tokoll n icht hin|
01c0 74 65 72 6c 65 67 74 20-21 41 00 00 00 41 50 43 |terlegt  !A...APC|
01d0 2d 76 61 6c 75 65 20 6f-66 20 74 68 65 20 73 61 |-value o f the sa|
01e0 74 63 68 65 6c 20 28 25-29 20 25 20 69 73 20 6e |tchel (% ) % is n|
01f0 6f 74 20 72 65 67 69 73-74 65 72 65 64 20 69 6e |ot regis tered in|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 94 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 94
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (94 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 74 68 65 20 70 72 6f |........  the pro|
0010 74 6f 63 6f 6c 21 d1 07-00 00 00 41 62 62 72 75 |tocol!Ñ. ...Abbru|
0020 63 68 06 00 00 00 43 61-6e 63 65 6c d1 19 00 00 |ch....Ca ncelÑ...|
0030 00 41 62 62 72 75 63 68-20 62 65 69 20 52 65 63 |.Abbruch  bei Rec|
0040 68 6e 75 6e 67 20 25 2e-25 3a 15 00 00 00 41 62 |hnung %. %:....Ab|
0050 6f 72 74 20 61 74 20 69-6e 76 6f 69 63 65 20 25 |ort at i nvoice %|
0060 2e 25 3a d1 1f 00 00 00-41 62 62 72 75 63 68 2e |.%:Ñ.... Abbruch.|
0070 20 4c 69 73 74 65 20 6e-69 63 68 74 20 67 65 64 | Liste n icht ged|
0080 72 75 63 6b 74 20 21 18-00 00 00 41 62 6f 72 74 |ruckt !. ...Abort|
0090 3a 20 4c 69 73 74 20 6e-6f 74 20 70 72 69 6e 74 |: List n ot print|
00a0 65 64 21 d1 0a 00 00 00-41 62 62 72 75 63 68 3a |ed!Ñ.... Abbruch:|
00b0 20 25 08 00 00 00 41 62-6f 72 74 3a 20 25 d1 5d | %....Ab ort: %Ñ]|
00c0 00 00 00 41 62 62 72 75-63 68 3a 20 53 69 65 20 |...Abbru ch: Sie |
00d0 6d c3 bc 73 73 65 6e 20-69 6e 20 43 41 53 59 4d |müssen  in CASYM|
00e0 49 52 20 61 6e 67 65 6d-65 6c 64 65 74 20 73 65 |IR angem eldet se|
00f0 69 6e 20 75 6d 20 65 69-6e 65 20 53 75 70 70 6f |in um ei ne Suppo|
0100 72 74 2d 41 6e 66 72 61-67 65 20 76 65 72 73 65 |rt-Anfra ge verse|
0110 6e 64 65 6e 20 7a 75 20-6b c3 b6 6e 6e 65 6e 2e |nden zu  können.|
0120 41 00 00 00 41 62 6f 72-74 3a 20 59 6f 75 20 6d |A...Abor t: You m|
0130 75 73 74 20 62 65 20 6c-6f 67 67 65 64 20 69 6e |ust be l ogged in|
0140 74 6f 20 43 41 53 59 4d-49 52 20 74 6f 20 73 65 |to CASYM IR to se|
0150 6e 64 20 61 20 73 75 70-70 6f 72 74 20 72 65 71 |nd a sup port req|
0160 75 65 73 74 2e d1 1c 00-00 00 41 62 62 72 75 63 |uest.Ñ.. ..Abbruc|
0170 68 3a 20 56 65 72 61 72-62 65 69 74 75 6e 67 73 |h: Verar beitungs|
0180 66 65 68 6c 65 72 17 00-00 00 41 62 6f 72 74 3a |fehler.. ..Abort:|
0190 20 50 72 6f 63 65 73 73-69 6e 67 20 65 72 72 6f | Process ing erro|
01a0 72 d1 3b 00 00 00 41 62-62 72 75 63 68 3a 20 56 |rÑ;...Ab bruch: V|
01b0 65 72 61 72 62 65 69 74-75 6e 67 73 66 65 68 6c |erarbeit ungsfehl|
01c0 65 72 2c 20 65 73 20 77-75 72 64 65 20 6b 65 69 |er, es w urde kei|
01d0 6e 65 20 44 61 74 65 69-20 65 72 7a 65 75 67 74 |ne Datei  erzeugt|
01e0 21 29 00 00 00 41 62 6f-72 74 3a 20 50 72 6f 63 |!)...Abo rt: Proc|
01f0 65 73 73 69 6e 67 20 65-72 72 6f 72 2c 20 6e 6f |essing e rror, no|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12aa720, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 93 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 93
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (93 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 66 69 6c 65 20 63 72 |........  file cr|
0010 65 61 74 65 64 21 d1 21-00 00 00 41 62 62 72 75 |eated!Ñ! ...Abbru|
0020 63 68 3a 20 66 61 6c 73-63 68 65 73 20 4c 6f 67 |ch: fals ches Log|
0030 69 6e 2d 46 6f 72 6d 75-6c 61 72 2e 17 00 00 00 |in-Formu lar.....|
0040 41 62 6f 72 74 3a 20 57-72 6f 6e 67 20 6c 6f 67 |Abort: W rong log|
0050 69 6e 20 6d 61 73 6b d1-3c 00 00 00 41 62 62 75 |in maskÑ <...Abbu|
0060 63 68 75 6e 67 20 4d 61-74 65 72 69 61 6c 20 61 |chung Ma terial a|
0070 62 67 65 62 72 6f 63 68-65 6e 20 28 53 63 68 72 |bgebroch en (Schr|
0080 69 74 74 20 25 3a 20 75-6e 67 c3 bc 6c 74 69 67 |itt %: u ngültig|
0090 65 20 56 50 45 3d 25 29-2d 00 00 00 4d 61 74 65 |e VPE=%) -...Mate|
00a0 72 69 61 6c 20 64 65 62-69 74 20 61 62 6f 72 74 |rial deb it abort|
00b0 65 64 20 28 73 74 65 70-20 25 3a 20 69 6e 76 61 |ed (step  %: inva|
00c0 6c 69 64 20 50 55 3d 25-29 d1 44 00 00 00 41 62 |lid PU=% )ÑD...Ab|
00d0 62 75 63 68 75 6e 67 20-4d 61 74 65 72 69 61 6c |buchung  Material|
00e0 20 61 62 67 65 62 72 6f-63 68 65 6e 20 28 53 63 | abgebro chen (Sc|
00f0 68 72 69 74 74 20 25 3a-20 75 6e 74 65 72 6d 69 |hritt %:  untermi|
0100 6e 69 65 72 74 65 20 56-50 45 2d 41 6e 67 61 62 |nierte V PE-Angab|
0110 65 29 3e 00 00 00 4d 61-74 65 72 69 61 6c 20 64 |e)>...Ma terial d|
0120 65 62 69 74 20 61 62 6f-72 74 65 64 20 28 73 74 |ebit abo rted (st|
0130 65 70 20 25 3a 20 75 6e-64 65 74 65 72 6d 69 6e |ep %: un determin|
0140 65 64 20 69 6e 64 69 63-61 74 69 6f 6e 20 6f 66 |ed indic ation of|
0150 20 50 55 29 d1 1c 00 00-00 41 62 6c 61 75 66 20 | PU)Ñ... .Ablauf |
0160 62 65 65 6e 64 65 74 20-6d 69 74 20 46 65 68 6c |beendet  mit Fehl|
0170 65 72 3a 20 25 23 00 00-00 50 72 6f 63 65 64 75 |er: %#.. .Procedu|
0180 72 65 20 74 65 72 6d 69-6e 61 74 65 64 20 77 69 |re termi nated wi|
0190 74 68 20 65 72 72 6f 72-73 3a 20 25 d1 25 00 00 |th error s: %Ñ%..|
01a0 00 41 62 6c 61 75 66 3a-20 3c 25 2c 25 2c 25 3e |.Ablauf:  <%,%,%>|
01b0 20 41 62 62 72 75 63 68-3a 20 4e 65 78 74 53 74 | Abbruch : NextSt|
01c0 65 70 20 3c 20 31 26 00-00 00 50 72 6f 63 65 64 |ep < 1&. ..Proced|
01d0 75 72 65 3a 20 3c 25 2c-25 2c 25 3e 20 61 62 6f |ure: <%, %,%> abo|
01e0 72 74 3a 20 4e 65 78 74-53 74 65 70 20 3c 20 31 |rt: Next Step < 1|
01f0 d1 14 00 00 00 41 62 6c-61 75 66 3a 20 3c 25 2c |Ñ....Abl auf: <%,|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-25 2c 25 3e 20 45 6e 64 |........ %,%> End|
0010 65 17 00 00 00 50 72 6f-63 65 64 75 72 65 3a 20 |e....Pro cedure: |
0020 3c 25 2c 25 2c 25 3e 20-73 74 6f 70 d1 20 00 00 |<%,%,%>  stopÑ ..|
0030 00 41 62 6c 61 75 66 3a-20 3c 25 2c 25 2c 25 3e |.Ablauf:  <%,%,%>|
0040 20 4d 6f 64 75 73 20 25-20 53 74 61 72 74 65 20 | Modus %  Starte |
0050 25 21 00 00 00 50 72 6f-63 65 64 75 72 65 3a 20 |%!...Pro cedure: |
0060 3c 25 2c 25 2c 25 3e 20-6d 6f 64 65 20 25 20 73 |<%,%,%>  mode % s|
0070 74 61 72 74 20 25 d1 1f-00 00 00 41 62 6c 61 75 |tart %Ñ. ...Ablau|
0080 66 3a 20 3c 25 2c 25 2c-25 3e 20 4e 65 78 74 53 |f: <%,%, %> NextS|
0090 74 65 70 20 25 20 4f 70-20 25 22 00 00 00 50 72 |tep % Op  %"...Pr|
00a0 6f 63 65 64 75 72 65 3a-20 3c 25 2c 25 2c 25 3e |ocedure:  <%,%,%>|
00b0 20 4e 65 78 74 53 74 65-70 20 25 20 4f 70 20 25 | NextSte p % Op %|
00c0 d1 24 00 00 00 41 62 6c-61 75 66 3a 20 3c 25 2c |Ñ$...Abl auf: <%,|
00d0 25 2c 25 3e 20 53 63 68-72 69 74 74 20 25 20 41 |%,%> Sch ritt % A|
00e0 62 62 72 75 63 68 3a 20-25 22 00 00 00 50 72 6f |bbruch:  %"...Pro|
00f0 63 65 64 75 72 65 3a 20-3c 25 2c 25 2c 25 3e 20 |cedure:  <%,%,%> |
0100 73 74 65 70 20 25 20 61-62 6f 72 74 3a 20 25 d1 |step % a bort: %Ñ|
0110 1b 00 00 00 41 62 6c 61-75 66 3a 20 3c 25 2c 25 |....Abla uf: <%,%|
0120 2c 25 3e 20 53 63 68 72-69 74 74 20 3c 25 3e 1b |,%> Schr itt <%>.|
0130 00 00 00 50 72 6f 63 65-64 75 72 65 3a 20 3c 25 |...Proce dure: <%|
0140 2c 25 2c 25 3e 20 73 74-65 70 20 3c 25 3e d1 14 |,%,%> st ep <%>Ñ.|
0150 00 00 00 41 62 6c 61 75-66 3a 20 49 6e 69 74 20 |...Ablau f: Init |
0160 3c 25 2c 25 2c 25 3e 17-00 00 00 50 72 6f 63 65 |<%,%,%>. ...Proce|
0170 64 75 72 65 3a 20 49 6e-69 74 20 3c 25 2c 25 2c |dure: In it <%,%,|
0180 25 3e d1 22 00 00 00 41-62 6c 61 75 66 3a 20 58 |%>Ñ"...A blauf: X|
0190 20 3c 25 2c 25 2c 25 3e-20 43 74 78 20 25 20 4f | <%,%,%>  Ctx % O|
01a0 70 20 25 20 52 65 73 20-25 25 00 00 00 50 72 6f |p % Res  %%...Pro|
01b0 63 65 64 75 72 65 3a 20-58 20 3c 25 2c 25 2c 25 |cedure:  X <%,%,%|
01c0 3e 20 43 74 78 20 25 20-4f 70 20 25 20 52 65 73 |> Ctx %  Op % Res|
01d0 20 25 d1 0c 00 00 00 41-62 6c 61 75 66 66 65 68 | %Ñ....A blauffeh|
01e0 6c 65 72 0f 00 00 00 50-72 6f 63 65 64 75 72 65 |ler....P rocedure|
01f0 20 65 72 72 6f 72 d1 39-00 00 00 41 62 73 63 68 | errorÑ9 ...Absch|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 69 74 74 65 20 28 53 |........ nitte (S|
0010 74 72 61 73 73 65 6e 29-20 6f 68 6e 65 20 48 61 |trassen)  ohne Ha|
0020 75 73 6e 75 6d 6d 65 72-20 73 69 6e 64 20 6e 69 |usnummer  sind ni|
0030 63 68 74 20 65 72 6c 61-75 62 74 21 34 00 00 00 |cht erla ubt!4...|
0040 52 6f 61 64 20 73 65 63-74 69 6f 6e 73 20 77 69 |Road sec tions wi|
0050 74 68 6f 75 74 20 68 6f-75 73 65 20 6e 75 6d 62 |thout ho use numb|
0060 65 72 73 20 61 72 65 20-6e 6f 74 20 61 6c 6c 6f |ers are  not allo|
0070 77 65 64 21 d1 18 00 00-00 41 62 73 63 68 72 65 |wed!Ñ... .Abschre|
0080 69 62 64 61 75 65 72 20-69 6e 20 4a 61 68 72 65 |ibdauer  in Jahre|
0090 6e 1c 00 00 00 44 65 70-72 65 63 69 61 74 69 6f |n....Dep reciatio|
00a0 6e 20 70 65 72 69 6f 64-20 69 6e 20 79 65 61 72 |n period  in year|
00b0 73 d1 10 00 00 00 41 63-63 6f 75 6e 74 73 20 70 |sÑ....Ac counts p|
00c0 61 79 61 62 6c 65 10 00-00 00 41 63 63 6f 75 6e |ayable.. ..Accoun|
00d0 74 73 20 70 61 79 61 62-6c 65 d1 45 00 00 00 41 |ts payab leÑE...A|
00e0 63 68 74 75 6e 67 21 20-45 73 20 65 78 69 73 74 |chtung!  Es exist|
00f0 69 65 72 65 6e 20 6d 65-68 72 65 72 65 20 53 74 |ieren me hrere St|
0100 61 6e 64 6f 72 74 65 20-7a 75 20 64 65 6d 20 65 |andorte  zu dem e|
0110 69 6e 67 65 67 65 62 65-6e 65 6e 20 4d 75 73 74 |ingegebe nen Must|
0120 65 72 20 21 3b 00 00 00-41 54 54 45 4e 54 49 4f |er !;... ATTENTIO|
0130 4e 21 20 53 65 76 65 72-61 6c 20 6c 6f 63 61 74 |N! Sever al locat|
0140 69 6f 6e 73 20 6d 61 74-63 68 20 77 69 74 68 20 |ions mat ch with |
0150 74 68 65 20 65 6e 74 65-72 65 64 20 73 61 6d 70 |the ente red samp|
0160 6c 65 21 d1 29 00 00 00-41 63 68 74 75 6e 67 2c |le!Ñ)... Achtung,|
0170 20 64 65 72 20 54 65 78-74 20 77 69 72 64 20 61 | der Tex t wird a|
0180 62 67 65 73 63 68 6e 69-74 74 65 6e 20 28 25 29 |bgeschni tten (%)|
0190 2e 28 00 00 00 41 74 74-65 6e 74 69 6f 6e 2c 20 |.(...Att ention, |
01a0 74 68 65 20 74 65 78 74-20 77 69 6c 6c 20 62 65 |the text  will be|
01b0 20 63 75 74 20 6f 66 66-20 28 25 29 2e d1 76 00 | cut off  (%).Ñv.|
01c0 00 00 41 63 68 74 75 6e-67 3a 20 25 20 61 62 68 |..Achtun g: % abh|
01d0 c3 a4 6e 67 69 67 65 20-50 61 6b 65 74 7a 75 6f |ängige  Paketzuo|
01e0 72 64 6e 75 6e 67 73 2d-44 65 74 61 69 6c 73 20 |rdnungs- Details |
01f0 69 6d 20 53 70 65 64 69-74 69 6f 6e 73 61 75 66 |im Spedi tionsauf|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f95d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e4b70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f95d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e4b70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f95d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e4b70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f95d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f28e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f95d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f28e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 118 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 72 61 67 20 28 43 68 |........ trag (Ch|
0010 61 72 67 65 6e 20 70 72-6f 20 50 61 6b 65 74 20 |argen pr o Paket |
0020 65 74 63 29 20 77 65 72-64 65 6e 20 65 62 65 6e |etc) wer den eben|
0030 66 61 6c 6c 73 20 67 65-6c c3 b6 73 63 68 74 21 |falls ge löscht!|
0040 74 00 00 00 41 74 74 65-6e 74 69 6f 6e 3a 20 25 |t...Atte ntion: %|
0050 20 64 65 70 65 6e 64 61-6e 74 20 70 61 63 6b 61 | dependa nt packa|
0060 67 65 20 61 6c 6c 6f 63-61 74 69 6f 6e 20 64 65 |ge alloc ation de|
0070 74 61 69 6c 73 20 69 6e-20 73 68 69 70 70 69 6e |tails in  shippin|
0080 67 20 6f 72 64 65 72 20-28 62 61 74 63 68 65 73 |g order  (batches|
0090 20 70 65 72 20 70 61 63-6b 61 67 65 20 65 74 63 | per pac kage etc|
00a0 2e 29 20 77 69 6c 6c 20-61 6c 73 6f 20 62 65 20 |.) will  also be |
00b0 64 65 6c 65 74 65 64 21-d1 59 00 00 00 41 63 68 |deleted! ÑY...Ach|
00c0 74 75 6e 67 3a 20 45 73-20 69 73 74 20 6e 69 63 |tung: Es  ist nic|
00d0 68 74 20 64 69 65 20 6b-6f 6d 70 6c 65 74 74 65 |ht die k omplette|
00e0 20 4d 65 6e 67 65 20 67-65 72 c3 bc 73 74 65 74 | Menge g erüstet|
00f0 2e 20 57 6f 6c 6c 65 6e-20 53 69 65 20 74 72 6f |. Wollen  Sie tro|
0100 74 7a 64 65 6d 20 41 75-73 67 61 6e 67 20 62 75 |tzdem Au sgang bu|
0110 63 68 65 6e 20 3f 4d 00-00 00 41 54 54 45 4e 54 |chen ?M. ..ATTENT|
0120 49 4f 4e 3a 20 54 68 65-20 71 75 61 6e 74 69 74 |ION: The  quantit|
0130 79 20 70 72 65 70 61 72-65 64 20 69 73 20 6e 6f |y prepar ed is no|
0140 74 20 63 6f 6d 70 6c 65-74 65 2e 20 42 6f 6f 6b |t comple te. Book|
0150 20 74 68 65 20 73 74 6f-63 6b 20 65 78 69 74 20 | the sto ck exit |
0160 61 6e 79 77 61 79 3f d1-5a 00 00 00 41 63 68 74 |anyway?Ñ Z...Acht|
0170 75 6e 67 3a 20 46 c3 bc-72 20 64 65 6e 20 41 72 |ung: Fü r den Ar|
0180 74 69 6b 65 6c 20 6c 69-65 67 65 6e 20 62 65 73 |tikel li egen bes|
0190 6f 6e 64 65 72 65 20 56-65 72 65 69 6e 62 61 72 |ondere V ereinbar|
01a0 75 6e 67 65 6e 20 76 6f-72 21 20 57 6f 6c 6c 65 |ungen vo r! Wolle|
01b0 6e 20 53 69 65 20 64 69-65 20 6a 65 74 7a 74 20 |n Sie di e jetzt |
01c0 6c 65 73 65 6e 3f 53 00-00 00 41 54 54 45 4e 54 |lesen?S. ..ATTENT|
01d0 49 4f 4e 3a 20 54 68 65-72 65 20 61 72 65 20 73 |ION: The re are s|
01e0 70 65 63 69 61 6c 20 61-67 72 65 65 6d 65 6e 74 |pecial a greement|
01f0 73 20 66 6f 72 20 74 68-69 73 20 61 72 74 69 63 |s for th is artic|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 116 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 118
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (118 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 116
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (116 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 89 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 89
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (89 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 83 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 65 21 20 44 6f 20 79 |........ le! Do y|
0010 6f 75 20 77 69 73 68 20-74 6f 20 72 65 61 64 20 |ou wish  to read |
0020 74 68 65 6d 3f d1 59 00-00 00 41 63 68 74 75 6e |them?ÑY. ..Achtun|
0030 67 3a 20 46 c3 bc 72 20-64 65 6e 20 4b 75 6e 64 |g: Für  den Kund|
0040 65 6e 20 6c 69 65 67 65-6e 20 62 65 73 6f 6e 64 |en liege n besond|
0050 65 72 65 20 56 65 72 65-69 6e 62 61 72 75 6e 67 |ere Vere inbarung|
0060 65 6e 20 76 6f 72 21 20-57 6f 6c 6c 65 6e 20 53 |en vor!  Wollen S|
0070 69 65 20 64 69 65 20 6a-65 74 7a 74 20 6c 65 73 |ie die j etzt les|
0080 65 6e 3f 54 00 00 00 41-54 54 45 4e 54 49 4f 4e |en?T...A TTENTION|
0090 3a 20 54 68 65 72 65 20-61 72 65 20 73 70 65 63 |: There  are spec|
00a0 69 61 6c 20 61 67 72 65-65 6d 65 6e 74 73 20 66 |ial agre ements f|
00b0 6f 72 20 74 68 69 73 20-63 75 73 74 6f 6d 65 72 |or this  customer|
00c0 21 20 44 6f 20 79 6f 75-20 77 69 73 68 20 74 6f |! Do you  wish to|
00d0 20 72 65 61 64 20 74 68-65 6d 3f d1 5e 00 00 00 | read th em?Ñ^...|
00e0 41 63 68 74 75 6e 67 3a-20 46 c3 bc 72 20 64 65 |Achtung:  Für de|
00f0 6e 20 4c 69 65 66 65 72-61 6e 74 65 6e 20 6c 69 |n Liefer anten li|
0100 65 67 65 6e 20 62 65 73-6f 6e 64 65 72 65 20 56 |egen bes ondere V|
0110 65 72 65 69 6e 62 61 72-75 6e 67 65 6e 20 76 6f |ereinbar ungen vo|
0120 72 21 20 57 6f 6c 6c 65-6e 20 53 69 65 20 64 69 |r! Wolle n Sie di|
0130 65 20 6a 65 74 7a 74 20-6c 65 73 65 6e 3f 54 00 |e jetzt  lesen?T.|
0140 00 00 41 54 54 45 4e 54-49 4f 4e 3a 20 54 68 65 |..ATTENT ION: The|
0150 72 65 20 61 72 65 20 73-70 65 63 69 61 6c 20 61 |re are s pecial a|
0160 67 72 65 65 6d 65 6e 74-73 20 66 6f 72 20 74 68 |greement s for th|
0170 69 73 20 73 75 70 70 6c-69 65 72 21 20 44 6f 20 |is suppl ier! Do |
0180 79 6f 75 20 77 69 73 68-20 74 6f 20 72 65 61 64 |you wish  to read|
0190 20 74 68 65 6d 3f d1 33-00 00 00 41 63 68 74 75 | them?Ñ3 ...Achtu|
01a0 6e 67 3a 20 53 69 65 20-66 c3 bc 68 72 65 6e 20 |ng: Sie  führen |
01b0 65 69 6e 65 20 41 75 73-67 6c 65 69 63 68 73 62 |eine Aus gleichsb|
01c0 75 63 68 75 6e 67 20 64-75 72 63 68 20 21 38 00 |uchung d urch !8.|
01d0 00 00 41 54 54 45 4e 54-49 4f 4e 3a 20 59 6f 75 |..ATTENT ION: You|
01e0 20 61 72 65 20 61 62 6f-75 74 20 74 6f 20 70 65 | are abo ut to pe|
01f0 72 66 6f 72 6d 20 61 20-62 61 6c 61 6e 63 69 6e |rform a  balancin|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 83
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (83 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 89 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 89
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (89 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 94 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 94
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (94 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-67 20 70 6f 73 74 69 6e |........ g postin|
0010 67 21 d1 44 00 00 00 41-63 68 74 75 6e 67 3a 20 |g!ÑD...A chtung: |
0020 55 6e 7a 75 6c c3 a4 73-73 69 67 65 20 55 54 46 |Unzuläs sige UTF|
0030 2d 38 20 5a 65 69 63 68-65 6e 20 69 6d 20 53 51 |-8 Zeich en im SQ|
0040 4c 2d 43 6f 64 65 20 65-72 73 65 74 7a 74 2c 20 |L-Code e rsetzt, |
0050 50 6f 73 69 74 69 6f 6e-3a 20 25 47 00 00 00 41 |Position : %G...A|
0060 74 74 65 6e 74 69 6f 6e-3a 20 69 6e 63 6f 72 72 |ttention : incorr|
0070 65 63 74 20 55 54 46 2d-38 20 63 68 61 72 61 63 |ect UTF- 8 charac|
0080 74 65 72 73 20 72 65 70-6c 61 63 65 64 20 69 6e |ters rep laced in|
0090 20 53 51 4c 20 63 6f 64-65 2c 20 70 6f 73 69 74 | SQL cod e, posit|
00a0 69 6f 6e 3a 20 25 d1 25-00 00 00 41 63 68 74 75 |ion: %Ñ% ...Achtu|
00b0 6e 67 3a 20 56 61 72 69-61 62 6c 65 20 25 20 28 |ng: Vari able % (|
00c0 4c 61 67 65 72 4f 72 74-29 20 66 65 68 6c 74 21 |LagerOrt ) fehlt!|
00d0 34 00 00 00 41 54 54 45-4e 54 49 4f 4e 3a 20 56 |4...ATTE NTION: V|
00e0 61 72 69 61 62 6c 65 20-25 20 28 73 74 6f 72 61 |ariable  % (stora|
00f0 67 65 20 6c 6f 63 61 74-69 6f 6e 29 20 69 73 20 |ge locat ion) is |
0100 6d 69 73 73 69 6e 67 21-d1 37 00 00 00 41 63 68 |missing! Ñ7...Ach|
0110 74 75 6e 67 3a 20 56 61-72 69 61 62 6c 65 20 4c |tung: Va riable L|
0120 61 67 65 72 52 65 73 65-72 76 69 65 72 75 6e 67 |agerRese rvierung|
0130 49 49 20 28 4c 61 67 65-72 4f 72 74 29 20 66 65 |II (Lage rOrt) fe|
0140 68 6c 74 21 49 00 00 00-41 54 54 45 4e 54 49 4f |hlt!I... ATTENTIO|
0150 4e 3a 20 54 68 65 20 76-61 72 69 61 62 6c 65 20 |N: The v ariable |
0160 53 74 6f 63 6b 52 65 73-65 72 76 61 74 69 6f 6e |StockRes ervation|
0170 49 49 20 28 73 74 6f 72-61 67 65 20 6c 6f 63 61 |II (stor age loca|
0180 74 69 6f 6e 29 20 69 73-20 6d 69 73 73 69 6e 67 |tion) is  missing|
0190 21 d1 47 00 00 00 41 63-68 74 75 6e 67 3a 20 5a |!ÑG...Ac htung: Z|
01a0 75 20 65 69 6e 69 67 65-6e 20 50 61 72 61 6d 65 |u einige n Parame|
01b0 74 65 72 6e 20 28 7a 2e-42 2e 20 25 2f 25 29 20 |tern (z. B. %/%) |
01c0 66 65 68 6c 74 20 64 69-65 20 6e c3 b6 74 69 67 |fehlt di e nötig|
01d0 65 20 41 6b 74 69 6f 6e-20 28 25 29 21 43 00 00 |e Aktion  (%)!C..|
01e0 00 41 74 74 65 6e 74 69-6f 6e 3a 20 46 6f 72 20 |.Attenti on: For |
01f0 6d 61 6e 79 20 70 61 72-61 6d 65 74 65 72 73 20 |many par ameters |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-28 65 2e 67 2e 20 25 2f |........ (e.g. %/|
0010 25 29 2c 20 61 63 74 69-6f 6e 73 20 61 72 65 20 |%), acti ons are |
0020 6d 69 73 73 69 6e 67 20-28 25 29 21 d1 2c 00 00 |missing  (%)!Ñ,..|
0030 00 41 63 68 74 75 6e 67-3a 20 5a 75 76 69 65 6c |.Achtung : Zuviel|
0040 65 20 50 61 72 61 6d 65-74 65 72 20 28 44 69 6d |e Parame ter (Dim|
0050 65 6e 73 69 6f 6e 20 25-20 3e 20 25 29 30 00 00 |ension %  > %)0..|
0060 00 41 74 74 65 6e 74 69-6f 6e 3a 20 54 6f 6f 20 |.Attenti on: Too |
0070 6d 61 6e 79 20 70 61 72-61 6d 65 74 65 72 73 20 |many par ameters |
0080 28 64 69 6d 65 6e 73 69-6f 6e 20 25 20 3e 20 25 |(dimensi on % > %|
0090 29 d1 2c 00 00 00 41 63-68 74 75 6e 67 3a 20 5a |)Ñ,...Ac htung: Z|
00a0 75 77 65 6e 69 67 20 50-61 72 61 6d 65 74 65 72 |uwenig P arameter|
00b0 20 28 44 69 6d 65 6e 73-69 6f 6e 20 25 20 3c 20 | (Dimens ion % < |
00c0 25 29 2e 00 00 00 41 74-74 65 6e 74 69 6f 6e 3a |%)....At tention:|
00d0 20 54 6f 6f 20 66 65 77-20 70 61 72 61 6d 65 74 | Too few  paramet|
00e0 65 73 20 28 64 69 6d 65-6e 73 69 6f 6e 20 25 20 |es (dime nsion % |
00f0 3c 20 25 29 d1 51 00 00-00 41 63 68 74 75 6e 67 |< %)ÑQ.. .Achtung|
0100 3a 20 62 65 69 20 50 65-72 73 4e 72 20 25 20 28 |: bei Pe rsNr % (|
0110 25 20 25 29 20 66 65 68-6c 74 20 64 69 65 20 41 |% %) feh lt die A|
0120 48 56 2d 4e 75 6d 6d 65-72 2c 20 65 73 20 77 69 |HV-Numme r, es wi|
0130 72 64 20 22 75 6e 62 65-6b 61 6e 6e 74 22 20 65 |rd "unbe kannt" e|
0140 69 6e 67 65 73 65 74 7a-74 21 54 00 00 00 41 74 |ingesetz t!T...At|
0150 74 65 6e 74 69 6f 6e 3a-20 41 48 56 20 6e 75 6d |tention:  AHV num|
0160 62 65 72 20 6d 69 73 73-69 6e 67 20 66 6f 72 20 |ber miss ing for |
0170 70 65 72 73 20 6e 6f 20-25 20 28 25 20 25 29 2c |pers no  % (% %),|
0180 20 69 74 20 77 69 6c 6c-20 62 65 20 72 65 70 6c | it will  be repl|
0190 61 63 65 64 20 62 79 20-22 75 6e 6b 6e 6f 77 6e |aced by  "unknown|
01a0 22 21 d1 56 00 00 00 41-63 68 74 75 6e 67 3a 20 |"!ÑV...A chtung: |
01b0 62 65 69 20 50 65 72 73-4e 72 20 25 20 28 25 20 |bei Pers Nr % (% |
01c0 25 29 20 75 6e 67 c3 bc-6c 74 69 67 65 72 20 5a |%) ungü ltiger Z|
01d0 69 76 69 6c 73 74 61 74-75 73 20 3c 25 3e 2c 20 |ivilstat us <%>, |
01e0 65 73 20 77 69 72 64 20-22 75 6e 6b 6e 6f 77 6e |es wird  "unknown|
01f0 22 20 65 69 6e 67 65 73-65 74 7a 74 21 59 00 00 |" einges etzt!Y..|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e7c00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 81 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 81
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129ba60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (81 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131c180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 41 74 74 65 6e 74 69 |........ .Attenti|
0010 6f 6e 3a 20 50 65 72 73-20 6e 6f 20 25 20 28 25 |on: Pers  no % (%|
0020 20 25 29 20 68 61 73 20-69 6e 76 61 6c 69 64 20 | %) has  invalid |
0030 6d 61 72 69 74 61 6c 20-73 74 61 74 75 73 20 3c |marital  status <|
0040 25 3e 2c 20 69 74 20 77-69 6c 6c 20 72 65 70 6c |%>, it w ill repl|
0050 61 63 65 64 20 62 79 20-22 75 6e 6b 6e 6f 77 6e |aced by  "unknown|
0060 22 21 d1 76 00 00 00 41-63 68 74 75 6e 67 3a 20 |"!Ñv...A chtung: |
0070 62 65 69 20 50 65 72 73-4e 72 20 25 20 66 65 68 |bei Pers Nr % feh|
0080 6c 65 6e 20 50 65 72 73-6f 6e 65 6e 64 61 74 65 |len Pers onendate|
0090 6e 2e 20 4b 6f 6e 74 72-6f 6c 6c 69 65 72 65 6e |n. Kontr ollieren|
00a0 20 53 69 65 20 64 69 65-20 49 53 4f 2d 4c c3 a4 | Sie die  ISO-Lä|
00b0 6e 64 65 72 7a 75 6f 72-64 6e 75 6e 67 20 66 c3 |nderzuor dnung fÃ|
00c0 bc 72 20 41 64 72 65 73-73 65 20 75 6e 64 20 4e |¼r Adres se und N|
00d0 61 74 69 6f 6e 61 6c 69-74 c3 a4 74 21 6a 00 00 |ationali tät!j..|
00e0 00 41 74 74 65 6e 74 69-6f 6e 3a 20 50 65 72 73 |.Attenti on: Pers|
00f0 6f 6e 20 64 61 74 61 20-6d 69 73 73 69 6e 67 20 |on data  missing |
0100 66 6f 72 20 70 65 72 73-20 6e 6f 20 25 2e 20 43 |for pers  no %. C|
0110 68 65 63 6b 20 74 68 65-20 49 53 4f 20 63 6f 75 |heck the  ISO cou|
0120 6e 74 72 79 20 61 73 73-69 67 6e 6d 65 6e 74 20 |ntry ass ignment |
0130 6f 66 20 61 64 64 72 65-73 73 20 61 6e 64 20 6e |of addre ss and n|
0140 61 74 69 6f 6e 61 6c 69-74 79 21 d1 55 00 00 00 |ationali ty!ÑU...|
0150 41 63 68 74 75 6e 67 3a-20 77 65 67 65 6e 20 66 |Achtung:  wegen f|
0160 65 68 6c 65 6e 64 65 72-20 52 6f 68 73 74 6f 66 |ehlender  Rohstof|
0170 66 65 20 6b 61 6e 6e 20-6e 69 63 68 74 20 61 6c |fe kann  nicht al|
0180 6c 65 73 20 61 75 74 6f-6d 61 74 69 73 63 68 20 |les auto matisch |
0190 61 62 67 65 62 75 63 68-74 20 77 65 72 64 65 6e |abgebuch t werden|
01a0 20 28 25 29 21 50 00 00-00 41 54 54 45 4e 54 49 | (%)!P.. .ATTENTI|
01b0 4f 4e 3a 20 4e 6f 20 61-75 74 6f 6d 61 74 69 63 |ON: No a utomatic|
01c0 20 63 6f 6d 70 6c 65 74-65 20 64 65 62 69 74 20 | complet e debit |
01d0 70 6f 73 73 69 62 6c 65-20 64 75 65 20 74 6f 20 |possible  due to |
01e0 6d 69 73 73 69 6e 67 20-72 61 77 20 6d 61 74 65 |missing  raw mate|
01f0 72 69 61 6c 20 28 25 29-21 d1 09 00 00 00 41 64 |rial (%) !Ñ....Ad|

token.c:2111:tds_get_data(): wire column size is 89 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129ba60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 89
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a070, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (89 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 118 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 106 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 118
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (118 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 106
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (106 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 85 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 85
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (85 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 72 65 73 73 65 73 09 |........ dresses.|
0010 00 00 00 41 64 64 72 65-73 73 65 73 d1 07 00 00 |...Addre ssesÑ...|
0020 00 41 64 72 65 73 73 65-07 00 00 00 41 64 64 72 |.Adresse ....Addr|
0030 65 73 73 d1 0e 00 00 00-41 64 72 65 73 73 65 20 |essÑ.... Adresse |
0040 73 75 63 68 65 6e 0e 00-00 00 53 65 61 72 63 68 |suchen.. ..Search|
0050 20 61 64 64 72 65 73 73-d1 0e 00 00 00 41 64 76 | address Ñ....Adv|
0060 65 72 74 69 73 65 6d 65-6e 74 73 0e 00 00 00 41 |ertiseme nts....A|
0070 64 76 65 72 74 69 73 65-6d 65 6e 74 73 d1 06 00 |dvertise mentsÑ..|
0080 00 00 41 67 65 6e 74 73-06 00 00 00 41 67 65 6e |..Agents ....Agen|
0090 74 73 d1 04 00 00 00 41-6c 6c 65 03 00 00 00 41 |tsÑ....A lle....A|
00a0 6c 6c d1 34 00 00 00 41-6c 6c 65 20 41 72 74 69 |llÑ4...A lle Arti|
00b0 6b 65 6c 72 65 66 65 72-65 6e 7a 65 6e 20 76 6f |kelrefer enzen vo|
00c0 6e 20 25 20 28 25 29 20-61 75 66 20 25 20 28 25 |n % (%)  auf % (%|
00d0 29 20 75 6d 73 65 74 7a-65 6e 3f 30 00 00 00 43 |) umsetz en?0...C|
00e0 6f 70 79 20 61 6c 6c 20-61 72 74 69 63 6c 65 20 |opy all  article |
00f0 72 65 66 65 72 65 6e 63-65 73 20 66 72 6f 6d 20 |referenc es from |
0100 25 20 28 25 29 20 74 6f-20 25 20 28 25 29 3f d1 |% (%) to  % (%)?Ñ|
0110 0c 00 00 00 41 6c 6c 65-20 44 61 74 65 69 65 6e |....Alle  Dateien|
0120 09 00 00 00 41 6c 6c 20-66 69 6c 65 73 d1 3e 00 |....All  filesÑ>.|
0130 00 00 41 6c 6c 65 20 6e-61 63 68 66 6f 6c 67 65 |..Alle n achfolge|
0140 6e 64 65 20 44 72 75 63-6b 61 75 66 74 72 c3 a4 |nde Druc kaufträ|
0150 67 65 20 77 75 72 64 65-6e 20 65 62 65 6e 66 61 |ge wurde n ebenfa|
0160 6c 6c 73 20 61 62 67 65-62 72 6f 63 68 65 6e 2e |lls abge brochen.|
0170 38 00 00 00 41 6c 6c 20-66 6f 6c 6c 6f 77 69 6e |8...All  followin|
0180 67 20 70 72 69 6e 74 69-6e 67 20 6f 72 64 65 72 |g printi ng order|
0190 73 20 68 61 76 65 20 62-65 65 6e 20 61 62 6f 72 |s have b een abor|
01a0 74 65 64 20 61 73 20 77-65 6c 6c 2e d1 24 00 00 |ted as w ell.Ñ$..|
01b0 00 41 6c 6c 67 50 72 6f-67 72 61 6d 6d 41 75 66 |.AllgPro grammAuf|
01c0 72 75 66 53 70 6c 69 74-20 25 20 6e 5f 70 61 72 |rufSplit  % n_par|
01d0 61 6d 73 3d 25 24 00 00-00 41 6c 6c 67 50 72 6f |ams=%$.. .AllgPro|
01e0 67 72 61 6d 6d 41 75 66-72 75 66 53 70 6c 69 74 |grammAuf rufSplit|
01f0 20 25 20 6e 5f 70 61 72-61 6d 73 3d 25 d1 22 00 | % n_par ams=%Ñ".|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x122a2b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d6bd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ff380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ff380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 41 6c 6c 67 50 72 |........ ..AllgPr|
0010 6f 67 72 61 6d 6d 41 75-66 72 75 66 53 70 6c 69 |ogrammAu frufSpli|
0020 74 20 3e 25 3c 20 64 69-6d 30 20 25 22 00 00 00 |t >%< di m0 %"...|
0030 41 6c 6c 67 50 72 6f 67-72 61 6d 6d 41 75 66 72 |AllgProg rammAufr|
0040 75 66 53 70 6c 69 74 20-3e 25 3c 20 64 69 6d 30 |ufSplit  >%< dim0|
0050 20 25 d1 22 00 00 00 41-6c 6c 67 50 72 6f 67 72 | %Ñ"...A llgProgr|
0060 61 6d 6d 41 75 66 72 75-66 53 70 6c 69 74 20 6e |ammAufru fSplit n|
0070 5f 70 61 72 61 6d 73 3d-25 22 00 00 00 41 6c 6c |_params= %"...All|
0080 67 50 72 6f 67 72 61 6d-6d 41 75 66 72 75 66 53 |gProgram mAufrufS|
0090 70 6c 69 74 20 6e 5f 70-61 72 61 6d 73 3d 25 d1 |plit n_p arams=%Ñ|
00a0 09 00 00 00 41 6c 6c 67-65 6d 65 69 6e 09 00 00 |....Allg emein...|
00b0 00 47 65 6e 65 72 61 6c-6c 79 d1 6b 00 00 00 41 |.General lyÑk...A|
00c0 6c 6c 67 65 6d 65 69 6e-45 78 70 6f 72 74 3a 20 |llgemein Export: |
00d0 41 63 68 74 75 6e 67 3a-20 75 6e 7a 75 6c 61 65 |Achtung:  unzulae|
00e0 73 73 69 67 65 20 5a 65-69 63 68 65 6e 20 69 6d |ssige Ze ichen im|
00f0 20 46 65 6c 64 69 6e 68-61 6c 74 20 3c 25 3e 20 | Feldinh alt <%> |
0100 61 75 66 20 50 6f 73 69-74 69 6f 6e 20 25 20 2d |auf Posi tion % -|
0110 20 46 65 6c 64 61 75 73-67 61 62 65 20 75 6e 74 | Feldaus gabe unt|
0120 65 72 64 72 75 65 63 6b-74 21 69 00 00 00 41 6c |erdrueck t!i...Al|
0130 6c 67 65 6d 65 69 6e 45-78 70 6f 72 74 3a 20 41 |lgemeinE xport: A|
0140 74 74 65 6e 74 69 6f 6e-3a 20 69 6e 76 61 6c 69 |ttention : invali|
0150 64 20 63 68 61 72 61 63-74 65 72 73 20 69 6e 20 |d charac ters in |
0160 66 69 65 6c 64 20 63 6f-6e 74 65 6e 74 20 3c 25 |field co ntent <%|
0170 3e 20 61 74 20 70 6f 73-69 74 69 6f 6e 20 25 20 |> at pos ition % |
0180 2d 20 66 69 65 6c 64 20-6f 75 74 70 75 74 20 61 |- field  output a|
0190 62 6f 72 74 65 64 21 d1-41 00 00 00 41 6c 73 20 |borted!Ñ A...Als |
01a0 41 75 73 67 61 62 65 65-69 6e 68 65 69 74 65 6e |Ausgabee inheiten|
01b0 20 73 69 6e 64 20 6e 75-72 20 42 69 6c 64 73 63 | sind nu r Bildsc|
01c0 68 69 72 6d 20 6f 64 65-72 20 44 72 75 63 6b 65 |hirm ode r Drucke|
01d0 72 20 76 65 72 66 c3 bc-67 62 61 72 31 30 00 00 |r verfü gbar10..|
01e0 00 4f 6e 6c 79 20 73 63-72 65 65 6e 20 61 6e 64 |.Only sc reen and|
01f0 20 70 72 69 6e 74 65 72-20 61 72 65 20 61 76 61 | printer  are ava|

token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ff380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ff380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ff380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1326270, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 107 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 105 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 107
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13243e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (107 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 105
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (105 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6c 61 62 6c 65 20 66 |........ ilable f|
0010 6f 72 20 6f 75 74 70 75-74 d1 24 00 00 00 41 6c |or outpu tÑ$...Al|
0020 74 65 72 20 45 69 6e 74-72 61 67 20 69 6e 20 50 |ter Eint rag in P|
0030 6f 73 69 74 69 6f 6e 48-69 73 74 6f 72 79 20 25 |ositionH istory %|
0040 2f 25 20 00 00 00 4f 6c-64 20 65 6e 74 72 79 20 |/% ...Ol d entry |
0050 69 6e 20 50 6f 73 69 74-69 6f 6e 48 69 73 74 6f |in Posit ionHisto|
0060 72 79 20 25 2f 25 d1 2b-00 00 00 41 6e 20 64 69 |ry %/%Ñ+ ...An di|
0070 65 73 65 72 20 53 74 65-6c 6c 65 20 69 73 74 20 |eser Ste lle ist |
0080 6b 65 69 6e 20 57 65 72-74 20 76 6f 72 67 65 73 |kein Wer t vorges|
0090 65 68 65 6e 20 21 1a 00-00 00 4e 6f 20 76 61 6c |ehen !.. ..No val|
00a0 75 65 20 69 73 20 72 65-71 75 69 72 65 64 20 68 |ue is re quired h|
00b0 65 72 65 21 d1 07 00 00-00 41 6e 67 65 62 6f 74 |ere!Ñ... .Angebot|
00c0 05 00 00 00 4f 66 66 65-72 d1 11 00 00 00 41 6e |....Offe rÑ....An|
00d0 67 65 62 6f 74 20 76 65-72 77 61 6c 74 65 6e 14 |gebot ve rwalten.|
00e0 00 00 00 4f 66 66 65 72-20 61 64 6d 69 6e 69 73 |...Offer  adminis|
00f0 74 72 61 74 69 6f 6e d1-1e 00 00 00 41 6e 67 65 |trationÑ ....Ange|
0100 62 6f 74 73 2d 47 72 75-6e 64 64 61 74 65 6e 20 |bots-Gru nddaten |
0110 62 65 61 72 62 65 69 74-65 6e 18 00 00 00 45 64 |bearbeit en....Ed|
0120 69 74 20 62 61 73 69 63-20 64 61 74 61 20 6f 66 |it basic  data of|
0130 20 6f 66 66 65 72 d1 1e-00 00 00 41 6e 67 65 62 | offerÑ. ...Angeb|
0140 6f 74 73 2d 50 6f 73 69-74 69 6f 6e 65 6e 20 62 |ots-Posi tionen b|
0150 65 61 72 62 65 69 74 65-6e 10 00 00 00 45 64 69 |earbeite n....Edi|
0160 74 20 6f 66 66 65 72 20-69 74 65 6d 73 d1 1c 00 |t offer  itemsÑ..|
0170 00 00 41 6e 67 65 62 6f-74 73 2d c3 9c 62 65 72 |..Angebo ts-Ã.ber|
0180 73 69 63 68 74 20 61 6e-7a 65 69 67 65 6e 13 00 |sicht an zeigen..|
0190 00 00 53 68 6f 77 20 6f-72 64 65 72 20 6f 76 65 |..Show o rder ove|
01a0 72 76 69 65 77 d1 1b 00-00 00 41 6e 6c 61 67 65 |rviewÑ.. ..Anlage|
01b0 6e 2d 41 74 74 72 69 62-75 74 65 20 76 65 72 77 |n-Attrib ute verw|
01c0 61 6c 74 65 6e 22 00 00-00 41 64 6d 69 6e 69 73 |alten".. .Adminis|
01d0 74 72 61 74 65 20 69 6e-76 65 73 74 6d 65 6e 74 |trate in vestment|
01e0 20 61 74 74 72 69 62 75-74 65 73 d1 21 00 00 00 | attribu tesÑ!...|
01f0 41 6e 6c 61 67 65 6e 2d-41 74 74 72 69 62 75 74 |Anlagen- Attribut|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13243e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13243e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13243e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13243e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13243e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123be10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123be10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123be10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1324460, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123be10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1224390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 77 65 72 74 65 20 62 |........ ewerte b|
0010 65 61 72 62 65 69 74 65-6e 20 00 00 00 45 64 69 |earbeite n ...Edi|
0020 74 20 69 6e 76 65 73 74-6d 65 6e 74 20 61 74 74 |t invest ment att|
0030 72 69 62 75 74 65 20 76-61 6c 75 65 73 d1 0e 00 |ribute v aluesÑ..|
0040 00 00 41 6e 6c 61 67 65-6e 77 61 72 74 75 6e 67 |..Anlage nwartung|
0050 16 00 00 00 49 6e 76 65-73 74 6d 65 6e 74 20 6d |....Inve stment m|
0060 61 69 6e 74 65 6e 61 6e-63 65 d1 49 00 00 00 41 |aintenan ceÑI...A|
0070 6e 72 65 64 65 63 6f 64-65 20 64 65 73 20 41 6e |nredecod e des An|
0080 73 70 72 65 63 68 70 61-72 74 6e 65 72 73 20 3e |sprechpa rtners >|
0090 41 64 72 4e 72 20 25 3c-20 6e 69 63 68 74 20 65 |AdrNr %<  nicht e|
00a0 72 6c 61 75 62 74 20 28-6e 69 63 68 74 20 31 20 |rlaubt ( nicht 1 |
00b0 6f 64 65 72 20 32 29 21-45 00 00 00 53 61 6c 75 |oder 2)! E...Salu|
00c0 74 61 74 69 6f 6e 20 63-6f 64 65 20 6f 66 20 63 |tation c ode of c|
00d0 6f 6e 74 61 63 74 20 70-65 72 73 6f 6e 20 3e 41 |ontact p erson >A|
00e0 64 72 4e 6f 20 25 3c 20-6e 6f 74 20 61 6c 6c 6f |drNo %<  not allo|
00f0 77 65 64 20 28 6e 6f 74-20 31 20 6f 72 20 32 29 |wed (not  1 or 2)|
0100 21 d1 06 00 00 00 41 6e-74 65 69 6c 07 00 00 00 |!Ñ....An teil....|
0110 50 6f 72 74 69 6f 6e d1-08 00 00 00 41 6e 7a 65 |PortionÑ ....Anze|
0120 69 67 65 6e 04 00 00 00-53 68 6f 77 d1 16 00 00 |igen.... ShowÑ...|
0130 00 41 72 69 74 68 6d 65-74 69 73 63 68 20 44 65 |.Arithme tisch De|
0140 67 72 65 73 73 69 76 23-00 00 00 61 72 69 74 68 |gressiv# ...arith|
0150 6d 65 74 69 63 20 64 65-63 6c 69 6e 69 6e 67 20 |metic de clining |
0160 62 61 6c 61 6e 63 65 20-6d 65 74 68 6f 64 d1 17 |balance  methodÑ.|
0170 00 00 00 41 72 69 74 68-6d 65 74 69 73 63 68 20 |...Arith metisch |
0180 50 72 6f 67 72 65 73 73-69 76 27 00 00 00 61 72 |Progress iv'...ar|
0190 69 74 68 6d 65 74 69 63-61 6c 20 70 72 6f 67 72 |ithmetic al progr|
01a0 65 73 73 69 76 65 20 62-61 6c 61 6e 63 65 20 6d |essive b alance m|
01b0 65 74 68 6f 64 d1 28 00-00 00 41 72 74 43 4e 72 |ethodÑ(. ..ArtCNr|
01c0 43 61 6c 6c 3a 20 49 6e-74 65 72 6e 3a 20 75 6e |Call: In tern: un|
01d0 67 c3 bc 6c 74 69 67 65-72 20 41 75 66 72 75 66 |gültige r Aufruf|
01e0 20 25 24 00 00 00 41 72-74 43 4e 72 43 61 6c 6c | %$...Ar tCNrCall|
01f0 3a 20 69 6e 74 65 72 6e-61 6c 3a 20 49 6e 76 61 |: intern al: Inva|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123be10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1224390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x123be10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1224390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12235d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1223630, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12235d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1223630, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12235d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1223630, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12235d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1223630, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12235d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1223630, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 69 64 20 63 61 6c 6c |........ lid call|
0010 20 25 d1 2d 00 00 00 41-72 74 43 56 6f 72 41 65 | %Ñ-...A rtCVorAe|
0020 6e 64 43 68 61 72 67 65-28 25 29 3a 20 50 50 53 |ndCharge (%): PPS|
0030 41 72 74 69 6b 65 6c 56-6f 72 73 63 68 72 69 66 |ArtikelV orschrif|
0040 74 3a 20 25 2e 00 00 00-41 72 74 43 56 6f 72 41 |t: %.... ArtCVorA|
0050 65 6e 64 43 68 61 72 67-65 28 25 29 3a 20 50 50 |endCharg e(%): PP|
0060 53 41 72 74 69 63 6c 65-52 65 67 75 6c 61 74 69 |SArticle Regulati|
0070 6f 6e 20 3a 20 25 d1 38-00 00 00 41 72 74 43 56 |on : %Ñ8 ...ArtCV|
0080 6f 72 41 65 6e 64 45 76-65 6e 74 28 25 2c 25 2c |orAendEv ent(%,%,|
0090 25 29 3a 20 41 62 62 72-75 63 68 20 77 65 67 65 |%): Abbr uch wege|
00a0 6e 20 66 65 68 6c 65 6e-64 65 72 20 41 6e 67 61 |n fehlen der Anga|
00b0 62 65 6e 39 00 00 00 41-72 74 43 56 6f 72 41 65 |ben9...A rtCVorAe|
00c0 6e 64 45 76 65 6e 74 28-25 2c 25 2c 25 29 3a 20 |ndEvent( %,%,%): |
00d0 41 62 6f 72 74 20 64 75-65 20 74 6f 20 6d 69 73 |Abort du e to mis|
00e0 73 69 6e 67 20 69 6e 64-69 63 61 74 69 6f 6e 73 |sing ind ications|
00f0 d1 1d 00 00 00 41 72 74-43 56 6f 72 41 65 6e 64 |Ñ....Art CVorAend|
0100 45 76 65 6e 74 28 25 2c-25 2c 25 29 3a 20 44 6f |Event(%, %,%): Do|
0110 6e 65 1d 00 00 00 41 72-74 43 56 6f 72 41 65 6e |ne....Ar tCVorAen|
0120 64 45 76 65 6e 74 28 25-2c 25 2c 25 29 3a 20 44 |dEvent(% ,%,%): D|
0130 6f 6e 65 d1 31 00 00 00-41 72 74 43 56 6f 72 41 |oneÑ1... ArtCVorA|
0140 65 6e 64 45 76 65 6e 74-28 25 2c 25 2c 25 29 3a |endEvent (%,%,%):|
0150 20 45 72 65 69 67 6e 69-73 20 65 78 69 73 74 69 | Ereigni s existi|
0160 65 72 74 20 6e 69 63 68-74 31 00 00 00 41 72 74 |ert nich t1...Art|
0170 43 56 6f 72 41 65 6e 64-45 76 65 6e 74 28 25 2c |CVorAend Event(%,|
0180 25 2c 25 29 3a 20 53 79-73 2d 45 76 65 6e 74 20 |%,%): Sy s-Event |
0190 64 6f 65 73 20 6e 6f 74-20 65 78 69 73 74 d1 6b |does not  existÑk|
01a0 00 00 00 41 72 74 43 56-6f 72 41 65 6e 64 45 76 |...ArtCV orAendEv|
01b0 65 6e 74 28 25 2c 25 2c-25 29 3a 20 45 72 65 69 |ent(%,%, %): Erei|
01c0 67 6e 69 73 72 65 61 6b-74 69 6f 6e 20 3c 25 3e |gnisreak tion <%>|
01d0 20 65 6e 74 68 c3 a4 6c-74 20 6e 69 63 68 74 2d | enthäl t nicht-|
01e0 75 6e 74 65 72 73 74 c3-bc 74 7a 74 65 20 52 65 |unterstà ¼tzte Re|
01f0 61 6b 74 69 6f 6e 73 61-72 74 65 6e 2c 20 65 72 |aktionsa rten, er|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129b670, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1223630, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e6270, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12cd850, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e6270, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d88f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e6270, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d88f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e6270, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d88f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 107 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 61 75 62 74 20 73 69 |........ laubt si|
0010 6e 64 20 3c 25 3e 6e 00-00 00 41 72 74 43 56 6f |nd <%>n. ..ArtCVo|
0020 72 41 65 6e 64 45 76 65-6e 74 28 25 2c 25 2c 25 |rAendEve nt(%,%,%|
0030 29 3a 20 53 79 73 2d 45-76 65 6e 74 20 72 65 61 |): Sys-E vent rea|
0040 63 74 69 6f 6e 20 3c 25-3e 20 63 6f 6e 74 61 69 |ction <% > contai|
0050 6e 73 20 6e 6f 6e 2d 73-75 70 70 6f 72 74 65 64 |ns non-s upported|
0060 20 72 65 61 63 74 69 6f-6e 20 74 79 70 65 73 2c | reactio n types,|
0070 20 74 68 6f 73 65 20 61-76 61 69 6c 61 62 6c 65 | those a vailable|
0080 20 61 72 65 20 3c 25 3e-d1 1e 00 00 00 41 72 74 | are <%> Ñ....Art|
0090 43 56 6f 72 41 65 6e 64-45 76 65 6e 74 28 25 2c |CVorAend Event(%,|
00a0 25 2c 25 29 3a 20 53 74-61 72 74 1e 00 00 00 41 |%,%): St art....A|
00b0 72 74 43 56 6f 72 41 65-6e 64 45 76 65 6e 74 28 |rtCVorAe ndEvent(|
00c0 25 2c 25 2c 25 29 3a 20-53 74 61 72 74 d1 20 00 |%,%,%):  StartÑ .|
00d0 00 00 41 72 74 43 56 6f-72 41 65 6e 64 56 65 72 |..ArtCVo rAendVer|
00e0 66 61 6c 6c 28 25 2c 25-2c 25 2c 25 2c 20 25 2c |fall(%,% ,%,%, %,|
00f0 25 29 20 00 00 00 41 72-74 43 56 6f 72 41 65 6e |%) ...Ar tCVorAen|
0100 64 56 65 72 66 61 6c 6c-28 25 2c 25 2c 25 2c 25 |dVerfall (%,%,%,%|
0110 2c 20 25 2c 25 29 d1 1d-00 00 00 41 72 74 43 56 |, %,%)Ñ. ...ArtCV|
0120 6f 72 41 65 6e 64 56 65-72 66 61 6c 6c 3a 20 48 |orAendVe rfall: H|
0130 44 20 25 20 56 44 20 25-1d 00 00 00 41 72 74 43 |D % VD % ....ArtC|
0140 56 6f 72 41 65 6e 64 56-65 72 66 61 6c 6c 3a 20 |VorAendV erfall: |
0150 50 44 20 25 20 45 44 20-25 d1 07 00 00 00 41 72 |PD % ED  %Ñ....Ar|
0160 74 4e 72 20 25 08 00 00-00 41 72 74 20 6e 6f 20 |tNr %... .Art no |
0170 25 d1 12 00 00 00 41 72-74 4e 72 48 20 25 20 41 |%Ñ....Ar tNrH % A|
0180 6e 7a 61 68 6c 48 20 25-12 00 00 00 41 72 74 4e |nzahlH % ....ArtN|
0190 6f 48 20 25 20 4e 75 6d-62 65 72 48 20 25 d1 26 |oH % Num berH %Ñ&|
01a0 00 00 00 41 72 74 4e 72-48 20 25 20 42 65 73 63 |...ArtNr H % Besc|
01b0 68 61 66 66 75 6e 67 73-41 72 74 20 25 20 46 72 |haffungs Art % Fr|
01c0 65 6d 64 43 6f 64 65 20-25 29 00 00 00 41 72 74 |emdCode  %)...Art|
01d0 4e 6f 48 20 25 20 50 72-6f 63 75 72 65 6d 65 6e |NoH % Pr ocuremen|
01e0 74 54 79 70 65 20 25 20-45 78 74 65 72 6e 61 6c |tType %  External|
01f0 43 6f 64 65 20 25 d1 14-00 00 00 41 72 74 4e 72 |Code %Ñ. ...ArtNr|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 110 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 107
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (107 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 110
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (110 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf58340, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-48 20 25 20 44 6f 52 65 |........ H % DoRe|
0010 73 65 72 76 65 20 25 14-00 00 00 41 72 74 4e 72 |serve %. ...ArtNr|
0020 48 20 25 20 44 6f 52 65-73 65 72 76 65 20 25 d1 |H % DoRe serve %Ñ|
0030 3f 00 00 00 41 72 74 4e-72 48 20 25 20 76 69 61 |?...ArtN rH % via|
0040 73 74 6b 6c 20 25 20 4b-54 54 79 70 20 25 20 4b |stkl % K TTyp % K|
0050 54 48 4b 41 6c 67 6f 20-25 20 49 73 74 46 65 72 |THKAlgo  % IstFer|
0060 74 69 67 75 6e 67 45 50-20 25 20 52 65 63 68 4e |tigungEP  % RechN|
0070 72 20 25 45 00 00 00 41-72 74 4e 6f 48 20 25 20 |r %E...A rtNoH % |
0080 76 69 61 73 74 6b 6c 20-25 20 43 55 54 79 70 65 |viastkl  % CUType|
0090 20 25 20 43 43 43 50 41-6c 67 6f 20 25 20 50 72 | % CCCPA lgo % Pr|
00a0 6f 64 75 63 74 69 6f 6e-50 50 52 65 61 6c 20 25 |oduction PPReal %|
00b0 20 49 6e 76 6f 69 63 65-4e 6f 20 25 d1 17 00 00 | Invoice No %Ñ...|
00c0 00 41 72 74 50 48 69 73-74 41 6e 7a 65 69 67 65 |.ArtPHis tAnzeige|
00d0 6e 28 25 2c 25 2c 25 29-17 00 00 00 41 72 74 50 |n(%,%,%) ....ArtP|
00e0 48 69 73 74 41 6e 7a 65-69 67 65 6e 28 25 2c 25 |HistAnze igen(%,%|
00f0 2c 25 29 d1 46 00 00 00-41 72 74 53 48 44 42 4d |,%)ÑF... ArtSHDBM|
0100 65 72 67 65 3a 20 44 69-65 20 56 6f 72 6c 61 67 |erge: Di e Vorlag|
0110 65 20 69 73 74 20 75 6e-64 65 66 69 6e 69 65 72 |e ist un definier|
0120 74 20 66 c3 bc 72 20 41-72 74 4e 72 20 25 20 56 |t für A rtNr % V|
0130 2e 20 25 20 44 65 62 69-4e 72 20 25 20 21 38 00 |. % Debi Nr % !8.|
0140 00 00 41 72 74 53 48 44-4d 65 72 67 65 3a 20 4d |..ArtSHD Merge: M|
0150 61 73 74 65 72 20 75 6e-64 65 66 69 6e 65 64 20 |aster un defined |
0160 66 6f 72 20 41 72 74 4e-6f 20 25 20 56 2e 20 25 |for ArtN o % V. %|
0170 20 44 65 62 74 4e 6f 20-25 21 d1 3e 00 00 00 41 | DebtNo  %!Ñ>...A|
0180 72 74 53 48 44 42 6c 61-74 74 3a 20 44 69 65 20 |rtSHDBla tt: Die |
0190 56 6f 72 6c 61 67 65 20-3c 25 3e 20 65 78 69 73 |Vorlage  <%> exis|
01a0 74 69 65 72 74 20 6e 69-63 68 74 20 66 c3 bc 72 |tiert ni cht für|
01b0 20 53 70 72 61 63 68 65-20 3c 25 3e 21 38 00 00 | Sprache  <%>!8..|
01c0 00 41 72 74 53 48 44 53-68 65 65 74 3a 20 4d 61 |.ArtSHDS heet: Ma|
01d0 73 74 65 72 20 3c 25 3e-20 64 6f 65 73 20 6e 6f |ster <%>  does no|
01e0 74 20 65 78 69 73 74 20-66 6f 72 20 6c 61 6e 67 |t exist  for lang|
01f0 75 61 67 65 20 3c 25 3e-21 d1 43 00 00 00 41 72 |uage <%> !ÑC...Ar|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13e0f00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf58340, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 53 48 44 42 6c 61 74 |........ tSHDBlat|
0010 74 3a 20 44 69 65 20 56-6f 72 6c 61 67 65 20 69 |t: Die V orlage i|
0020 73 74 20 75 6e 64 65 66-69 6e 69 65 72 74 20 66 |st undef iniert f|
0030 c3 bc 72 20 41 72 74 4e-72 20 25 20 56 2e 20 25 |ür ArtN r % V. %|
0040 20 44 65 62 69 4e 72 20-25 37 00 00 00 41 72 74 | DebiNr  %7...Art|
0050 53 48 44 53 68 65 65 74-3a 20 4d 61 73 74 65 72 |SHDSheet : Master|
0060 20 75 6e 64 65 66 69 6e-65 64 20 66 6f 72 20 41 | undefin ed for A|
0070 72 74 4e 6f 20 25 20 56-2e 20 25 20 44 65 62 74 |rtNo % V . % Debt|
0080 4e 6f 20 25 d1 07 00 00-00 41 72 74 69 63 6c 65 |No %Ñ... .Article|
0090 07 00 00 00 41 72 74 69-63 6c 65 d1 07 00 00 00 |....Arti cleÑ....|
00a0 41 72 74 69 6b 65 6c 07-00 00 00 41 72 74 69 63 |Artikel. ...Artic|
00b0 6c 65 d1 1d 00 00 00 41-72 74 69 6b 65 6c 20 47 |leÑ....A rtikel G|
00c0 72 75 6e 64 64 61 74 65-6e 20 62 65 61 72 62 65 |runddate n bearbe|
00d0 69 74 65 6e 17 00 00 00-41 72 74 69 63 6c 65 20 |iten.... Article |
00e0 65 64 69 74 20 62 61 73-69 63 20 64 61 74 61 d1 |edit bas ic dataÑ|
00f0 21 00 00 00 41 72 74 69-6b 65 6c 20 56 65 72 6b |!...Arti kel Verk|
0100 61 75 66 73 70 72 65 69-73 65 20 62 65 61 72 62 |aufsprei se bearb|
0110 65 69 74 65 6e 1a 00 00-00 45 64 69 74 20 61 72 |eiten... .Edit ar|
0120 74 69 63 6c 65 20 73 65-6c 6c 69 6e 67 20 70 72 |ticle se lling pr|
0130 69 63 65 d1 1c 00 00 00-41 72 74 69 6b 65 6c 20 |iceÑ.... Artikel |
0140 56 6f 72 66 c3 a4 6c 6c-65 20 62 65 61 72 62 65 |Vorfäll e bearbe|
0150 69 74 65 6e 16 00 00 00-45 64 69 74 20 61 72 74 |iten.... Edit art|
0160 69 63 6c 65 20 69 6e 63-69 64 65 6e 74 73 d1 18 |icle inc identsÑ.|
0170 00 00 00 41 72 74 69 6b-65 6c 20 69 6e 20 41 72 |...Artik el in Ar|
0180 74 69 6b 65 6c 73 74 61-6d 6d 3a 18 00 00 00 41 |tikelsta mm:....A|
0190 72 74 69 63 6c 65 20 69-6e 20 61 72 74 69 63 6c |rticle i n articl|
01a0 65 20 62 61 73 65 3a d1-16 00 00 00 41 72 74 69 |e base:Ñ ....Arti|
01b0 6b 65 6c 20 69 6e 20 50-72 65 69 73 6c 69 73 74 |kel in P reislist|
01c0 65 3a 16 00 00 00 41 72-74 69 63 6c 65 20 69 6e |e:....Ar ticle in|
01d0 20 70 72 69 63 65 20 6c-69 73 74 3a d1 62 00 00 | price l ist:Ñb..|
01e0 00 41 72 74 69 6b 65 6c-20 6d 69 74 20 42 61 73 |.Artikel  mit Bas|
01f0 69 73 2d 20 75 6e 64 20-55 6e 74 65 72 63 68 61 |is- und  Untercha|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
tokedblib.c:1544:dbexit(void)
query.c:3758:tds_disconnect() 
mem.c:654:tds_free_all_results()
util.c:165:Changed query state from IDLE to WRITING
util.c:165:Changed query state from WRITING to PENDING
packet.c:742:Sending packet
0000 0f 01 00 0a 00 00 00 00-71 00                   |........ q.|

token.c:532:tds_process_tokens(0x1a8f620, 0x7ffd777a1888, 0x7ffd777a188c, 0x100)
util.c:165:Changed query state from PENDING to READING
packet.c:640:Received packet
0000 04 01 00 11 00 00 00 00-fd 00 00 02 00 01 00 00 |........ ........|
0010 00                     -                        |.|

token.c:547:processing result tokens.  marker is  fd(DONE)
token.c:2087:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2104:                rows_affected = 1
token.c:2107:tds_process_end() state set to TDS_IDLE
util.c:165:Changed query state from READING to IDLE
util.c:83:logic error: cannot change query state from IDLE to PENDING
util.c:165:Changed query state from IDLE to IDLE
token.c:532:tds_process_tokens(0x1a8f620, 0x7ffd777a1888, 0x7ffd777a188c, 0x100)
token.c:535:tds_process_tokens() state is COMPLETED
util.c:165:Changed query state from IDLE to DEAD
mem.c:654:tds_free_all_results()
dblib.c:1477:dbclose(0x1a8eec0)
dblib.c:5980:dbfreebuf(0x1a8eec0)
dblib.c:288:dblib_release_tds_ctx(2)
(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13f7980, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 98 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 67 65 6e 6e 75 6d 6d |........ rgennumm|
0010 65 72 6e 20 65 72 6c 61-75 62 65 6e 20 6b 65 69 |ern erla uben kei|
0020 6e 65 20 61 75 74 6f 6d-61 74 69 73 63 68 65 20 |ne autom atische |
0030 56 65 72 67 61 62 65 20-76 6f 6e 20 43 68 61 72 |Vergabe  von Char|
0040 67 65 6e 6e 75 6d 6d 65-72 6e 21 5e 00 00 00 41 |gennumme rn!^...A|
0050 72 74 69 63 6c 65 73 20-77 69 74 68 20 62 61 73 |rticles  with bas|
0060 69 63 20 61 6e 64 20 73-75 62 2d 62 61 74 63 68 |ic and s ub-batch|
0070 20 6e 75 6d 62 65 72 73-20 64 6f 20 6e 6f 74 20 | numbers  do not |
0080 61 6c 6c 6f 77 20 61 75-74 6f 6d 61 74 69 63 20 |allow au tomatic |
0090 61 73 73 69 67 6e 6d 65-6e 74 73 20 6f 66 20 62 |assignme nts of b|
00a0 61 74 63 68 20 6e 75 6d-62 65 72 73 21 d1 6a 00 |atch num bers!Ñj.|
00b0 00 00 41 72 74 69 6b 65-6c 20 6d 69 74 20 42 61 |..Artike l mit Ba|
00c0 73 69 73 2d 20 75 6e 64-20 55 6e 74 65 72 63 68 |sis- und  Unterch|
00d0 61 72 67 65 6e 6e 75 6d-6d 65 72 6e 20 75 6e 64 |argennum mern und|
00e0 20 56 50 45 20 65 72 6c-61 75 62 65 6e 20 6b 65 | VPE erl auben ke|
00f0 69 6e 65 20 61 75 74 6f-6d 61 74 69 73 63 68 65 |ine auto matische|
0100 20 56 65 72 67 61 62 65-20 76 6f 6e 20 43 68 61 | Vergabe  von Cha|
0110 72 67 65 6e 6e 75 6d 6d-65 72 6e 21 66 00 00 00 |rgennumm ern!f...|
0120 41 72 74 69 63 6c 65 73-20 77 69 74 68 20 62 61 |Articles  with ba|
0130 73 69 63 20 61 6e 64 20-73 75 62 2d 62 61 74 63 |sic and  sub-batc|
0140 68 20 6e 75 6d 62 65 72-73 20 61 6e 64 20 50 55 |h number s and PU|
0150 73 20 64 6f 20 6e 6f 74-20 61 6c 6c 6f 77 20 61 |s do not  allow a|
0160 75 74 6f 6d 61 74 69 63-20 61 73 73 69 67 6e 6d |utomatic  assignm|
0170 65 6e 74 73 20 6f 66 20-62 61 74 63 68 20 6e 75 |ents of  batch nu|
0180 6d 62 65 72 73 21 d1 14-00 00 00 41 72 74 69 6b |mbers!Ñ. ...Artik|
0190 65 6c 20 6f 68 6e 65 20-50 72 65 69 73 65 3a 18 |el ohne  Preise:.|
01a0 00 00 00 41 72 74 69 63-6c 65 73 20 77 69 74 68 |...Artic les with|
01b0 6f 75 74 20 70 72 69 63-65 73 3a d1 1b 00 00 00 |out pric es:Ñ....|
01c0 41 72 74 69 6b 65 6c 2d-41 74 74 72 69 62 75 74 |Artikel- Attribut|
01d0 65 20 76 65 72 77 61 6c-74 65 6e 1f 00 00 00 41 |e verwal ten....A|
01e0 64 6d 69 6e 69 73 74 72-61 74 65 20 61 72 74 69 |dministr ate arti|
01f0 63 6c 65 20 61 74 74 72-69 62 75 74 65 73 d1 21 |cle attr ibutesÑ!|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 94 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 98
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131de90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (98 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 94
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (94 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 106 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 102 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 106
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (106 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 102
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (102 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 00 41 72 74 69 6b |........ ...Artik|
0010 65 6c 2d 41 74 74 72 69-62 75 74 65 77 65 72 74 |el-Attri butewert|
0020 65 20 62 65 61 72 62 65-69 74 65 6e 1d 00 00 00 |e bearbe iten....|
0030 45 64 69 74 20 61 72 74-69 63 6c 65 20 61 74 74 |Edit art icle att|
0040 72 69 62 75 74 65 20 76-61 6c 75 65 73 d1 20 00 |ribute v aluesÑ .|
0050 00 00 41 72 74 69 6b 65-6c 2d 41 74 74 72 69 62 |..Artike l-Attrib|
0060 75 74 77 65 72 74 65 20-62 65 61 72 62 65 69 74 |utwerte  bearbeit|
0070 65 6e 1d 00 00 00 45 64-69 74 20 61 72 74 69 63 |en....Ed it artic|
0080 6c 65 20 61 74 74 72 69-62 75 74 65 20 76 61 6c |le attri bute val|
0090 75 65 73 d1 0e 00 00 00-41 72 74 69 6b 65 6c 2d |uesÑ.... Artikel-|
00a0 43 68 61 72 67 65 0d 00-00 00 41 52 74 69 63 6c |Charge.. ..ARticl|
00b0 65 20 62 61 74 63 68 d1-1c 00 00 00 41 72 74 69 |e batchÑ ....Arti|
00c0 6b 65 6c 2d 4c 61 67 65-72 6f 72 74 65 20 62 65 |kel-Lage rorte be|
00d0 61 72 62 65 69 74 65 6e-1e 00 00 00 45 64 69 74 |arbeiten ....Edit|
00e0 20 61 72 74 69 63 6c 65-20 73 74 6f 72 61 67 65 | article  storage|
00f0 20 6c 6f 63 61 74 69 6f-6e 73 d1 1b 00 00 00 41 | locatio nsÑ....A|
0100 72 74 69 6b 65 6c 2d c3-9c 62 65 72 73 69 63 68 |rtikel-Ã .bersich|
0110 74 20 61 6e 7a 65 69 67-65 6e 15 00 00 00 53 68 |t anzeig en....Sh|
0120 6f 77 20 61 72 74 69 63-6c 65 20 6f 76 65 72 76 |ow artic le overv|
0130 69 65 77 d1 18 00 00 00-41 72 74 69 6b 65 6c 6b |iewÑ.... Artikelk|
0140 75 6e 64 65 6e 20 62 65-61 72 62 65 69 74 65 6e |unden be arbeiten|
0150 16 00 00 00 45 64 69 74-20 61 72 74 69 63 6c 65 |....Edit  article|
0160 20 63 75 73 74 6f 6d 65-72 73 d1 1d 00 00 00 41 | custome rsÑ....A|
0170 72 74 69 6b 65 6c 6c 69-65 66 65 72 61 6e 74 65 |rtikelli eferante|
0180 6e 20 62 65 61 72 62 65-69 74 65 6e 16 00 00 00 |n bearbe iten....|
0190 45 64 69 74 20 61 72 74-69 63 6c 65 20 73 75 70 |Edit art icle sup|
01a0 70 6c 69 65 72 73 d1 1c-00 00 00 41 72 74 69 6b |pliersÑ. ...Artik|
01b0 65 6c 72 65 66 65 72 65-6e 7a 65 6e 20 75 6d 73 |elrefere nzen ums|
01c0 65 74 7a 65 6e 20 3f 1b-00 00 00 52 65 70 6c 61 |etzen ?. ...Repla|
01d0 63 65 20 61 72 74 69 63-6c 65 20 72 65 66 65 72 |ce artic le refer|
01e0 65 6e 63 65 73 3f d1 10-00 00 00 41 74 74 65 6e |ences?Ñ. ...Atten|
01f0 64 61 6e 63 65 20 74 69-6d 65 73 10 00 00 00 41 |dance ti mes....A|

token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 74 65 6e 64 61 6e 63 |........ ttendanc|
0010 65 20 74 69 6d 65 73 d1-16 00 00 00 41 74 74 72 |e timesÑ ....Attr|
0020 69 62 75 74 65 20 62 65-61 72 62 65 69 74 65 6e |ibute be arbeiten|
0030 20 3f 0f 00 00 00 45 64-69 74 20 61 74 74 72 69 | ?....Ed it attri|
0040 62 75 74 65 73 d1 2a 00-00 00 41 75 66 20 64 69 |butesÑ*. ..Auf di|
0050 65 20 47 72 75 70 70 65-20 25 20 68 61 62 65 6e |e Gruppe  % haben|
0060 20 53 69 65 20 6b 65 69-6e 65 6e 20 5a 75 67 72 | Sie kei nen Zugr|
0070 69 66 66 21 22 00 00 00-59 6f 75 20 64 6f 20 6e |iff!"... You do n|
0080 6f 74 20 68 61 76 65 20-61 63 63 65 73 73 20 74 |ot have  access t|
0090 6f 20 67 72 6f 75 70 20-25 21 d1 0b 00 00 00 41 |o group  %!Ñ....A|
00a0 75 66 72 75 66 20 4d 65-6e 75 09 00 00 00 43 61 |ufruf Me nu....Ca|
00b0 6c 6c 20 6d 65 6e 75 d1-0f 00 00 00 41 75 66 72 |ll menuÑ ....Aufr|
00c0 75 66 20 61 28 29 20 69-6e 20 25 0d 00 00 00 43 |uf a() i n %....C|
00d0 61 6c 6c 20 61 28 29 20-69 6e 20 25 d1 4b 00 00 |all a()  in %ÑK..|
00e0 00 41 75 66 74 20 64 65-6d 20 53 74 65 6c 6c 70 |.Auft de m Stellp|
00f0 6c 61 74 7a 20 6c 69 65-67 65 6e 20 62 65 72 65 |latz lie gen bere|
0100 69 74 73 20 61 6e 64 65-72 65 20 41 72 74 69 6b |its ande re Artik|
0110 65 6c 2c 20 7a 2e 42 2e-20 25 2e 20 54 72 6f 74 |el, z.B.  %. Trot|
0120 7a 64 65 6d 20 62 75 63-68 65 6e 3f 47 00 00 00 |zdem buc hen?G...|
0130 54 68 65 72 65 20 61 72-65 20 61 6c 72 65 61 64 |There ar e alread|
0140 79 20 6f 74 68 65 72 20-61 72 74 69 63 6c 65 73 |y other  articles|
0150 20 6f 6e 20 74 68 69 73-20 70 6f 73 69 74 69 6f | on this  positio|
0160 6e 2c 20 65 2e 67 2e 20-25 2e 20 50 6f 73 74 20 |n, e.g.  %. Post |
0170 61 6e 79 77 61 79 3f d1-49 00 00 00 41 75 66 74 |anyway?Ñ I...Auft|
0180 20 64 65 6d 20 53 74 65-6c 6c 70 6c 61 74 7a 20 | dem Ste llplatz |
0190 6c 69 65 67 74 20 62 65-72 65 69 74 73 20 65 69 |liegt be reits ei|
01a0 6e 65 20 61 6e 64 65 72-65 20 25 2c 20 7a 2e 42 |ne ander e %, z.B|
01b0 2e 20 25 2e 20 54 72 6f-74 7a 64 65 6d 20 62 75 |. %. Tro tzdem bu|
01c0 63 68 65 6e 3f 41 00 00-00 54 68 65 72 65 20 69 |chen?A.. .There i|
01d0 73 20 61 6c 72 65 61 64-79 20 61 6e 6f 74 68 65 |s alread y anothe|
01e0 72 20 25 20 6f 6e 20 74-68 69 73 20 70 6f 73 69 |r % on t his posi|
01f0 74 69 6f 6e 2c 20 65 2e-67 2e 20 25 2e 20 50 6f |tion, e. g. %. Po|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14d9e30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf97f30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf97f30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf97f30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x131df00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98220, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98280, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 74 20 61 6e 79 77 61 |........ st anywa|
0010 79 3f d1 53 00 00 00 41-75 66 74 20 64 65 6d 20 |y?ÑS...A uft dem |
0020 53 74 65 6c 6c 70 6c 61-74 7a 20 6c 69 65 67 74 |Stellpla tz liegt|
0030 20 62 65 72 65 69 74 73-20 65 69 6e 65 20 61 6e | bereits  eine an|
0040 64 65 72 65 20 46 72 65-6d 64 63 68 61 72 67 65 |dere Fre mdcharge|
0050 2c 20 7a 2e 42 2e 20 25-2e 20 54 72 6f 74 7a 64 |, z.B. % . Trotzd|
0060 65 6d 20 62 75 63 68 65-6e 3f 4e 00 00 00 54 68 |em buche n?N...Th|
0070 65 72 65 20 69 73 20 61-6c 72 65 61 64 79 20 61 |ere is a lready a|
0080 6e 6f 74 68 65 72 20 65-78 74 65 72 6e 61 6c 20 |nother e xternal |
0090 62 61 74 63 68 20 6f 6e-20 74 68 69 73 20 70 6f |batch on  this po|
00a0 73 69 74 69 6f 6e 2c 20-65 2e 67 2e 20 25 2e 20 |sition,  e.g. %. |
00b0 50 6f 73 74 20 61 6e 79-77 61 79 3f d1 31 00 00 |Post any way?Ñ1..|
00c0 00 41 75 66 74 45 72 66-50 6f 73 43 68 65 63 6b |.AuftErf PosCheck|
00d0 4c 42 28 25 29 3a 20 56-20 25 20 4d 69 6e 48 20 |LB(%): V  % MinH |
00e0 25 20 4b 54 54 79 70 20-25 20 44 65 62 69 4e 72 |% KTTyp  % DebiNr|
00f0 20 25 31 00 00 00 41 75-66 74 45 72 66 50 6f 73 | %1...Au ftErfPos|
0100 43 68 65 63 6b 4c 42 28-25 29 3a 20 56 20 25 20 |CheckLB( %): V % |
0110 4d 69 6e 48 20 25 20 4b-54 54 79 70 20 25 20 44 |MinH % K TTyp % D|
0120 65 62 69 4e 72 20 25 d1-08 00 00 00 41 75 66 74 |ebiNr %Ñ ....Auft|
0130 4e 72 20 25 0a 00 00 00-4f 72 64 65 72 20 6e 6f |Nr %.... Order no|
0140 20 25 d1 13 00 00 00 41-75 66 74 4e 72 50 20 25 | %Ñ....A uftNrP %|
0150 2c 20 50 6f 73 4e 72 50-20 25 13 00 00 00 41 75 |, PosNrP  %....Au|
0160 66 74 4e 72 50 20 25 2c-20 50 6f 73 4e 72 50 20 |ftNrP %,  PosNrP |
0170 25 d1 48 00 00 00 41 75-66 74 4e 72 50 20 25 2c |%ÑH...Au ftNrP %,|
0180 20 50 6f 73 4e 72 50 20-25 2c 20 41 72 74 4e 72 | PosNrP  %, ArtNr|
0190 58 58 20 25 2c 20 4c 61-67 65 72 4f 72 74 56 6f |XX %, La gerOrtVo|
01a0 72 73 63 68 6c 61 67 20-25 2c 20 68 61 73 72 69 |rschlag  %, hasri|
01b0 67 68 74 20 25 2c 20 64-6f 61 73 6b 20 25 4e 00 |ght %, d oask %N.|
01c0 00 00 41 72 74 4e 6f 50-20 25 2c 20 49 74 65 6d |..ArtNoP  %, Item|
01d0 4e 6f 50 20 25 2c 20 41-72 74 4e 6f 58 58 20 25 |NoP %, A rtNoXX %|
01e0 2c 20 53 74 6f 72 61 67-65 4c 6f 63 61 74 69 6f |, Storag eLocatio|
01f0 6e 50 72 6f 70 6f 73 61-6c 20 25 2c 20 68 61 73 |nProposa l %, has|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98220, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98280, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 83 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 83
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98220, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (83 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12967d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98220, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12967d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98220, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12967d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0xf98220, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12967d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 69 67 68 74 20 25 2c |........ right %,|
0010 20 64 6f 61 73 6b 20 25-d1 0f 00 00 00 41 75 66 | doask % Ñ....Auf|
0020 74 50 72 65 69 73 61 72-74 3a 20 25 11 00 00 00 |tPreisar t: %....|
0030 4f 72 64 65 72 50 72 69-63 65 54 79 70 65 3a 20 |OrderPri ceType: |
0040 25 d1 1e 00 00 00 41 75-66 74 52 65 63 68 53 65 |%Ñ....Au ftRechSe|
0050 72 69 46 49 53 41 6e 7a-28 46 69 72 6d 65 6e 49 |riFISAnz (FirmenI|
0060 44 20 25 29 20 00 00 00-41 75 66 74 52 65 63 68 |D %) ... AuftRech|
0070 53 65 72 69 46 49 53 41-6e 7a 28 43 6f 6d 70 61 |SeriFISA nz(Compa|
0080 6e 79 20 49 44 20 25 29-d1 0a 00 00 00 41 75 66 |ny ID %) Ñ....Auf|
0090 74 72 61 65 67 65 3a 07-00 00 00 4f 72 64 65 72 |traege:. ...Order|
00a0 73 3a d1 07 00 00 00 41-75 66 74 72 61 67 05 00 |s:Ñ....A uftrag..|
00b0 00 00 4f 72 64 65 72 d1-2e 00 00 00 41 75 66 74 |..OrderÑ ....Auft|
00c0 72 61 67 20 25 20 50 6f-73 69 74 69 6f 6e 20 25 |rag % Po sition %|
00d0 3a 20 54 65 72 6d 69 6e-76 65 72 73 63 68 69 65 |: Termin verschie|
00e0 62 75 6e 67 20 61 75 66-20 25 27 00 00 00 4f 72 |bung auf  %'...Or|
00f0 64 65 72 20 25 20 69 74-65 6d 20 25 3a 20 44 65 |der % it em %: De|
0100 61 64 6c 69 6e 65 20 70-6f 73 74 70 6f 6e 65 6d |adline p ostponem|
0110 65 6e 74 20 25 d1 2b 00-00 00 41 75 66 74 72 61 |ent %Ñ+. ..Auftra|
0120 67 20 6f 64 65 72 20 50-6f 73 69 74 69 6f 6e 20 |g oder P osition |
0130 73 69 6e 64 20 75 6e 6b-6c 61 72 20 28 54 65 72 |sind unk lar (Ter|
0140 6d 69 6e 29 21 25 00 00-00 4f 72 64 65 72 20 6f |min)!%.. .Order o|
0150 72 20 69 74 65 6d 20 61-72 65 20 75 6e 63 6c 65 |r item a re uncle|
0160 61 72 20 28 73 63 68 65-64 75 6c 65 29 21 d1 11 |ar (sche dule)!Ñ.|
0170 00 00 00 41 75 66 74 72-61 67 20 76 65 72 77 61 |...Auftr ag verwa|
0180 6c 74 65 6e 14 00 00 00-4f 72 64 65 72 20 61 64 |lten.... Order ad|
0190 6d 69 6e 69 73 74 72 61-74 69 6f 6e d1 3e 00 00 |ministra tionÑ>..|
01a0 00 41 75 66 74 72 61 67-2f 50 6f 73 69 74 69 6f |.Auftrag /Positio|
01b0 6e 20 6b c3 b6 6e 6e 65-6e 20 66 c3 bc 72 20 3e |n könne n für >|
01c0 25 3c 2f 3e 25 3c 20 6e-69 63 68 74 20 65 72 6d |%</>%< n icht erm|
01d0 69 74 74 65 6c 74 20 77-65 72 64 65 6e 20 21 2c |ittelt w erden !,|
01e0 00 00 00 4f 72 64 65 72-2f 69 74 65 6d 20 63 61 |...Order /item ca|
01f0 6e 6e 6f 74 20 62 65 20-64 65 74 65 72 6d 69 6e |nnot be  determin|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296bf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296bf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296bf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296bf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296bf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1296c40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 64 20 66 6f 72 20 3e |........ ed for >|
0010 25 3c 2f 3e 25 3c 21 d1-1e 00 00 00 41 75 66 74 |%</>%<!Ñ ....Auft|
0020 72 61 67 73 2d 47 72 75-6e 64 64 61 74 65 6e 20 |rags-Gru nddaten |
0030 62 65 61 72 62 65 69 74-65 6e 1e 00 00 00 4d 6f |bearbeit en....Mo|
0040 64 69 66 79 20 62 61 73-69 63 20 64 61 74 65 20 |dify bas ic date |
0050 6f 66 20 74 68 65 20 6f-72 64 65 72 d1 1e 00 00 |of the o rderÑ...|
0060 00 41 75 66 74 72 61 67-73 2d 50 6f 73 69 74 69 |.Auftrag s-Positi|
0070 6f 6e 65 6e 20 62 65 61-72 62 65 69 74 65 6e 10 |onen bea rbeiten.|
0080 00 00 00 45 64 69 74 20-6f 72 64 65 72 20 69 74 |...Edit  order it|
0090 65 6d 73 d1 1b 00 00 00-41 75 66 74 72 61 67 73 |emsÑ.... Auftrags|
00a0 2d 54 65 72 6d 69 6e 65-20 62 65 61 72 62 65 69 |-Termine  bearbei|
00b0 74 65 6e 14 00 00 00 45-64 69 74 20 6f 72 64 65 |ten....E dit orde|
00c0 72 20 64 65 61 64 6c 69-6e 65 73 d1 0e 00 00 00 |r deadli nesÑ....|
00d0 41 75 66 74 72 61 67 73-7a 65 69 74 65 6e 0e 00 |Auftrags zeiten..|
00e0 00 00 4f 72 64 65 72 20-64 65 61 64 6c 69 6e 65 |..Order  deadline|
00f0 d1 0d 00 00 00 41 75 73-62 75 63 68 75 6e 67 20 |Ñ....Aus buchung |
0100 4f 4b 0c 00 00 00 43 68-65 63 6b 2d 6f 75 74 20 |OK....Ch eck-out |
0110 4f 4b d1 4a 00 00 00 41-75 73 64 72 75 63 6b 20 |OKÑJ...A usdruck |
0120 45 74 69 6b 65 74 74 20-61 62 67 65 62 72 6f 63 |Etikett  abgebroc|
0130 68 65 6e 20 28 53 63 68-72 69 74 74 20 25 3a 20 |hen (Sch ritt %: |
0140 75 6e 74 65 72 6d 69 6e-69 65 72 74 65 20 45 74 |untermin ierte Et|
0150 69 6b 65 74 74 65 54 79-70 2d 41 6e 67 61 62 65 |iketteTy p-Angabe|
0160 29 40 00 00 00 4c 61 62-65 6c 20 70 72 69 6e 74 |)@...Lab el print|
0170 69 6e 67 20 61 62 6f 72-74 65 64 20 28 73 74 65 |ing abor ted (ste|
0180 70 20 25 3a 20 75 6e 70-6c 61 6e 6e 65 64 20 6c |p %: unp lanned l|
0190 61 62 65 6c 20 74 79 70-65 20 69 6e 64 69 63 61 |abel typ e indica|
01a0 74 69 6f 6e 29 d1 19 00-00 00 41 75 73 67 61 6e |tion)Ñ.. ..Ausgan|
01b0 67 20 6c 61 75 74 20 52-65 73 65 72 76 69 65 72 |g laut R eservier|
01c0 75 6e 67 1f 00 00 00 4f-75 74 70 75 74 20 61 63 |ung....O utput ac|
01d0 63 6f 72 64 69 6e 67 20-74 6f 20 72 65 73 65 72 |cording  to reser|
01e0 76 61 74 69 6f 6e d1 25-00 00 00 41 75 73 74 72 |vationÑ% ...Austr|
01f0 69 74 74 20 76 6f 6e 20-50 65 72 73 6f 6e 20 25 |itt von  Person %|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e41c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 74 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 74
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (74 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 28 25 29 20 62 65 61 |........  (%) bea|
0010 72 62 65 69 74 65 6e 3f-20 00 00 00 45 64 69 74 |rbeiten?  ...Edit|
0020 20 77 69 74 68 64 72 61-77 61 6c 20 6f 66 20 70 | withdra wal of p|
0030 65 72 73 6f 6e 20 25 20-28 25 29 3f d1 13 00 00 |erson %  (%)?Ñ...|
0040 00 41 75 73 77 61 68 6c-20 c3 bc 62 65 72 6e 65 |.Auswahl  überne|
0050 68 6d 65 6e 0e 00 00 00-43 6f 70 79 20 73 65 6c |hmen.... Copy sel|
0060 65 63 74 69 6f 6e d1 24-00 00 00 41 75 73 77 65 |ectionÑ$ ...Auswe|
0070 72 74 75 6e 67 20 27 25-27 20 77 75 72 64 65 20 |rtung '% ' wurde |
0080 61 6e 20 27 25 27 20 67-65 6d 61 69 6c 74 21 23 |an '%' g emailt!#|
0090 00 00 00 54 68 65 20 65-76 61 6c 75 61 74 69 6f |...The e valuatio|
00a0 6e 20 27 25 27 20 77 61-73 20 73 65 6e 74 20 74 |n '%' wa s sent t|
00b0 6f 20 27 25 27 21 d1 03-00 00 00 42 44 45 03 00 |o '%'!Ñ. ...BDE..|
00c0 00 00 52 4f 47 d1 0c 00-00 00 42 61 6c 61 6e 63 |..ROGÑ.. ..Balanc|
00d0 65 20 2b 20 49 53 0c 00-00 00 42 61 6c 61 6e 63 |e + IS.. ..Balanc|
00e0 65 20 2b 20 49 53 d1 25-00 00 00 42 61 6e 6b 63 |e + ISÑ% ...Bankc|
00f0 6c 65 61 72 69 6e 67 76-65 72 7a 65 69 63 68 6e |learingv erzeichn|
0100 69 73 20 28 43 48 29 20-65 69 6e 6c 65 73 65 6e |is (CH)  einlesen|
0110 23 00 00 00 49 6d 70 6f-72 74 20 62 61 6e 6b 20 |#...Impo rt bank |
0120 63 6c 65 61 72 69 6e 67-20 64 69 72 65 63 74 6f |clearing  directo|
0130 72 79 20 28 43 48 29 d1-16 00 00 00 42 61 72 43 |ry (CH)Ñ ....BarC|
0140 6f 64 65 47 65 6e 65 72-69 65 72 65 6e 20 2d 3e |odeGener ieren ->|
0150 20 25 14 00 00 00 47 65-6e 65 72 61 74 65 42 61 | %....Ge nerateBa|
0160 72 43 6f 64 65 20 2d 3e-20 25 d1 1f 00 00 00 42 |rCode ->  %Ñ....B|
0170 61 72 43 6f 64 65 47 65-6e 65 72 69 65 72 65 6e |arCodeGe nerieren|
0180 3a 20 41 72 74 4e 72 20-66 65 68 6c 74 21 1f 00 |: ArtNr  fehlt!..|
0190 00 00 47 65 6e 65 72 61-74 65 42 61 72 43 6f 64 |..Genera teBarCod|
01a0 65 3a 20 41 72 74 4e 6f-20 6d 69 73 73 69 6e 67 |e: ArtNo  missing|
01b0 21 d1 44 00 00 00 42 61-72 43 6f 64 65 47 65 6e |!ÑD...Ba rCodeGen|
01c0 65 72 69 65 72 65 6e 3a-20 64 65 72 20 45 41 4e |erieren:  der EAN|
01d0 31 33 20 66 c3 bc 72 20-25 20 28 25 29 20 6b 61 |13 für  % (%) ka|
01e0 6e 6e 20 6e 69 63 68 74-20 65 72 6d 69 74 74 65 |nn nicht  ermitte|
01f0 6c 74 20 77 65 72 64 65-6e 21 29 00 00 00 47 65 |lt werde n!)...Ge|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13cda90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12e45d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 65 72 61 74 65 42 61 |........ nerateBa|
0010 72 43 6f 64 65 3a 20 45-41 4e 20 66 6f 72 20 25 |rCode: E AN for %|
0020 20 28 25 29 20 6e 6f 74-20 66 6f 75 6e 64 21 d1 | (%) not  found!Ñ|
0030 1b 00 00 00 42 61 72 43-6f 64 65 4c 65 73 65 6e |....BarC odeLesen|
0040 3a 20 53 75 63 68 65 20-25 20 61 6c 73 20 25 1e |: Suche  % als %.|
0050 00 00 00 52 65 61 64 42-61 72 43 6f 64 65 3a 20 |...ReadB arCode: |
0060 53 65 61 72 63 68 20 66-6f 72 20 25 20 61 73 20 |Search f or % as |
0070 25 d1 25 00 00 00 42 61-72 43 6f 64 65 4c 65 73 |%Ñ%...Ba rCodeLes|
0080 65 6e 54 3a 20 53 75 63-68 65 20 25 20 69 6e 20 |enT: Suc he % in |
0090 43 6f 64 65 4d 65 6e 67-65 20 25 25 00 00 00 42 |CodeMeng e %%...B|
00a0 61 72 43 6f 64 65 4c 65-73 65 6e 54 3a 20 53 65 |arCodeLe senT: Se|
00b0 61 72 63 68 20 25 20 69-6e 20 63 6f 64 65 20 6c |arch % i n code l|
00c0 6f 74 20 25 d1 10 00 00-00 42 65 64 61 72 66 20 |ot %Ñ... .Bedarf |
00d0 66 c3 bc 72 20 50 6f 73-2e 14 00 00 00 52 65 71 |für Pos .....Req|
00e0 75 69 72 65 6d 65 6e 74-20 66 6f 72 20 69 74 65 |uirement  for ite|
00f0 6d d1 16 00 00 00 42 65-67 69 6e 6e 69 6e 67 20 |mÑ....Be ginning |
0100 6f 66 20 6f 70 65 72 61-74 69 6f 6e 16 00 00 00 |of opera tion....|
0110 42 65 67 69 6e 6e 69 6e-67 20 6f 66 20 6f 70 65 |Beginnin g of ope|
0120 72 61 74 69 6f 6e d1 3a-00 00 00 42 65 69 20 50 |rationÑ: ...Bei P|
0130 65 72 73 4e 72 20 25 20-28 25 20 25 29 20 41 5a |ersNr %  (% %) AZ|
0140 52 20 25 3a 20 51 53 54-52 65 6b 61 70 53 74 61 |R %: QST RekapSta|
0150 74 20 66 65 68 6c 74 20-66 c3 bc 72 20 4b 61 6e |t fehlt  für Kan|
0160 74 6f 6e 20 25 3c 00 00-00 46 6f 72 20 70 65 72 |ton %<.. .For per|
0170 73 20 6e 6f 20 25 20 28-25 20 25 29 20 41 5a 52 |s no % ( % %) AZR|
0180 20 25 3a 20 51 53 54 52-65 6b 61 70 53 74 61 74 | %: QSTR ekapStat|
0190 20 6d 69 73 73 69 6e 67-20 66 6f 72 20 63 61 6e | missing  for can|
01a0 74 6f 6e 20 25 d1 56 00-00 00 42 65 69 20 50 65 |ton %ÑV. ..Bei Pe|
01b0 72 73 4e 72 20 25 20 28-25 20 25 29 20 41 5a 52 |rsNr % ( % %) AZR|
01c0 20 25 3a 20 66 65 68 6c-65 6e 64 65 20 41 75 66 | %: fehl ende Auf|
01d0 65 6e 74 68 61 6c 74 73-2d 41 64 72 65 73 73 65 |enthalts -Adresse|
01e0 20 28 47 72 65 6e 7a 67-c3 a4 6e 67 65 72 3a 20 | (Grenzg änger: |
01f0 50 41 20 41 55 46 45 4e-54 48 41 2d 41 44 52 29 |PA AUFEN THA-ADR)|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a8680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a86d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a8680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a86d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a8680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a86d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a8680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a86d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a8680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a86d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13169b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316a00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 00 00 00 46 6f 72 20 |........ a...For |
0010 70 65 72 73 20 6e 6f 20-25 20 28 25 20 25 29 20 |pers no  % (% %) |
0020 41 5a 52 20 25 3a 20 41-64 64 72 65 73 73 20 6f |AZR %: A ddress o|
0030 66 20 72 65 73 69 64 65-6e 63 65 20 6d 69 73 73 |f reside nce miss|
0040 69 6e 67 20 28 63 72 6f-73 73 2d 62 6f 72 64 65 |ing (cro ss-borde|
0050 72 20 63 6f 6d 6d 75 74-65 72 73 3a 20 50 41 20 |r commut ers: PA |
0060 41 55 46 45 4e 54 48 41-2d 41 44 52 29 d1 52 00 |AUFENTHA -ADR)ÑR.|
0070 00 00 42 65 69 20 50 65-72 73 4e 72 20 25 20 28 |..Bei Pe rsNr % (|
0080 25 20 25 29 20 41 5a 52-20 25 3a 20 66 65 68 6c |% %) AZR  %: fehl|
0090 65 6e 64 65 20 41 75 66-65 6e 74 68 61 6c 74 73 |ende Auf enthalts|
00a0 2d 41 72 74 20 28 47 72-65 6e 7a 67 c3 a4 6e 67 |-Art (Gr enzgäng|
00b0 65 72 3a 20 50 41 20 41-55 46 45 4e 54 48 41 2d |er: PA A UFENTHA-|
00c0 41 52 54 29 5d 00 00 00-46 6f 72 20 70 65 72 73 |ART)]... For pers|
00d0 20 6e 6f 20 25 20 28 25-20 25 29 20 41 5a 52 20 | no % (%  %) AZR |
00e0 25 3a 20 46 65 68 6c 65-6e 64 65 20 41 75 66 65 |%: Fehle nde Aufe|
00f0 6e 74 68 61 6c 74 73 2d-41 72 74 20 28 63 72 6f |nthalts- Art (cro|
0100 73 73 2d 62 6f 72 64 65-72 20 63 6f 6d 6d 75 74 |ss-borde r commut|
0110 65 72 73 3a 20 50 41 20-41 55 46 45 4e 54 48 41 |ers: PA  AUFENTHA|
0120 2d 41 52 54 29 d1 49 00-00 00 42 65 69 20 50 65 |-ART)ÑI. ..Bei Pe|
0130 72 73 4e 72 20 25 20 28-25 20 25 29 20 41 5a 52 |rsNr % ( % %) AZR|
0140 20 25 3a 20 6b 61 6e 6e-20 64 65 72 20 41 72 62 | %: kann  der Arb|
0150 65 69 74 73 70 6c 61 74-7a 20 6e 69 63 68 74 20 |eitsplat z nicht |
0160 65 72 6d 69 74 74 65 6c-74 20 77 65 72 64 65 6e |ermittel t werden|
0170 2e 20 25 3c 00 00 00 46-6f 72 20 70 65 72 73 20 |. %<...F or pers |
0180 6e 6f 20 25 20 28 25 20-25 29 20 41 5a 52 20 25 |no % (%  %) AZR %|
0190 3a 20 43 61 6e 6e 6f 74-20 64 65 74 65 72 6d 69 |: Cannot  determi|
01a0 6e 65 20 77 6f 72 6b 69-6e 67 20 70 6c 61 63 65 |ne worki ng place|
01b0 2e 20 25 d1 58 00 00 00-42 65 69 20 50 65 72 73 |. %ÑX... Bei Pers|
01c0 4e 72 20 25 20 28 25 20-25 29 20 41 5a 52 20 25 |Nr % (%  %) AZR %|
01d0 3a 20 75 6e 67 c3 bc 6c-74 69 67 65 20 41 75 66 |: ungül tige Auf|
01e0 65 6e 74 68 61 6c 74 73-2d 41 72 74 20 3c 25 3e |enthalts -Art <%>|
01f0 20 28 47 72 65 6e 7a 67-c3 a4 6e 67 65 72 3a 20 | (Grenzg änger: |

token.c:2111:tds_get_data(): wire column size is 97 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 97
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (97 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 93 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 93
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (93 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 88 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-50 41 20 41 55 46 45 4e |........ PA AUFEN|
0010 54 48 41 2d 41 52 54 29-5c 00 00 00 46 6f 72 20 |THA-ART) \...For |
0020 70 65 72 73 20 6e 6f 20-25 20 28 25 20 25 29 20 |pers no  % (% %) |
0030 41 5a 52 20 25 3a 20 49-6e 76 61 6c 69 64 20 63 |AZR %: I nvalid c|
0040 61 74 65 67 6f 72 79 20-6f 66 20 72 65 73 69 64 |ategory  of resid|
0050 65 6e 63 65 20 3c 25 3e-20 28 47 72 65 6e 7a 67 |ence <%>  (Grenzg|
0060 c3 a4 6e 67 65 72 3a 20-50 41 20 41 55 46 45 4e |änger:  PA AUFEN|
0070 54 48 41 2d 41 52 54 29-d1 3c 00 00 00 42 65 69 |THA-ART) Ñ<...Bei|
0080 20 50 65 72 73 4e 72 20-25 20 28 25 20 25 29 20 | PersNr  % (% %) |
0090 4c 4c 5a 20 25 20 41 5a-52 20 25 3a 20 66 65 68 |LLZ % AZ R %: feh|
00a0 6c 65 6e 64 65 72 20 57-65 72 74 20 66 c3 bc 72 |lender W ert für|
00b0 20 43 6f 6e 74 72 61 63-74 3a 00 00 00 46 6f 72 | Contrac t:...For|
00c0 20 70 65 72 73 20 6e 6f-20 25 20 28 25 20 25 29 | pers no  % (% %)|
00d0 20 4c 4c 5a 20 25 20 41-5a 52 20 25 3a 20 4d 69 | LLZ % A ZR %: Mi|
00e0 73 73 69 6e 67 20 76 61-6c 75 65 20 69 6e 20 43 |ssing va lue in C|
00f0 6f 6e 74 72 61 63 74 d1-3d 00 00 00 42 65 69 20 |ontractÑ =...Bei |
0100 50 65 72 73 4e 72 20 25-20 28 25 20 25 29 20 4c |PersNr %  (% %) L|
0110 4c 5a 20 25 20 41 5a 52-20 25 3a 20 66 65 68 6c |LZ % AZR  %: fehl|
0120 65 6e 64 65 72 20 57 65-72 74 20 66 c3 bc 72 20 |ender We rt für |
0130 45 64 75 63 61 74 69 6f-6e 3b 00 00 00 46 6f 72 |Educatio n;...For|
0140 20 70 65 72 73 20 6e 6f-20 25 20 28 25 20 25 29 | pers no  % (% %)|
0150 20 4c 4c 5a 20 25 20 41-5a 52 20 25 3a 20 4d 69 | LLZ % A ZR %: Mi|
0160 73 73 69 6e 67 20 76 61-6c 75 65 20 69 6e 20 45 |ssing va lue in E|
0170 64 75 63 61 74 69 6f 6e-d1 3c 00 00 00 42 65 69 |ducation Ñ<...Bei|
0180 20 50 65 72 73 4e 72 20-25 20 28 25 20 25 29 20 | PersNr  % (% %) |
0190 4c 4c 5a 20 25 20 41 5a-52 20 25 3a 20 66 65 68 |LLZ % AZ R %: feh|
01a0 6c 65 6e 64 65 72 20 57-65 72 74 20 66 c3 bc 72 |lender W ert für|
01b0 20 4a 6f 62 54 69 74 6c-65 3a 00 00 00 46 6f 72 | JobTitl e:...For|
01c0 20 70 65 72 73 20 6e 6f-20 25 20 28 25 20 25 29 | pers no  % (% %)|
01d0 20 4c 4c 5a 20 25 20 41-5a 52 20 25 3a 20 4d 69 | LLZ % A ZR %: Mi|
01e0 73 73 69 6e 67 20 76 61-6c 75 65 20 69 6e 20 4a |ssing va lue in J|
01f0 6f 62 54 69 74 6c 65 d1-3c 00 00 00 42 65 69 20 |obTitleÑ <...Bei |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 92 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 88
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (88 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 92
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (92 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-50 65 72 73 4e 72 20 25 |........ PersNr %|
0010 20 28 25 20 25 29 20 4c-4c 5a 20 25 20 41 5a 52 | (% %) L LZ % AZR|
0020 20 25 3a 20 66 65 68 6c-65 6e 64 65 72 20 57 65 | %: fehl ender We|
0030 72 74 20 66 c3 bc 72 20-50 6f 73 69 74 69 6f 6e |rt für  Position|
0040 3b 00 00 00 46 6f 72 20-70 65 72 73 20 6e 6f 20 |;...For  pers no |
0050 25 20 28 25 20 25 29 20-4c 4c 5a 20 25 20 41 5a |% (% %)  LLZ % AZ|
0060 52 20 25 3a 20 4d 69 73-73 69 6e 67 20 76 61 6c |R %: Mis sing val|
0070 75 65 20 66 6f 72 20 70-6f 73 69 74 69 6f 6e d1 |ue for p ositionÑ|
0080 42 00 00 00 42 65 69 20-50 65 72 73 4e 72 20 25 |B...Bei  PersNr %|
0090 20 28 25 20 25 29 20 4c-4c 5a 20 25 20 41 5a 52 | (% %) L LZ % AZR|
00a0 20 25 3a 20 75 6e 67 c3-bc 6c 74 69 67 65 72 20 | %: ungà ¼ltiger |
00b0 57 65 72 74 20 66 c3 bc-72 20 45 64 75 63 61 74 |Wert fü r Educat|
00c0 69 6f 6e 3a 20 25 3f 00-00 00 46 6f 72 20 70 65 |ion: %?. ..For pe|
00d0 72 73 20 6e 6f 20 25 20-28 25 20 25 29 20 4c 4c |rs no %  (% %) LL|
00e0 5a 20 25 20 41 5a 52 20-25 3a 20 49 6e 76 61 6c |Z % AZR  %: Inval|
00f0 69 64 20 76 61 6c 75 65-20 66 6f 72 20 45 64 75 |id value  for Edu|
0100 63 61 74 69 6f 6e 3a 20-25 d1 55 00 00 00 42 65 |cation:  %ÑU...Be|
0110 69 20 50 65 72 73 4e 72-20 25 20 28 25 20 25 29 |i PersNr  % (% %)|
0120 20 4c 4c 5a 20 25 20 41-5a 52 20 25 3a 20 75 6e | LLZ % A ZR %: un|
0130 67 c3 bc 6c 74 69 67 65-72 20 57 65 72 74 20 66 |gültige r Wert f|
0140 c3 bc 72 20 54 6f 74 61-6c 48 6f 75 72 73 4f 66 |ür Tota lHoursOf|
0150 57 6f 72 6b 3a 20 25 20-28 69 67 6e 6f 72 69 65 |Work: %  (ignorie|
0160 72 74 29 52 00 00 00 46-6f 72 20 70 65 72 73 20 |rt)R...F or pers |
0170 6e 6f 20 25 20 28 25 20-25 29 20 4c 4c 5a 20 25 |no % (%  %) LLZ %|
0180 20 41 5a 52 20 25 3a 20-49 6e 76 61 6c 69 64 20 | AZR %:  Invalid |
0190 76 61 6c 75 65 20 66 6f-72 20 54 6f 74 61 6c 48 |value fo r TotalH|
01a0 6f 75 72 73 4f 66 57 6f-72 6b 3a 20 25 20 28 69 |oursOfWo rk: % (i|
01b0 67 6e 6f 72 69 65 72 74-29 d1 57 00 00 00 42 65 |gnoriert )ÑW...Be|
01c0 69 20 50 65 72 73 4e 72-20 25 20 28 25 20 25 29 |i PersNr  % (% %)|
01d0 20 4c 4c 5a 20 25 20 41-5a 52 20 25 3a 20 75 6e | LLZ % A ZR %: un|
01e0 67 c3 bc 6c 74 69 67 65-72 20 57 65 72 74 20 66 |gültige r Wert f|
01f0 c3 bc 72 20 54 6f 74 61-6c 4c 65 73 73 6f 6e 73 |ür Tota lLessons|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 85 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 85
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (85 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-4f 66 57 6f 72 6b 3a 20 |........ OfWork: |
0010 25 20 28 69 67 6e 6f 72-69 65 72 74 29 54 00 00 |% (ignor iert)T..|
0020 00 46 6f 72 20 70 65 72-73 20 6e 6f 20 25 20 28 |.For per s no % (|
0030 25 20 25 29 20 4c 4c 5a-20 25 20 41 5a 52 20 25 |% %) LLZ  % AZR %|
0040 3a 20 49 6e 76 61 6c 69-64 20 76 61 6c 75 65 20 |: Invali d value |
0050 66 6f 72 20 54 6f 74 61-6c 4c 65 73 73 6f 6e 73 |for Tota lLessons|
0060 4f 66 57 6f 72 6b 3a 20-25 20 28 69 67 6e 6f 72 |OfWork:  % (ignor|
0070 69 65 72 74 29 d1 39 00-00 00 42 65 69 20 50 65 |iert)Ñ9. ..Bei Pe|
0080 72 73 4e 72 20 25 20 28-25 20 25 29 20 66 65 68 |rsNr % ( % %) feh|
0090 6c 74 20 64 69 65 20 53-74 61 74 69 73 74 69 6b |lt die S tatistik|
00a0 2d 5a 65 69 6c 65 20 3c-25 3e 20 70 65 72 20 3c |-Zeile < %> per <|
00b0 25 3e 21 3c 00 00 00 46-6f 72 20 70 65 72 73 2e |%>!<...F or pers.|
00c0 20 6e 6f 2e 20 25 20 28-25 20 25 29 20 73 74 61 | no. % ( % %) sta|
00d0 74 69 73 74 69 63 73 20-6c 69 6e 65 20 3c 25 3e |tistics  line <%>|
00e0 20 6d 69 73 73 69 6e 67-20 61 73 20 6f 66 20 3c | missing  as of <|
00f0 25 3e 21 d1 3d 00 00 00-42 65 69 20 50 65 72 73 |%>!Ñ=... Bei Pers|
0100 4e 72 20 25 20 28 25 20-25 29 20 69 73 74 20 64 |Nr % (%  %) ist d|
0110 65 72 20 47 65 73 63 68-c3 a4 66 74 73 77 61 67 |er Gesch äftswag|
0120 65 6e 2d 45 69 6e 74 72-61 67 20 75 6e 67 c3 bc |en-Eintr ag ungü|
0130 6c 74 69 67 21 34 00 00-00 46 6f 72 20 70 65 72 |ltig!4.. .For per|
0140 73 2e 20 6e 6f 2e 20 25-20 28 25 20 25 29 20 69 |s. no. %  (% %) i|
0150 6e 76 61 6c 69 64 20 65-6e 74 72 79 20 66 6f 72 |nvalid e ntry for|
0160 20 63 6f 6d 70 61 6e 79-20 63 61 72 21 d1 3d 00 | company  car!Ñ=.|
0170 00 00 42 65 69 20 50 65-72 73 4e 72 20 25 20 28 |..Bei Pe rsNr % (|
0180 25 20 25 29 20 69 73 74-20 64 65 72 20 53 70 65 |% %) ist  der Spe|
0190 73 65 6e 72 65 67 6c 65-6d 65 6e 74 2d 45 69 6e |senregle ment-Ein|
01a0 74 72 61 67 20 75 6e 67-c3 bc 6c 74 69 67 21 3c |trag ung ültig!<|
01b0 00 00 00 46 6f 72 20 70-65 72 73 2e 20 6e 6f 2e |...For p ers. no.|
01c0 20 25 20 28 25 20 25 29-20 69 6e 76 61 6c 69 64 | % (% %)  invalid|
01d0 20 65 6e 74 72 79 20 66-6f 72 20 65 78 70 65 6e | entry f or expen|
01e0 73 65 73 20 72 65 67 75-6c 61 74 69 6f 6e 21 d1 |ses regu lation!Ñ|
01f0 3a 00 00 00 42 65 69 20-50 65 72 73 4e 72 20 25 |:...Bei  PersNr %|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 28 25 20 25 29 20 69 |........  (% %) i|
0010 73 74 20 64 65 72 20 55-6d 7a 75 67 73 6b 6f 73 |st der U mzugskos|
0020 74 65 6e 2d 45 69 6e 74-72 61 67 20 75 6e 67 c3 |ten-Eint rag ungÃ|
0030 bc 6c 74 69 67 21 39 00-00 00 46 6f 72 20 70 65 |¼ltig!9. ..For pe|
0040 72 73 2e 20 6e 6f 2e 20-25 20 28 25 20 25 29 20 |rs. no.  % (% %) |
0050 69 6e 76 61 6c 69 64 20-65 6e 74 72 79 20 66 6f |invalid  entry fo|
0060 72 20 72 65 6d 6f 76 61-6c 20 65 78 70 65 6e 73 |r remova l expens|
0070 65 73 21 d1 3a 00 00 00-42 65 69 20 50 65 72 73 |es!Ñ:... Bei Pers|
0080 4e 72 20 25 20 28 25 20-25 29 20 69 73 74 20 64 |Nr % (%  %) ist d|
0090 65 72 20 56 65 72 6b 65-68 72 73 77 65 72 74 2d |er Verke hrswert-|
00a0 45 69 6e 74 72 61 67 20-75 6e 67 c3 bc 6c 74 69 |Eintrag  ungülti|
00b0 67 21 35 00 00 00 46 6f-72 20 70 65 72 73 2e 20 |g!5...Fo r pers. |
00c0 6e 6f 2e 20 25 20 28 25-20 25 29 20 69 6e 76 61 |no. % (%  %) inva|
00d0 6c 69 64 20 65 6e 74 72-79 20 66 6f 72 20 6d 61 |lid entr y for ma|
00e0 72 6b 65 74 20 76 61 6c-75 65 21 d1 4b 00 00 00 |rket val ue!ÑK...|
00f0 42 65 69 20 50 65 72 73-4e 72 20 25 20 28 25 20 |Bei Pers Nr % (% |
0100 25 29 20 69 73 74 20 65-69 6e 65 20 75 6e 67 c3 |%) ist e ine ungÃ|
0110 bc 6c 74 69 67 65 20 41-75 66 65 6e 74 68 61 6c |¼ltige A ufenthal|
0120 74 73 6b 61 74 65 67 6f-72 69 65 20 65 69 6e 67 |tskatego rie eing|
0130 65 74 72 61 67 65 6e 3a-20 25 21 43 00 00 00 46 |etragen:  %!C...F|
0140 6f 72 20 70 65 72 73 2e-20 6e 6f 2e 20 25 20 28 |or pers.  no. % (|
0150 25 20 25 29 20 69 6e 76-61 6c 69 64 20 63 61 74 |% %) inv alid cat|
0160 65 67 6f 72 79 20 6f 66-20 72 65 73 69 64 65 6e |egory of  residen|
0170 63 65 20 72 65 67 69 73-74 65 72 65 64 20 3a 20 |ce regis tered : |
0180 25 21 d1 3d 00 00 00 42-65 69 20 50 65 72 73 4e |%!Ñ=...B ei PersN|
0190 72 20 25 20 28 25 20 25-29 20 69 73 74 20 6e 6f |r % (% % ) ist no|
01a0 63 68 20 65 69 6e 65 20-61 6c 74 65 20 41 48 56 |ch eine  alte AHV|
01b0 2d 4e 75 6d 6d 65 72 20-65 69 6e 67 65 74 72 61 |-Nummer  eingetra|
01c0 67 65 6e 21 3b 00 00 00-46 6f 72 20 70 65 72 73 |gen!;... For pers|
01d0 2e 20 6e 6f 20 25 20 28-25 20 25 29 20 61 6e 20 |. no % ( % %) an |
01e0 6f 6c 64 20 41 48 56 20-6e 75 6d 62 65 72 20 69 |old AHV  number i|
01f0 73 20 73 74 69 6c 6c 20-72 65 67 69 73 74 65 72 |s still  register|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 64 21 d1 2b 00 00 00 |........ ed!Ñ+...|
0010 42 65 69 20 50 65 72 73-4e 72 20 25 20 28 25 20 |Bei Pers Nr % (% |
0020 25 29 20 75 6e 67 c3 bc-6c 74 69 67 65 72 20 51 |%) ungü ltiger Q|
0030 53 54 2d 43 6f 64 65 20-3c 25 3e 2b 00 00 00 42 |ST-Code  <%>+...B|
0040 65 69 20 50 65 72 73 4e-72 20 25 20 28 25 20 25 |ei PersN r % (% %|
0050 29 20 75 6e 67 c3 bc 6c-74 69 67 65 72 20 51 53 |) ungül tiger QS|
0060 54 2d 43 6f 64 65 20 3c-25 3e d1 17 00 00 00 42 |T-Code < %>Ñ....B|
0070 65 6c 65 67 2d 45 74 69-6b 65 74 74 65 20 64 72 |eleg-Eti kette dr|
0080 75 63 6b 65 6e 3f 15 00-00 00 50 72 69 6e 74 20 |ucken?.. ..Print |
0090 72 65 63 65 69 70 74 20-6c 61 62 65 6c 73 3f d1 |receipt  labels?Ñ|
00a0 0a 00 00 00 42 65 73 74-65 6c 6c 75 6e 67 08 00 |....Best ellung..|
00b0 00 00 50 75 72 63 68 61-73 65 d1 13 00 00 00 42 |..Purcha seÑ....B|
00c0 65 73 74 65 6c 6c 75 6e-67 20 61 6e 7a 65 69 67 |estellun g anzeig|
00d0 65 6e 0d 00 00 00 53 68-6f 77 20 70 75 72 63 68 |en....Sh ow purch|
00e0 61 73 65 d1 16 00 00 00-42 65 74 72 69 65 62 73 |aseÑ.... Betriebs|
00f0 64 61 74 65 6e 65 72 66-61 73 73 75 6e 67 10 00 |datenerf assung..|
0100 00 00 4f 70 65 72 61 74-69 6f 6e 61 6c 20 64 61 |..Operat ional da|
0110 74 61 d1 5c 00 00 00 42-65 74 72 69 65 62 73 6e |taÑ\...B etriebsn|
0120 75 6d 6d 65 72 6e 20 66-c3 bc 72 20 64 61 73 20 |ummern f ür das |
0130 48 61 75 73 68 61 6c 74-73 63 68 65 63 6b 76 65 |Haushalt scheckve|
0140 72 66 61 68 72 65 6e 20-64 61 72 66 20 61 6e 20 |rfahren  darf an |
0150 64 69 65 73 65 72 20 53-74 65 6c 6c 65 20 6e 69 |dieser S telle ni|
0160 63 68 74 20 76 65 72 77-61 6e 64 20 77 65 72 64 |cht verw and werd|
0170 65 6e 21 43 00 00 00 43-6f 6d 70 61 6e 79 20 6e |en!C...C ompany n|
0180 75 6d 62 65 72 73 20 66-6f 72 20 74 68 65 20 62 |umbers f or the b|
0190 75 64 67 65 74 20 63 68-65 63 6b 20 70 72 6f 63 |udget ch eck proc|
01a0 65 64 75 72 65 20 63 61-6e 6e 6f 74 20 62 65 20 |edure ca nnot be |
01b0 75 73 65 64 20 68 65 72-65 21 d1 22 00 00 00 42 |used her e!Ñ"...B|
01c0 65 75 74 65 6c 49 44 20-25 20 77 75 72 64 65 20 |eutelID  % wurde |
01d0 62 65 72 65 69 74 73 20-65 72 66 61 73 73 74 20 |bereits  erfasst |
01e0 21 20 00 00 00 53 61 74-63 68 65 6c 20 49 44 20 |! ...Sat chel ID |
01f0 25 20 61 6c 72 65 61 64-79 20 72 65 67 69 73 74 |% alread y regist|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1316bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128a790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 92 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 92
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (92 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 72 65 64 21 d1 0b 00 |........ ered!Ñ..|
0010 00 00 42 65 7a 65 69 63-68 6e 75 6e 67 0b 00 00 |..Bezeic hnung...|
0020 00 44 65 73 69 67 6e 61-74 69 6f 6e d1 0b 00 00 |.Designa tionÑ...|
0030 00 42 69 6c 61 6e 7a 20-2b 20 45 52 0c 00 00 00 |.Bilanz  + ER....|
0040 42 61 6c 61 6e 63 65 20-2b 20 49 53 d1 2d 00 00 |Balance  + ISÑ-..|
0050 00 42 69 6c 64 73 63 68-69 72 6d 2d 53 63 68 6e |.Bildsch irm-Schn|
0060 61 70 70 73 63 68 75 73-73 20 61 62 67 65 73 70 |appschus s abgesp|
0070 65 69 63 68 65 72 74 20-69 6e 3a 5c 6e 25 1c 00 |eichert  in:\n%..|
0080 00 00 53 63 72 65 65 6e-20 73 6e 61 70 73 68 6f |..Screen  snapsho|
0090 74 20 73 61 76 65 64 20-69 6e 3a 5c 6e 25 d1 1e |t saved  in:\n%Ñ.|
00a0 00 00 00 42 69 74 74 65-20 43 61 6d 74 2d 44 61 |...Bitte  Camt-Da|
00b0 74 65 69 20 61 75 73 77-c3 a4 68 6c 65 6e 2e 2e |tei ausw ählen..|
00c0 2e 17 00 00 00 50 6c 65-61 73 65 20 73 65 6c 65 |.....Ple ase sele|
00d0 63 74 20 63 61 6d 74 20-66 69 6c 65 d1 29 00 00 |ct camt  fileÑ)..|
00e0 00 42 69 74 74 65 20 44-54 41 2d 44 61 74 65 69 |.Bitte D TA-Datei|
00f0 20 66 c3 bc 72 20 41 75-73 6c 61 6e 64 20 c3 bc | für Au sland ü|
0100 62 65 72 6e 65 68 6d 65-6e 21 2c 00 00 00 50 6c |bernehme n!,...Pl|
0110 65 61 73 65 20 61 64 6f-70 74 20 44 54 41 20 66 |ease ado pt DTA f|
0120 69 6c 65 20 66 6f 72 20-66 6f 72 65 69 67 6e 20 |ile for  foreign |
0130 63 6f 75 6e 74 72 69 65-73 21 d1 28 00 00 00 42 |countrie s!Ñ(...B|
0140 69 74 74 65 20 44 54 41-2d 44 61 74 65 69 20 66 |itte DTA -Datei f|
0150 c3 bc 72 20 49 6e 6c 61-6e 64 20 c3 bc 62 65 72 |ür Inla nd über|
0160 6e 65 68 6d 65 6e 21 23-00 00 00 50 6c 65 61 73 |nehmen!# ...Pleas|
0170 65 20 61 64 6f 70 74 20-44 54 41 20 66 69 6c 65 |e adopt  DTA file|
0180 20 66 6f 72 20 64 6f 6d-65 73 74 69 63 21 d1 1f | for dom estic!Ñ.|
0190 00 00 00 42 69 74 74 65-20 44 6f 6b 75 6d 65 6e |...Bitte  Dokumen|
01a0 74 74 79 70 20 61 75 73-77 c3 a4 68 6c 65 6e 2e |ttyp aus wählen.|
01b0 2e 2e 1e 00 00 00 50 6c-65 61 73 65 20 73 65 6c |......Pl ease sel|
01c0 65 63 74 20 64 6f 63 75-6d 65 6e 74 20 74 79 70 |ect docu ment typ|
01d0 65 2e 2e 2e d1 1b 00 00-00 42 69 74 74 65 20 56 |e...Ñ... .Bitte V|
01e0 6f 72 6c 61 67 65 20 61-75 73 77 c3 a4 68 6c 65 |orlage a uswähle|
01f0 6e 2e 2e 2e 17 00 00 00-50 6c 65 61 73 65 20 73 |n....... Please s|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2c50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2c20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128cb80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128cb80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128cb80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 6c 65 63 74 20 6d 61 |........ elect ma|
0010 73 74 65 72 2e 2e 2e d1-2a 00 00 00 42 69 74 74 |ster...Ñ *...Bitt|
0020 65 20 5a 65 72 74 69 66-6b 61 74 2d 50 61 73 73 |e Zertif kat-Pass|
0030 77 6f 72 74 20 66 c3 bc-72 20 3c 25 3e 20 65 69 |wort fü r <%> ei|
0040 6e 67 65 62 65 6e 2c 00-00 00 50 6c 65 61 73 65 |ngeben,. ..Please|
0050 20 69 6e 64 69 63 61 74-65 20 63 65 72 74 69 66 | indicat e certif|
0060 69 63 61 74 65 20 70 61-73 73 77 6f 72 64 20 66 |icate pa ssword f|
0070 6f 72 20 3c 25 3e d1 74-00 00 00 42 69 74 74 65 |or <%>Ñt ...Bitte|
0080 20 69 6e 73 74 61 6c 6c-69 65 72 65 6e 20 53 69 | install ieren Si|
0090 65 20 62 61 6c 64 6d c3-b6 67 6c 69 63 68 73 74 |e baldmà ¶glichst|
00a0 20 64 69 65 20 61 6b 74-75 65 6c 6c 65 20 56 65 | die akt uelle Ve|
00b0 72 73 69 6f 6e 20 64 65-73 20 4f 50 47 20 46 72 |rsion de s OPG Fr|
00c0 6f 6e 74 65 6e 64 73 20-20 28 76 65 72 66 c3 bc |ontends   (verfü|
00d0 67 62 61 72 20 69 73 74-20 25 2c 20 69 6e 73 74 |gbar ist  %, inst|
00e0 61 6c 6c 69 65 72 74 20-69 73 74 20 25 29 21 74 |alliert  ist %)!t|
00f0 00 00 00 50 6c 65 61 73-65 20 75 70 64 61 74 65 |...Pleas e update|
0100 20 74 6f 20 74 68 65 20-6e 65 77 20 76 65 72 73 | to the  new vers|
0110 69 6f 6e 20 6f 66 20 74-68 65 20 4f 50 47 20 66 |ion of t he OPG f|
0120 72 6f 6e 74 65 6e 64 20-61 73 20 73 6f 6f 6e 20 |rontend  as soon |
0130 61 73 20 70 6f 73 73 69-62 6c 65 20 28 76 65 72 |as possi ble (ver|
0140 73 69 6f 6e 20 61 76 61-69 6c 61 62 6c 65 20 25 |sion ava ilable %|
0150 2c 20 76 65 72 73 69 6f-6e 20 69 6e 73 74 61 6c |, versio n instal|
0160 6c 65 64 20 25 29 21 d1-60 00 00 00 42 69 74 74 |led %)!Ñ `...Bitt|
0170 65 20 69 6e 73 74 61 6c-6c 69 65 72 65 6e 20 53 |e instal lieren S|
0180 69 65 20 64 69 65 20 61-6b 74 75 65 6c 6c 65 20 |ie die a ktuelle |
0190 56 65 72 73 69 6f 6e 20-4f 50 47 20 46 72 6f 6e |Version  OPG Fron|
01a0 74 65 6e 64 73 20 28 53-69 65 20 62 65 6e c3 b6 |tends (S ie benö|
01b0 74 69 67 65 6e 20 25 2c-20 69 6e 73 74 61 6c 6c |tigen %,  install|
01c0 69 65 72 74 20 69 73 74-20 25 29 21 5e 00 00 00 |iert ist  %)!^...|
01d0 50 6c 65 61 73 65 20 75-70 64 61 74 65 20 74 6f |Please u pdate to|
01e0 20 74 68 65 20 63 75 72-72 65 6e 74 20 76 65 72 | the cur rent ver|
01f0 73 69 6f 6e 20 6f 66 20-74 68 65 20 4f 50 47 20 |sion of  the OPG |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128cb80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128cb80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 116 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 116 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 116
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d210, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (116 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 116
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (116 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 96 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 94 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-66 72 6f 6e 74 65 6e 64 |........ frontend|
0010 20 28 79 6f 75 20 6e 65-65 64 20 25 2c 20 69 6e | (you ne ed %, in|
0020 73 74 61 6c 6c 65 64 20-76 65 72 73 69 6f 6e 20 |stalled  version |
0030 69 73 20 25 29 21 d1 36-00 00 00 42 69 74 74 65 |is %)!Ñ6 ...Bitte|
0040 20 6b 6f 6e 74 61 6b 74-65 6e 20 53 69 65 20 64 | kontakt en Sie d|
0050 65 6e 20 53 75 70 70 6f-72 74 20 28 47 72 75 70 |en Suppo rt (Grup|
0060 70 65 20 75 6e 64 65 66-69 6e 69 65 72 74 29 20 |pe undef iniert) |
0070 21 32 00 00 00 50 6c 65-61 73 65 20 63 6f 6e 74 |!2...Ple ase cont|
0080 61 63 74 20 63 75 73 74-6f 6d 65 72 20 73 75 70 |act cust omer sup|
0090 70 6f 72 74 20 28 67 72-6f 75 70 20 75 6e 64 65 |port (gr oup unde|
00a0 66 69 6e 65 64 29 21 d1-30 00 00 00 42 69 74 74 |fined)!Ñ 0...Bitt|
00b0 65 20 6b 6f 6e 74 72 6f-6c 6c 69 65 72 65 6e 20 |e kontro llieren |
00c0 53 69 65 20 64 69 65 20-41 62 62 75 63 68 75 6e |Sie die  Abbuchun|
00d0 67 65 6e 20 6d 61 6e 75-65 6c 6c 2e 21 00 00 00 |gen manu ell.!...|
00e0 50 6c 65 61 73 65 20 63-68 65 63 6b 20 74 68 65 |Please c heck the|
00f0 20 64 65 62 69 74 73 20-6d 61 6e 75 61 6c 6c 79 | debits  manually|
0100 2e d1 2b 00 00 00 42 69-74 74 65 20 6f 72 64 6e |.Ñ+...Bi tte ordn|
0110 65 6e 20 53 69 65 20 64-65 6d 20 50 6c 61 6e 20 |en Sie d em Plan |
0120 65 72 73 74 20 41 6b 74-69 6f 6e 65 6e 20 7a 75 |erst Akt ionen zu|
0130 21 28 00 00 00 50 6c 65-61 73 65 20 61 73 73 69 |!(...Ple ase assi|
0140 67 6e 20 61 63 74 69 6f-6e 73 20 74 6f 20 74 68 |gn actio ns to th|
0150 65 20 70 6c 61 6e 20 66-69 72 73 74 21 d1 2c 00 |e plan f irst!Ñ,.|
0160 00 00 42 69 74 74 65 20-6f 72 64 6e 65 6e 20 53 |..Bitte  ordnen S|
0170 69 65 20 64 65 6d 20 50-6c 61 6e 20 65 72 73 74 |ie dem P lan erst|
0180 20 50 61 72 61 6d 65 74-65 72 20 7a 75 21 2b 00 | Paramet er zu!+.|
0190 00 00 50 6c 65 61 73 65-20 61 73 73 69 67 6e 20 |..Please  assign |
01a0 70 61 72 61 6d 65 74 65-72 73 20 74 6f 20 74 68 |paramete rs to th|
01b0 65 20 70 6c 61 6e 20 66-69 72 73 74 21 d1 46 00 |e plan f irst!ÑF.|
01c0 00 00 42 69 74 74 65 20-73 65 74 7a 65 6e 20 53 |..Bitte  setzen S|
01d0 69 65 20 7a 75 65 72 73-74 20 69 6e 20 49 68 72 |ie zuers t in Ihr|
01e0 20 42 65 6e 75 74 7a 65-72 70 72 6f 66 69 6c 20 | Benutze rprofil |
01f0 64 69 65 20 55 52 4c 20-64 65 73 20 49 50 2d 54 |die URL  des IP-T|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 96
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d210, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (96 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 94
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (94 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d210, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d210, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d210, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d210, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d250, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 6c 65 66 6f 6e 73 21 |........ elefons!|
0010 3a 00 00 00 50 6c 65 61-73 65 20 61 64 64 20 55 |:...Plea se add U|
0020 52 4c 20 6f 66 20 49 50-2d 74 65 6c 65 70 68 6f |RL of IP -telepho|
0030 6e 65 20 74 6f 20 79 6f-75 72 20 75 73 65 72 20 |ne to yo ur user |
0040 70 72 6f 66 69 6c 65 20-66 69 72 73 74 21 d1 2f |profile  first!Ñ/|
0050 00 00 00 42 69 74 74 65-20 73 70 65 69 63 68 65 |...Bitte  speiche|
0060 72 6e 20 53 69 65 20 64-69 65 20 50 6f 73 69 74 |rn Sie d ie Posit|
0070 69 6f 6e 65 6e 20 6e 6f-63 68 6d 61 6c 73 20 61 |ionen no chmals a|
0080 62 21 1c 00 00 00 50 6c-65 61 73 65 20 73 61 76 |b!....Pl ease sav|
0090 65 20 74 68 65 20 69 74-65 6d 73 20 61 67 61 69 |e the it ems agai|
00a0 6e 21 d1 1e 00 00 00 42-69 74 74 65 20 73 70 65 |n!Ñ....B itte spe|
00b0 69 63 68 65 72 6e 20 53-69 65 20 7a 75 65 72 73 |ichern S ie zuers|
00c0 74 20 61 62 21 12 00 00-00 50 6c 65 61 73 65 20 |t ab!... .Please |
00d0 73 61 76 65 20 66 69 72-73 74 21 d1 28 00 00 00 |save fir st!Ñ(...|
00e0 42 69 74 74 65 20 77 c3-a4 68 6c 65 6e 20 53 69 |Bitte wà ¤hlen Si|
00f0 65 20 64 69 65 20 4c 69-65 66 65 72 61 64 72 65 |e die Li eferadre|
0100 73 73 65 20 61 75 73 2e-21 00 00 00 50 6c 65 61 |sse aus. !...Plea|
0110 73 65 20 73 65 6c 65 63-74 20 61 20 64 65 6c 69 |se selec t a deli|
0120 76 65 72 79 20 61 64 64-72 65 73 73 2e d1 2b 00 |very add ress.Ñ+.|
0130 00 00 42 69 74 74 65 20-77 c3 a4 68 6c 65 6e 20 |..Bitte  wählen |
0140 53 69 65 20 64 69 65 20-52 65 63 68 6e 75 6e 67 |Sie die  Rechnung|
0150 73 61 64 72 65 73 73 65-20 61 75 73 2e 21 00 00 |sadresse  aus.!..|
0160 00 50 6c 65 61 73 65 20-73 65 6c 65 63 74 20 61 |.Please  select a|
0170 6e 20 69 6e 76 6f 69 63-65 20 61 64 64 72 65 73 |n invoic e addres|
0180 73 2e d1 2a 00 00 00 42-69 74 74 65 20 77 c3 a4 |s.Ñ*...B itte wä|
0190 68 6c 65 6e 20 53 69 65-20 64 69 65 20 53 74 65 |hlen Sie  die Ste|
01a0 6c 6c 76 65 72 74 72 65-74 75 6e 67 20 61 75 73 |llvertre tung aus|
01b0 21 1b 00 00 00 50 6c 65-61 73 65 20 73 65 6c 65 |!....Ple ase sele|
01c0 63 74 20 61 20 73 75 62-73 74 69 74 75 74 65 21 |ct a sub stitute!|
01d0 d1 2d 00 00 00 42 69 74-74 65 20 c3 bc 62 65 72 |Ñ-...Bit te über|
01e0 70 72 75 65 66 65 6e 20-53 69 65 20 64 69 65 20 |pruefen  Sie die |
01f0 44 54 41 2f 53 44 41 20-53 74 61 6d 6d 64 61 74 |DTA/SDA  Stammdat|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b52b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b52b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b52b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b52b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 6e 25 00 00 00 50 6c |........ en%...Pl|
0010 65 61 73 65 20 76 65 72-69 66 79 20 74 68 65 20 |ease ver ify the |
0020 44 54 41 2f 53 44 41 20-6d 61 73 74 65 72 20 64 |DTA/SDA  master d|
0030 61 74 61 d1 36 00 00 00-42 69 74 74 65 20 c3 bc |ataÑ6... Bitte ü|
0040 62 65 72 70 72 c3 bc 66-65 6e 20 53 69 65 20 64 |berprüf en Sie d|
0050 69 65 20 56 61 72 69 61-62 6c 65 20 3e 50 49 53 |ie Varia ble >PIS|
0060 4b 75 72 7a 5a 65 69 63-68 55 6e 69 71 3c 2c 00 |KurzZeic hUniq<,.|
0070 00 00 50 6c 65 61 73 65-20 63 68 65 63 6b 20 74 |..Please  check t|
0080 68 65 20 76 61 72 69 61-62 6c 65 20 3e 50 49 53 |he varia ble >PIS|
0090 4b 75 72 7a 5a 65 69 63-68 55 6e 69 71 3c d1 04 |KurzZeic hUniq<Ñ.|
00a0 00 00 00 42 6f 6f 6b 04-00 00 00 42 6f 6f 6b d1 |...Book. ...BookÑ|
00b0 0b 00 00 00 42 6f 6f 6b-6b 65 65 70 69 6e 67 0b |....Book keeping.|
00c0 00 00 00 42 6f 6f 6b 6b-65 65 70 69 6e 67 d1 07 |...Bookk eepingÑ.|
00d0 00 00 00 42 72 6f 77 73-65 72 07 00 00 00 42 72 |...Brows er....Br|
00e0 6f 77 73 65 72 d1 46 00-00 00 42 75 63 68 75 6e |owserÑF. ..Buchun|
00f0 67 20 28 25 29 20 76 6f-6e 20 41 72 74 4e 72 20 |g (%) vo n ArtNr |
0100 3d 20 25 2c 20 4d 65 6e-67 65 20 3d 20 25 2c 20 |= %, Men ge = %, |
0110 56 50 45 20 3d 20 25 20-53 74 61 6e 64 6f 72 74 |VPE = %  Standort|
0120 3d 20 25 20 4c 61 67 65-72 4f 72 74 20 3d 20 25 |= % Lage rOrt = %|
0130 51 00 00 00 50 6f 73 74-69 6e 67 20 28 25 29 20 |Q...Post ing (%) |
0140 6f 66 20 41 72 74 4e 6f-20 3d 20 25 2c 20 51 75 |of ArtNo  = %, Qu|
0150 61 6e 74 69 74 79 20 3d-20 25 2c 20 50 55 20 3d |antity =  %, PU =|
0160 20 25 2c 20 4c 6f 63 61-74 69 6f 6e 20 3d 20 25 | %, Loca tion = %|
0170 2c 20 53 74 6f 72 61 67-65 4c 6f 63 61 74 69 6f |, Storag eLocatio|
0180 6e 20 3d 20 25 d1 09 00-00 00 42 75 64 67 65 74 |n = %Ñ.. ..Budget|
0190 69 6e 67 09 00 00 00 42-75 64 67 65 74 69 6e 67 |ing....B udgeting|
01a0 d1 32 00 00 00 43 41 53-59 4e 49 4b 41 54 4f 52 |Ñ2...CAS YNIKATOR|
01b0 20 6b 6f 6e 6e 74 65 20-6e 69 63 68 74 20 67 65 | konnte  nicht ge|
01c0 66 75 6e 64 65 6e 20 77-65 72 64 65 6e 20 75 6e |funden w erden un|
01d0 74 65 72 20 25 20 21 1e-00 00 00 43 41 53 59 4e |ter % !. ...CASYN|
01e0 49 4b 41 54 4f 52 20 6e-6f 74 20 66 6f 75 6e 64 |IKATOR n ot found|
01f0 20 75 6e 64 65 72 20 25-21 d1 20 00 00 00 43 45 | under % !Ñ ...CE|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5a00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5a00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5a00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14e2be0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12b5a00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 81 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 81
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (81 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-50 49 20 69 73 20 6e 6f |........ PI is no|
0010 63 68 20 6e 69 63 68 74-20 75 6e 74 65 72 73 74 |ch nicht  unterst|
0020 c3 bc 74 7a 74 21 1a 00-00 00 43 45 50 49 20 69 |ützt!.. ..CEPI i|
0030 73 20 6e 6f 74 20 79 65-74 20 73 75 70 70 6f 72 |s not ye t suppor|
0040 74 65 64 21 d1 1f 00 00-00 43 45 50 49 20 69 73 |ted!Ñ... .CEPI is|
0050 20 6e 6f 74 20 6e 69 63-68 74 20 75 6e 74 65 72 | not nic ht unter|
0060 73 74 c3 bc 74 7a 74 21-16 00 00 00 43 45 50 49 |stützt! ....CEPI|
0070 20 69 73 20 6e 6f 74 20-73 75 70 70 6f 72 74 65 | is not  supporte|
0080 64 21 d1 14 00 00 00 43-52 4d 20 46 69 72 6d 65 |d!Ñ....C RM Firme|
0090 6e 20 76 65 72 77 61 6c-74 65 6e 1c 00 00 00 43 |n verwal ten....C|
00a0 6f 6d 70 61 6e 79 20 61-64 6d 69 6e 69 73 74 72 |ompany a dministr|
00b0 61 74 69 6f 6e 20 28 43-52 4d 29 d1 18 00 00 00 |ation (C RM)Ñ....|
00c0 43 52 4d 20 56 6f 72 66-c3 a4 6c 6c 65 20 62 65 |CRM Vorf älle be|
00d0 61 72 62 65 69 74 65 6e-12 00 00 00 45 64 69 74 |arbeiten ....Edit|
00e0 20 43 52 4d 20 69 6e 63-69 64 65 6e 74 73 d1 0b | CRM inc identsÑ.|
00f0 00 00 00 43 61 6c 63 75-6c 61 74 69 6f 6e 0b 00 |...Calcu lation..|
0100 00 00 43 61 6c 63 75 6c-61 74 69 6f 6e d1 27 00 |..Calcul ationÑ'.|
0110 00 00 43 61 6c 6c 4b 75-6e 64 65 45 72 66 61 73 |..CallKu ndeErfas|
0120 73 65 6e 3a 20 4b 6f 6e-66 69 67 75 72 61 74 69 |sen: Kon figurati|
0130 6f 6e 73 66 65 68 6c 65-72 26 00 00 00 43 61 6c |onsfehle r&...Cal|
0140 6c 4b 75 6e 64 65 45 72-66 61 73 73 65 6e 3a 20 |lKundeEr fassen: |
0150 43 6f 6e 66 69 67 75 72-61 74 69 6f 6e 20 65 72 |Configur ation er|
0160 72 6f 72 d1 2b 00 00 00-43 61 6c 6c 4c 69 65 66 |rorÑ+... CallLief|
0170 65 72 61 6e 74 45 72 66-61 73 73 65 6e 3a 20 4b |erantErf assen: K|
0180 6f 6e 66 69 67 75 72 61-74 69 6f 6e 73 66 65 68 |onfigura tionsfeh|
0190 6c 65 72 2a 00 00 00 43-61 6c 6c 4c 69 65 66 65 |ler*...C allLiefe|
01a0 72 61 6e 74 45 72 66 61-73 73 65 6e 3a 20 43 6f |rantErfa ssen: Co|
01b0 6e 66 69 67 75 72 61 74-69 6f 6e 20 65 72 72 6f |nfigurat ion erro|
01c0 72 d1 04 00 00 00 43 61-73 68 04 00 00 00 43 61 |rÑ....Ca sh....Ca|
01d0 73 68 d1 07 00 00 00 43-61 73 79 6d 69 72 07 00 |shÑ....C asymir..|
01e0 00 00 43 61 73 79 6d 69-72 d1 06 00 00 00 43 68 |..Casymi rÑ....Ch|
01f0 61 72 67 65 05 00 00 00-42 61 74 63 68 d1 27 00 |arge.... BatchÑ'.|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de660, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13de6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d240, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d280, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d240, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d280, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d240, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d280, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d240, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d280, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 43 68 61 72 67 65 |........ ..Charge|
0010 20 25 20 66 c3 bc 72 20-41 72 74 69 6b 65 6c 20 | % für  Artikel |
0020 25 20 77 75 72 64 65 20-61 6e 67 65 6c 65 67 74 |% wurde  angelegt|
0030 2e 1e 00 00 00 42 61 74-63 68 20 25 20 63 72 65 |.....Bat ch % cre|
0040 61 74 65 64 20 66 6f 72-20 61 72 74 69 63 6c 65 |ated for  article|
0050 20 25 2e d1 35 00 00 00-43 68 61 72 67 65 20 6b | %.Ñ5... Charge k|
0060 61 6e 6e 20 6e 69 63 68-74 20 61 75 66 20 3e 69 |ann nich t auf >i|
0070 6e 20 50 72 6f 64 75 6b-74 69 6f 6e 3c 20 67 65 |n Produk tion< ge|
0080 73 65 74 7a 74 20 77 65-72 64 65 6e 21 24 00 00 |setzt we rden!$..|
0090 00 43 61 6e 6e 6f 74 20-73 65 74 20 62 61 74 63 |.Cannot  set batc|
00a0 68 20 74 6f 20 3e 69 6e-20 70 72 6f 64 75 63 74 |h to >in  product|
00b0 69 6f 6e 3c 21 d1 36 00-00 00 43 68 61 72 67 65 |ion<!Ñ6. ..Charge|
00c0 20 6b 61 6e 6e 20 6e 69-63 68 74 20 61 75 66 20 | kann ni cht auf |
00d0 3e 69 6e 20 51 75 61 72-61 6e 74 c3 a4 6e 65 3c |>in Quar antäne<|
00e0 20 67 65 73 65 74 7a 74-20 77 65 72 64 65 6e 21 | gesetzt  werden!|
00f0 24 00 00 00 43 61 6e 6e-6f 74 20 73 65 74 20 62 |$...Cann ot set b|
0100 61 74 63 68 20 74 6f 20-3e 69 6e 20 71 75 61 72 |atch to  >in quar|
0110 61 6e 74 69 6e 65 3c 21-d1 32 00 00 00 43 68 61 |antine<! Ñ2...Cha|
0120 72 67 65 20 6b 61 6e 6e-20 6e 69 63 68 74 20 61 |rge kann  nicht a|
0130 75 66 20 3e 76 65 72 66-c3 bc 67 62 61 72 3c 20 |uf >verf ügbar< |
0140 67 65 73 65 74 7a 74 20-77 65 72 64 65 6e 21 20 |gesetzt  werden! |
0150 00 00 00 43 61 6e 6e 6f-74 20 73 65 74 20 62 61 |...Canno t set ba|
0160 74 63 68 20 74 6f 20 3e-61 76 61 69 6c 61 62 6c |tch to > availabl|
0170 65 3c 21 d1 25 00 00 00-43 68 61 72 67 65 20 6b |e<!Ñ%... Charge k|
0180 61 6e 6e 20 6e 69 63 68-74 20 66 72 65 69 67 65 |ann nich t freige|
0190 67 65 62 65 6e 20 77 65-72 64 65 6e 21 15 00 00 |geben we rden!...|
01a0 00 43 61 6e 6e 6f 74 20-61 70 70 72 6f 76 65 20 |.Cannot  approve |
01b0 62 61 74 63 68 21 d1 22-00 00 00 43 68 61 72 67 |batch!Ñ" ...Charg|
01c0 65 20 6b 61 6e 6e 20 6e-69 63 68 74 20 67 65 73 |e kann n icht ges|
01d0 70 65 72 72 74 20 77 65-72 64 65 6e 21 13 00 00 |perrt we rden!...|
01e0 00 43 61 6e 6e 6f 74 20-62 6c 6f 63 6b 20 62 61 |.Cannot  block ba|
01f0 74 63 68 21 d1 23 00 00-00 43 68 61 72 67 65 20 |tch!Ñ#.. .Charge |

token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x128d550, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6b 61 6e 6e 20 6e 69 63 |........ kann nic|
0010 68 74 20 75 6d 67 65 62-75 63 68 74 20 77 65 72 |ht umgeb ucht wer|
0020 64 65 6e 21 16 00 00 00-43 61 6e 6e 6f 74 20 74 |den!.... Cannot t|
0030 72 61 6e 73 66 65 72 20-62 61 74 63 68 21 d1 04 |ransfer  batch!Ñ.|
0040 00 00 00 43 6f 64 65 04-00 00 00 43 6f 64 65 d1 |...Code. ...CodeÑ|
0050 16 00 00 00 43 6f 64 65-53 65 74 20 25 20 73 69 |....Code Set % si|
0060 6e 67 6c 65 43 68 61 72-20 25 16 00 00 00 43 6f |ngleChar  %....Co|
0070 64 65 53 65 74 20 25 20-73 69 6e 67 6c 65 43 68 |deSet %  singleCh|
0080 61 72 20 25 d1 09 00 00-00 43 6f 6d 70 61 6e 69 |ar %Ñ... .Compani|
0090 65 73 09 00 00 00 43 6f-6d 70 61 6e 69 65 73 d1 |es....Co mpaniesÑ|
00a0 0d 00 00 00 43 6f 6e 66-69 67 75 72 61 74 69 6f |....Conf iguratio|
00b0 6e 09 00 00 00 43 6f 6d-70 61 6e 69 65 73 d1 0d |n....Com paniesÑ.|
00c0 00 00 00 43 6f 6e 73 6f-6c 69 64 61 74 69 6f 6e |...Conso lidation|
00d0 0d 00 00 00 43 6f 6e 73-6f 6c 69 64 61 74 69 6f |....Cons olidatio|
00e0 6e d1 12 00 00 00 43 72-65 61 74 69 6e 67 20 74 |nÑ....Cr eating t|
00f0 61 62 6c 65 73 2e 2e 2e-12 00 00 00 43 72 65 61 |ables... ....Crea|
0100 74 69 6e 67 20 74 61 62-6c 65 73 2e 2e 2e d1 08 |ting tab les...Ñ.|
0110 00 00 00 43 75 73 74 6f-6d 65 72 08 00 00 00 43 |...Custo mer....C|
0120 75 73 74 6f 6d 65 72 d1-07 00 00 00 43 75 73 74 |ustomerÑ ....Cust|
0130 6f 6d 73 07 00 00 00 43-75 73 74 6f 6d 73 d1 32 |oms....C ustomsÑ2|
0140 00 00 00 44 48 4c 20 42-65 6e 75 74 7a 65 72 20 |...DHL B enutzer |
0150 6f 64 65 72 20 50 61 73-73 77 6f 72 74 20 73 69 |oder Pas swort si|
0160 6e 64 20 6e 69 63 68 74-20 65 69 6e 67 65 74 72 |nd nicht  eingetr|
0170 61 67 65 6e 21 28 00 00-00 44 48 4c 20 75 73 65 |agen!(.. .DHL use|
0180 72 20 6f 72 20 70 61 73-73 77 6f 72 64 20 61 72 |r or pas sword ar|
0190 65 20 6e 6f 74 20 72 65-67 69 73 74 65 72 65 64 |e not re gistered|
01a0 21 d1 3d 00 00 00 44 48-4c 20 57 65 62 73 65 72 |!Ñ=...DH L Webser|
01b0 76 69 63 65 20 42 65 6e-75 74 7a 65 72 20 6f 64 |vice Ben utzer od|
01c0 65 72 20 50 61 73 73 77-6f 72 74 20 73 69 6e 64 |er Passw ort sind|
01d0 20 6e 69 63 68 74 20 65-69 6e 67 65 74 72 61 67 | nicht e ingetrag|
01e0 65 6e 21 34 00 00 00 44-48 4c 20 77 65 62 20 73 |en!4...D HL web s|
01f0 65 72 76 69 63 65 20 75-73 65 72 20 6f 72 20 70 |ervice u ser or p|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ced40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d650, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 73 73 77 6f 72 64 20 |........ assword |
0010 61 72 65 20 6e 6f 74 20-72 65 67 69 73 74 65 72 |are not  register|
0020 65 64 21 d1 32 00 00 00-44 50 44 20 42 65 6e 75 |ed!Ñ2... DPD Benu|
0030 74 7a 65 72 20 6f 64 65-72 20 50 61 73 73 77 6f |tzer ode r Passwo|
0040 72 74 20 73 69 6e 64 20-6e 69 63 68 74 20 65 69 |rt sind  nicht ei|
0050 6e 67 65 74 72 61 67 65-6e 21 21 00 00 00 44 50 |ngetrage n!!...DP|
0060 44 20 55 73 65 72 20 6f-72 20 70 61 73 73 77 6f |D User o r passwo|
0070 72 64 20 6e 6f 74 20 65-6e 74 65 72 65 64 21 d1 |rd not e ntered!Ñ|
0080 2b 00 00 00 44 61 73 20-42 65 7a 75 67 73 62 72 |+...Das  Bezugsbr|
0090 75 74 74 6f 20 28 25 29-20 69 73 74 20 6e 69 63 |utto (%)  ist nic|
00a0 68 74 20 66 65 73 74 67-65 6c 65 67 74 20 21 23 |ht festg elegt !#|
00b0 00 00 00 52 65 66 65 72-65 6e 63 65 20 67 72 6f |...Refer ence gro|
00c0 73 73 20 28 25 29 20 69-73 20 6e 6f 74 20 64 65 |ss (%) i s not de|
00d0 66 69 6e 65 64 21 d1 6c-00 00 00 44 61 73 20 45 |fined!Ñl ...Das E|
00e0 72 74 72 61 67 73 6b 6f-6e 74 6f 20 20 25 2f 25 |rtragsko nto  %/%|
00f0 2f 25 20 69 73 74 20 6e-69 63 68 74 20 64 65 66 |/% ist n icht def|
0100 69 6e 69 65 72 74 2e 20-4c 65 67 65 6e 20 53 69 |iniert.  Legen Si|
0110 65 20 65 73 20 61 6e 20-6f 64 65 72 20 6b 6f 6e |e es an  oder kon|
0120 74 72 6f 6c 6c 69 65 72-65 6e 20 53 69 65 20 64 |trollier en Sie d|
0130 69 65 20 52 65 63 68 6e-75 6e 67 73 70 6f 73 69 |ie Rechn ungsposi|
0140 74 69 6f 6e 65 6e 21 52-00 00 00 52 65 76 65 6e |tionen!R ...Reven|
0150 75 65 20 61 63 63 6f 75-6e 74 20 25 2f 25 2f 25 |ue accou nt %/%/%|
0160 20 69 73 20 6e 6f 74 20-64 65 66 69 6e 65 64 2e | is not  defined.|
0170 20 50 6c 65 61 73 65 20-63 72 65 61 74 65 20 69 | Please  create i|
0180 74 20 6f 72 20 63 68 65-63 6b 20 74 68 65 20 69 |t or che ck the i|
0190 6e 76 6f 69 63 65 20 69-74 65 6d 73 21 d1 22 00 |nvoice i tems!Ñ".|
01a0 00 00 44 61 73 20 46 65-6c 64 20 25 20 6d 75 73 |..Das Fe ld % mus|
01b0 73 20 65 69 6e 67 65 67-65 62 65 6e 20 77 65 72 |s eingeg eben wer|
01c0 64 65 6e 21 15 00 00 00-46 69 65 6c 64 20 25 20 |den!.... Field % |
01d0 69 73 20 6d 61 6e 64 61-74 6f 72 79 21 d1 24 00 |is manda tory!Ñ$.|
01e0 00 00 44 61 73 20 46 65-6c 64 20 27 25 27 20 6d |..Das Fe ld '%' m|
01f0 75 73 73 20 65 69 6e 67-65 67 65 62 65 6e 20 77 |uss eing egeben w|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ceee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ced40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ceee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ced40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ceee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12ced40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 108 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 108
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (108 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd260, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd260, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 72 64 65 6e 21 17 00 |........ erden!..|
0010 00 00 46 69 65 6c 64 20-27 25 27 20 69 73 20 6d |..Field  '%' is m|
0020 61 6e 64 61 74 6f 72 79-21 d1 58 00 00 00 44 61 |andatory !ÑX...Da|
0030 73 20 46 6f 72 6d 75 6c-61 72 20 3c 25 3e 20 6b |s Formul ar <%> k|
0040 61 6e 6e 20 6e 69 63 68-74 20 61 75 66 67 65 72 |ann nich t aufger|
0050 75 66 65 6e 20 77 65 72-64 65 6e 2c 20 64 65 72 |ufen wer den, der|
0060 20 4d 6f 64 75 6c 2d 53-74 61 74 75 73 20 28 25 | Modul-S tatus (%|
0070 29 20 6c c3 a4 73 73 74-20 64 61 73 20 6e 69 63 |) lässt  das nic|
0080 68 74 20 7a 75 2e 33 00-00 00 46 6f 72 6d 20 3c |ht zu.3. ..Form <|
0090 25 3e 20 63 61 6e 6e 6f-74 20 62 65 20 6c 6f 61 |%> canno t be loa|
00a0 64 65 64 20 64 75 65 20-74 6f 20 6d 6f 64 75 6c |ded due  to modul|
00b0 65 20 73 74 61 74 75 73-20 28 25 29 2e d1 23 00 |e status  (%).Ñ#.|
00c0 00 00 44 61 73 20 48 61-62 65 6e 2d 4b 6f 6e 74 |..Das Ha ben-Kont|
00d0 6f 20 69 73 74 20 6e 69-63 68 74 20 62 65 6b 61 |o ist ni cht beka|
00e0 6e 6e 74 20 21 17 00 00-00 43 72 65 64 69 74 20 |nnt !... .Credit |
00f0 61 63 63 6f 75 6e 74 20-75 6e 6b 6e 6f 77 6e 21 |account  unknown!|
0100 d1 41 00 00 00 44 61 73-20 48 65 72 73 74 65 6c |ÑA...Das  Herstel|
0110 6c 64 61 74 75 6d 20 64-61 72 66 20 6e 69 63 68 |ldatum d arf nich|
0120 74 20 6d 65 68 72 20 61-6c 73 20 25 20 54 61 67 |t mehr a ls % Tag|
0130 65 20 76 6f 6e 20 68 65-75 74 65 20 61 62 77 65 |e von he ute abwe|
0140 69 63 68 65 6e 21 48 00-00 00 54 68 65 20 64 61 |ichen!H. ..The da|
0150 74 65 20 6f 66 20 70 72-6f 64 75 63 74 69 6f 6e |te of pr oduction|
0160 20 63 61 6e 6e 6f 74 20-64 69 66 66 65 72 20 6d | cannot  differ m|
0170 6f 72 65 20 74 68 61 6e-20 25 20 64 61 79 73 20 |ore than  % days |
0180 66 72 6f 6d 20 74 6f 64-61 79 27 73 20 64 61 74 |from tod ay's dat|
0190 65 21 d1 2c 00 00 00 44-61 73 20 48 65 72 73 74 |e!Ñ,...D as Herst|
01a0 65 6c 6c 64 61 74 75 6d-20 6b 61 6e 6e 20 6e 69 |elldatum  kann ni|
01b0 63 68 74 20 67 65 73 65-74 7a 74 20 77 65 72 64 |cht gese tzt werd|
01c0 65 6e 21 1e 00 00 00 43-61 6e 6e 6f 74 20 73 65 |en!....C annot se|
01d0 74 20 64 61 74 65 20 6f-66 20 70 72 6f 64 75 63 |t date o f produc|
01e0 74 69 6f 6e 21 d1 2c 00-00 00 44 61 73 20 48 65 |tion!Ñ,. ..Das He|
01f0 72 73 74 65 6c 6c 64 61-74 75 6d 20 77 75 72 64 |rstellda tum wurd|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd260, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 88 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 88
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (88 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12cf350, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12cf350, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 20 62 65 72 65 69 74 |........ e bereit|
0010 73 20 67 65 73 65 74 7a-74 20 28 25 29 21 2c 00 |s gesetz t (%)!,.|
0020 00 00 44 61 74 65 20 6f-66 20 70 72 6f 64 75 63 |..Date o f produc|
0030 74 69 6f 6e 20 68 61 73-20 61 6c 72 65 61 64 79 |tion has  already|
0040 20 62 65 65 6e 20 73 65-74 20 28 25 29 21 d1 41 | been se t (%)!ÑA|
0050 00 00 00 44 61 73 20 49-63 6f 6e 20 6b 6f 6e 6e |...Das I con konn|
0060 74 65 20 61 75 73 20 64-65 6e 20 62 65 6b 61 6e |te aus d en bekan|
0070 6e 74 65 6e 20 51 75 65-6c 6c 65 6e 20 6e 69 63 |nten Que llen nic|
0080 68 74 20 65 72 6d 69 74-74 65 6c 74 20 77 65 72 |ht ermit telt wer|
0090 64 65 6e 2e 38 00 00 00-54 68 65 20 69 63 6f 6e |den.8... The icon|
00a0 20 63 6f 75 6c 64 20 6e-6f 74 20 62 65 20 64 65 | could n ot be de|
00b0 74 65 72 6d 69 6e 65 64-20 66 72 6f 6d 20 74 68 |termined  from th|
00c0 65 20 6b 6e 6f 77 6e 20-73 6f 75 72 63 65 73 2e |e known  sources.|
00d0 d1 3f 00 00 00 44 61 73-20 4b 75 72 7a 7a 65 69 |Ñ?...Das  Kurzzei|
00e0 63 68 65 6e 20 69 73 74-20 69 6d 20 4d 61 6e 64 |chen ist  im Mand|
00f0 61 6e 74 65 6e 20 25 20-62 65 72 65 69 74 73 20 |anten %  bereits |
0100 76 65 72 67 65 62 65 6e-20 28 50 65 72 73 4e 72 |vergeben  (PersNr|
0110 20 25 29 21 37 00 00 00-41 62 62 72 65 76 69 61 | %)!7... Abbrevia|
0120 74 69 6f 6e 20 61 6c 72-65 61 64 79 20 61 73 73 |tion alr eady ass|
0130 69 67 6e 65 64 20 74 6f-20 6d 61 6e 64 61 74 6f |igned to  mandato|
0140 72 20 25 20 28 50 65 72-73 4e 6f 20 25 29 21 d1 |r % (Per sNo %)!Ñ|
0150 5a 00 00 00 44 61 73 20-4d 61 6e 64 61 74 20 25 |Z...Das  Mandat %|
0160 20 69 73 74 20 6e 6f 63-68 20 6e 69 63 68 74 20 | ist noc h nicht |
0170 75 6e 74 65 72 7a 65 69-63 68 6e 65 74 2c 20 77 |unterzei chnet, w|
0180 6f 6c 6c 65 6e 20 53 69-65 20 69 6e 20 64 69 65 |ollen Si e in die|
0190 20 4d 61 6e 64 61 74 73-76 65 72 77 61 6c 74 75 | Mandats verwaltu|
01a0 6e 67 20 76 65 72 7a 77-65 69 67 65 6e 3f 42 00 |ng verzw eigen?B.|
01b0 00 00 4d 61 6e 64 61 74-65 20 25 20 69 73 20 6e |..Mandat e % is n|
01c0 6f 74 20 73 69 67 6e 65-64 20 79 65 74 2c 20 62 |ot signe d yet, b|
01d0 72 61 6e 63 68 20 6f 75-74 20 74 6f 20 6d 61 6e |ranch ou t to man|
01e0 64 61 74 65 20 61 64 6d-69 6e 69 73 74 72 61 74 |date adm inistrat|
01f0 69 6f 6e 3f d1 22 00 00-00 44 61 73 20 4d 6f 64 |ion?Ñ".. .Das Mod|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd5e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce030, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-75 6c 20 25 20 68 61 74 |........ ul % hat|
0010 20 6b 65 69 6e 65 6e 20-44 6f 6b 75 56 65 72 77 | keinen  DokuVerw|
0020 65 69 73 1e 00 00 00 4d-6f 64 75 6c 65 20 25 20 |eis....M odule % |
0030 68 61 73 20 6e 6f 20 64-6f 63 75 20 72 65 66 65 |has no d ocu refe|
0040 72 65 6e 63 65 d1 46 00-00 00 44 61 73 20 4d 6f |renceÑF. ..Das Mo|
0050 64 75 6c 20 27 41 72 63-68 69 76 44 4d 53 27 20 |dul 'Arc hivDMS' |
0060 77 75 72 64 65 20 61 75-66 20 64 69 65 73 65 6d |wurde au f diesem|
0070 20 4d 61 6e 64 61 74 65-6e 20 6e 69 63 68 74 20 | Mandate n nicht |
0080 69 6e 73 74 61 6c 6c 69-65 72 74 20 28 25 29 21 |installi ert (%)!|
0090 39 00 00 00 4d 6f 64 75-6c 65 20 27 41 72 63 68 |9...Modu le 'Arch|
00a0 69 76 44 4d 53 27 20 69-73 20 6e 6f 74 20 69 6e |ivDMS' i s not in|
00b0 73 74 61 6c 6c 65 64 20-6f 6e 20 74 68 69 73 20 |stalled  on this |
00c0 6d 61 6e 64 61 74 6f 72-20 28 25 29 21 d1 3d 00 |mandator  (%)!Ñ=.|
00d0 00 00 44 61 73 20 50 61-61 72 20 28 53 63 68 6c |..Das Pa ar (Schl|
00e0 c3 bc 73 73 65 6c 2c 44-61 74 75 6d 29 20 64 61 |üssel,D atum) da|
00f0 72 66 20 6e 75 72 20 65-69 6e 6d 61 6c 20 76 65 |rf nur e inmal ve|
0100 72 77 65 6e 64 65 74 20-77 65 72 64 65 6e 21 26 |rwendet  werden!&|
0110 00 00 00 50 61 69 72 20-28 6b 65 79 2c 64 61 74 |...Pair  (key,dat|
0120 65 29 20 63 61 6e 20 6f-6e 6c 79 20 62 65 20 75 |e) can o nly be u|
0130 73 65 64 20 6f 6e 63 65-21 d1 34 00 00 00 44 61 |sed once !Ñ4...Da|
0140 73 20 50 72 6f 64 75 6b-74 69 6f 6e 73 6d 69 74 |s Produk tionsmit|
0150 74 65 6c 20 6b 6f 6e 6e-74 65 20 6e 69 63 68 74 |tel konn te nicht|
0160 20 65 72 6d 69 74 74 65-6c 74 20 77 65 72 64 65 | ermitte lt werde|
0170 6e 21 2c 00 00 00 4d 65-61 6e 73 20 6f 66 20 70 |n!,...Me ans of p|
0180 72 6f 64 75 63 74 69 6f-6e 20 63 6f 75 6c 64 20 |roductio n could |
0190 6e 6f 74 20 62 65 20 64-65 74 65 72 6d 69 6e 65 |not be d etermine|
01a0 64 21 d1 63 00 00 00 44-61 73 20 50 72 c3 bc 66 |d!Ñc...D as Prüf|
01b0 6c 61 67 65 72 20 6b 61-6e 6e 20 6e 69 63 68 74 |lager ka nn nicht|
01c0 20 65 69 6e 64 65 75 74-69 67 20 65 72 6d 69 74 | eindeut ig ermit|
01d0 74 65 6c 74 20 77 65 72-64 65 6e 2c 20 62 69 74 |telt wer den, bit|
01e0 74 65 20 c3 bc 62 65 72-70 72 c3 bc 66 65 6e 20 |te über prüfen |
01f0 53 69 65 20 64 69 65 20-41 72 74 69 6b 65 6c 73 |Sie die  Artikels|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce030, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce030, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce030, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ce030, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd910, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 99 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 61 6d 6d 64 61 74 65 |........ tammdate|
0010 6e 21 4d 00 00 00 43 61-6e 6e 6f 74 20 63 6c 65 |n!M...Ca nnot cle|
0020 61 72 6c 79 20 64 65 74-65 72 6d 69 6e 65 20 74 |arly det ermine t|
0030 68 65 20 74 65 73 74 20-73 74 6f 63 6b 2c 20 70 |he test  stock, p|
0040 6c 65 61 73 65 20 65 78-61 6d 69 6e 65 20 20 61 |lease ex amine  a|
0050 72 74 69 63 6c 65 20 6d-61 73 74 65 72 20 64 61 |rticle m aster da|
0060 74 61 21 d1 3c 00 00 00-44 61 73 20 52 65 63 68 |ta!Ñ<... Das Rech|
0070 74 65 73 79 73 74 65 6d-20 77 75 72 64 65 20 6e |tesystem  wurde n|
0080 69 63 68 74 20 6b 6f 72-72 65 6b 74 20 69 6e 69 |icht kor rekt ini|
0090 74 69 61 6c 69 73 69 65-72 74 20 28 47 72 75 70 |tialisie rt (Grup|
00a0 70 65 29 21 38 00 00 00-52 69 67 68 74 20 73 79 |pe)!8... Right sy|
00b0 73 74 65 6d 20 68 61 73-20 6e 6f 74 20 62 65 65 |stem has  not bee|
00c0 6e 20 69 6e 69 74 69 61-6c 69 73 65 64 20 63 6f |n initia lised co|
00d0 72 72 65 63 74 6c 79 20-28 67 72 6f 75 70 29 21 |rrectly  (group)!|
00e0 d1 41 00 00 00 44 61 73-20 52 65 63 68 74 65 73 |ÑA...Das  Rechtes|
00f0 79 73 74 65 6d 20 77 75-72 64 65 20 6e 69 63 68 |ystem wu rde nich|
0100 74 20 6b 6f 72 72 65 6b-74 20 69 6e 69 74 69 61 |t korrek t initia|
0110 6c 69 73 69 65 72 74 20-28 6c 65 65 72 65 20 4d |lisiert  (leere M|
0120 61 73 6b 65 29 21 3d 00-00 00 52 69 67 68 74 20 |aske)!=. ..Right |
0130 73 79 73 74 65 6d 20 68-61 73 20 6e 6f 74 20 62 |system h as not b|
0140 65 65 6e 20 69 6e 69 74-69 61 6c 69 73 65 64 20 |een init ialised |
0150 63 6f 72 72 65 63 74 6c-79 20 28 65 6d 70 74 79 |correctl y (empty|
0160 20 6d 61 73 6b 29 21 d1-33 00 00 00 44 61 73 20 | mask)!Ñ 3...Das |
0170 52 65 63 68 74 65 73 79-73 74 65 6d 20 77 75 72 |Rechtesy stem wur|
0180 64 65 20 6e 69 63 68 74-20 6b 6f 72 72 65 6b 74 |de nicht  korrekt|
0190 20 69 6e 69 74 69 61 6c-69 73 69 65 72 74 21 30 | initial isiert!0|
01a0 00 00 00 52 69 67 68 74-20 73 79 73 74 65 6d 20 |...Right  system |
01b0 68 61 73 20 6e 6f 74 20-62 65 65 6e 20 69 6e 69 |has not  been ini|
01c0 74 69 61 6c 69 73 65 64-20 63 6f 72 72 65 63 74 |tialised  correct|
01d0 6c 79 21 d1 41 00 00 00-44 61 73 20 53 48 44 42 |ly!ÑA... Das SHDB|
01e0 2d 54 65 6d 70 6c 61 74-65 20 66 c3 bc 72 20 54 |-Templat e für T|
01f0 65 78 74 20 53 75 63 68-62 65 67 72 69 66 66 20 |ext Such begriff |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 99
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1307640, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (99 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1307640, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1307640, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1307640, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-3c 25 3e 20 69 6e 20 53 |........ <%> in S|
0010 70 72 61 63 68 65 20 3c-25 3e 20 66 65 68 6c 74 |prache < %> fehlt|
0020 2e 3c 00 00 00 53 44 53-20 74 65 6d 70 6c 61 74 |.<...SDS  templat|
0030 65 20 66 6f 72 20 73 65-61 72 63 68 20 74 65 78 |e for se arch tex|
0040 74 20 3c 25 3e 20 69 73-20 6d 69 73 73 69 6e 67 |t <%> is  missing|
0050 20 69 6e 20 6c 61 6e 67-75 61 67 65 20 3c 25 3e | in lang uage <%>|
0060 2e d1 22 00 00 00 44 61-73 20 53 6f 6c 6c 2d 4b |.Ñ"...Da s Soll-K|
0070 6f 6e 74 6f 20 69 73 74-20 6e 69 63 68 74 20 62 |onto ist  nicht b|
0080 65 6b 61 6e 6e 74 20 21-16 00 00 00 44 65 62 69 |ekannt ! ....Debi|
0090 74 20 61 63 63 6f 75 6e-74 20 75 6e 6b 6e 6f 77 |t accoun t unknow|
00a0 6e 21 d1 65 00 00 00 44-61 73 20 53 70 65 73 65 |n!Ñe...D as Spese|
00b0 6e 6b 6f 6e 74 6f 20 20-25 2f 25 20 69 73 74 20 |nkonto   %/% ist |
00c0 6e 69 63 68 74 20 64 65-66 69 6e 69 65 72 74 2e |nicht de finiert.|
00d0 20 4c 65 67 65 6e 20 53-69 65 20 65 73 20 61 6e | Legen S ie es an|
00e0 20 6f 64 65 72 20 6b 6f-6e 74 72 6f 6c 6c 69 65 | oder ko ntrollie|
00f0 72 65 6e 20 53 69 65 20-64 69 65 20 52 65 63 68 |ren Sie  die Rech|
0100 6e 75 6e 67 73 73 70 65-73 65 6e 21 51 00 00 00 |nungsspe sen!Q...|
0110 45 78 70 65 6e 73 65 73-20 61 63 63 6f 75 6e 74 |Expenses  account|
0120 20 25 2f 25 20 69 73 20-6e 6f 74 20 64 65 66 69 | %/% is  not defi|
0130 6e 65 64 2e 20 50 6c 65-61 73 65 20 63 72 65 61 |ned. Ple ase crea|
0140 74 65 20 69 74 20 6f 72-20 63 68 65 63 6b 20 74 |te it or  check t|
0150 68 65 20 69 6e 76 6f 69-63 65 20 69 74 65 6d 73 |he invoi ce items|
0160 21 d1 4d 00 00 00 44 61-73 20 56 65 72 66 61 68 |!ÑM...Da s Verfah|
0170 72 65 6e 20 66 c3 bc 72-20 64 61 73 20 42 61 72 |ren für  das Bar|
0180 43 6f 64 65 4c 65 73 65-6e 54 20 69 73 74 20 75 |CodeLese nT ist u|
0190 6e 64 65 66 69 6e 69 65-72 74 20 28 56 61 72 69 |ndefinie rt (Vari|
01a0 61 62 6c 65 20 42 61 72-43 6f 64 65 4c 65 73 65 |able Bar CodeLese|
01b0 6e 29 21 42 00 00 00 50-72 6f 63 65 64 75 72 65 |n)!B...P rocedure|
01c0 20 66 6f 72 20 42 61 72-43 6f 64 65 4c 65 73 65 | for Bar CodeLese|
01d0 6e 54 20 69 73 74 20 75-6e 64 65 66 69 6e 65 64 |nT ist u ndefined|
01e0 20 28 56 61 72 69 61 62-6c 65 20 42 61 72 43 6f | (Variab le BarCo|
01f0 64 65 4c 65 73 65 6e 29-21 d1 4c 00 00 00 44 61 |deLesen) !ÑL...Da|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1307640, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1307640, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 101 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 81 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 101
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (101 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 81
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (81 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 76 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 20 56 65 72 66 61 68 |........ s Verfah|
0010 72 65 6e 20 66 c3 bc 72-20 64 61 73 20 42 61 72 |ren für  das Bar|
0020 63 6f 64 65 6c 65 73 65-6e 20 69 73 74 20 75 6e |codelese n ist un|
0030 64 65 66 69 6e 69 65 72-74 20 28 56 61 72 69 61 |definier t (Varia|
0040 62 6c 65 20 42 61 72 43-6f 64 65 4c 65 73 65 6e |ble BarC odeLesen|
0050 29 21 3c 00 00 00 42 61-72 20 63 6f 64 65 20 72 |)!<...Ba r code r|
0060 65 61 64 69 6e 67 20 70-72 6f 63 65 64 75 72 65 |eading p rocedure|
0070 20 75 6e 64 65 66 69 6e-65 64 20 28 76 61 72 69 | undefin ed (vari|
0080 61 62 6c 65 20 52 65 61-64 42 61 72 43 6f 64 65 |able Rea dBarCode|
0090 29 21 d1 2b 00 00 00 44-61 73 20 56 65 72 66 61 |)!Ñ+...D as Verfa|
00a0 6c 6c 64 61 74 75 6d 20-6b 61 6e 6e 20 6e 69 63 |lldatum  kann nic|
00b0 68 74 20 67 65 73 65 74-7a 74 20 77 65 72 64 65 |ht geset zt werde|
00c0 6e 21 17 00 00 00 43 61-6e 6e 6f 74 20 73 65 74 |n!....Ca nnot set|
00d0 20 65 78 70 69 72 79 20-64 61 74 65 21 d1 2b 00 | expiry  date!Ñ+.|
00e0 00 00 44 61 73 20 56 65-72 66 61 6c 6c 64 61 74 |..Das Ve rfalldat|
00f0 75 6d 20 77 75 72 64 65-20 62 65 72 65 69 74 73 |um wurde  bereits|
0100 20 67 65 73 65 74 7a 74-20 28 25 29 21 25 00 00 | gesetzt  (%)!%..|
0110 00 45 78 70 69 72 79 20-64 61 74 65 20 68 61 73 |.Expiry  date has|
0120 20 61 6c 72 65 61 64 79-20 62 65 65 6e 20 73 65 | already  been se|
0130 74 20 28 25 29 21 d1 31-00 00 00 44 61 73 20 56 |t (%)!Ñ1 ...Das V|
0140 65 72 6b 61 75 66 65 6e-42 69 73 2d 44 61 74 75 |erkaufen Bis-Datu|
0150 6d 20 6b 61 6e 6e 20 6e-69 63 68 74 20 67 65 73 |m kann n icht ges|
0160 65 74 7a 74 20 77 65 72-64 65 6e 21 1f 00 00 00 |etzt wer den!....|
0170 43 61 6e 6e 6f 74 20 72-65 67 69 73 74 65 72 20 |Cannot r egister |
0180 53 65 6c 6c 55 6e 74 69-6c 20 64 61 74 65 21 d1 |SellUnti l date!Ñ|
0190 34 00 00 00 44 61 73 20-5a 77 69 73 63 68 65 6e |4...Das  Zwischen|
01a0 6b 6f 6e 74 6f 20 44 45-42 49 5f 49 4e 54 45 52 |konto DE BI_INTER|
01b0 49 4d 20 69 73 74 20 6e-69 63 68 74 20 64 65 66 |IM ist n icht def|
01c0 69 6e 69 65 72 74 20 21-2a 00 00 00 53 75 73 70 |iniert ! *...Susp|
01d0 65 6e 73 65 20 61 63 63-6f 75 6e 74 20 44 45 42 |ense acc ount DEB|
01e0 49 5f 49 4e 54 45 52 49-4d 20 6e 6f 74 20 64 65 |I_INTERI M not de|
01f0 66 69 6e 65 64 21 d1 34-00 00 00 44 61 73 20 5a |fined!Ñ4 ...Das Z|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 76
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (76 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13076b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-77 69 73 63 68 65 6e 6b |........ wischenk|
0010 6f 6e 74 6f 20 5a 41 48-4c 5f 49 4e 54 45 52 49 |onto ZAH L_INTERI|
0020 4d 20 69 73 74 20 6e 69-63 68 74 20 64 65 66 69 |M ist ni cht defi|
0030 6e 69 65 72 74 20 21 2a-00 00 00 53 75 73 70 65 |niert !* ...Suspe|
0040 6e 73 65 20 61 63 63 6f-75 6e 74 20 5a 41 48 4c |nse acco unt ZAHL|
0050 5f 49 4e 54 45 52 49 4d-20 6e 6f 74 20 64 65 66 |_INTERIM  not def|
0060 69 6e 65 64 21 d1 28 00-00 00 44 61 73 20 65 69 |ined!Ñ(. ..Das ei|
0070 6e 67 65 67 65 62 65 6e-65 20 44 61 74 75 6d 20 |ngegeben e Datum |
0080 65 72 67 69 62 74 20 6b-65 69 6e 65 6e 20 53 69 |ergibt k einen Si|
0090 6e 6e 24 00 00 00 54 68-65 20 65 6e 74 65 72 65 |nn$...Th e entere|
00a0 64 20 64 61 74 65 20 64-6f 65 73 20 6e 6f 74 20 |d date d oes not |
00b0 6d 61 6b 65 20 73 65 6e-73 65 d1 09 00 00 00 44 |make sen seÑ....D|
00c0 61 74 61 20 62 61 73 65-09 00 00 00 44 61 74 61 |ata base ....Data|
00d0 20 62 61 73 65 d1 16 00-00 00 44 61 74 65 69 20 | baseÑ.. ..Datei |
00e0 25 20 77 75 72 64 65 20-67 65 6c 65 73 65 6e 2e |% wurde  gelesen.|
00f0 0c 00 00 00 46 69 6c 65-20 25 20 72 65 61 64 2e |....File  % read.|
0100 d1 1a 00 00 00 44 61 74-65 69 20 25 20 77 75 72 |Ñ....Dat ei % wur|
0110 64 65 20 67 65 73 63 68-72 69 65 62 65 6e 2e 0c |de gesch rieben..|
0120 00 00 00 46 69 6c 65 20-25 20 72 65 61 64 2e d1 |...File  % read.Ñ|
0130 24 00 00 00 44 61 74 65-69 20 3c 25 3e 20 6b 61 |$...Date i <%> ka|
0140 6e 6e 20 6e 69 63 68 74-20 67 65 6c 65 73 65 6e |nn nicht  gelesen|
0150 20 77 65 72 64 65 6e 2e-15 00 00 00 43 61 6e 6e | werden. ....Cann|
0160 6f 74 20 72 65 61 64 20-66 69 6c 65 20 3c 25 3e |ot read  file <%>|
0170 2e d1 28 00 00 00 44 61-74 65 69 20 3c 25 3e 20 |.Ñ(...Da tei <%> |
0180 6b 61 6e 6e 20 6e 69 63-68 74 20 67 65 73 63 68 |kann nic ht gesch|
0190 72 69 65 62 65 6e 20 77-65 72 64 65 6e 2e 16 00 |rieben w erden...|
01a0 00 00 43 61 6e 6e 6f 74-20 77 72 69 74 65 20 66 |..Cannot  write f|
01b0 69 6c 65 20 3c 25 3e 2e-d1 25 00 00 00 44 61 74 |ile <%>. Ñ%...Dat|
01c0 65 69 20 6d 69 74 20 6e-6f 74 77 65 6e 64 69 67 |ei mit n otwendig|
01d0 65 6d 20 41 75 66 62 61-75 20 61 6e 67 65 6c 65 |em Aufba u angele|
01e0 67 74 25 00 00 00 46 69-6c 65 20 77 69 74 68 20 |gt%...Fi le with |
01f0 6e 65 63 65 73 73 61 72-79 20 73 74 72 75 63 74 |necessar y struct|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ea0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a7770, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-75 72 65 20 63 72 65 61 |........ ure crea|
0010 74 65 64 d1 0d 00 00 00-44 61 74 65 69 20 77 c3 |tedÑ.... Datei wÃ|
0020 a4 68 6c 65 6e 0b 00 00-00 53 65 6c 65 63 74 20 |¤hlen... .Select |
0030 66 69 6c 65 d1 13 00 00-00 44 61 74 65 6e 62 65 |fileÑ... .Datenbe|
0040 72 65 69 74 73 74 65 6c-6c 75 6e 67 0b 00 00 00 |reitstel lung....|
0050 44 61 74 61 20 73 75 70-70 6c 79 d1 07 00 00 00 |Data sup plyÑ....|
0060 44 65 62 74 6f 72 73 07-00 00 00 44 65 62 74 6f |Debtors. ...Debto|
0070 72 73 d1 08 00 00 00 44-65 6c 69 76 65 72 79 08 |rsÑ....D elivery.|
0080 00 00 00 44 65 6c 69 76-65 72 79 d1 2b 00 00 00 |...Deliv eryÑ+...|
0090 44 65 72 20 31 2e 20 4b-6f 6d 6d 65 6e 74 61 72 |Der 1. K ommentar|
00a0 20 6b 61 6e 6e 20 6e 69-63 68 74 20 67 65 73 65 | kann ni cht gese|
00b0 74 7a 74 20 77 65 72 64-65 6e 21 17 00 00 00 43 |tzt werd en!....C|
00c0 61 6e 6e 6f 74 20 73 65-74 20 31 73 74 20 63 6f |annot se t 1st co|
00d0 6d 6d 65 6e 74 21 d1 2b-00 00 00 44 65 72 20 32 |mment!Ñ+ ...Der 2|
00e0 2e 20 4b 6f 6d 6d 65 6e-74 61 72 20 6b 61 6e 6e |. Kommen tar kann|
00f0 20 6e 69 63 68 74 20 67-65 73 65 74 7a 74 20 77 | nicht g esetzt w|
0100 65 72 64 65 6e 21 17 00-00 00 43 61 6e 6e 6f 74 |erden!.. ..Cannot|
0110 20 73 65 74 20 32 6e 64-20 63 6f 6d 6d 65 6e 74 | set 2nd  comment|
0120 21 d1 2b 00 00 00 44 65-72 20 33 2e 20 4b 6f 6d |!Ñ+...De r 3. Kom|
0130 6d 65 6e 74 61 72 20 6b-61 6e 6e 20 6e 69 63 68 |mentar k ann nich|
0140 74 20 67 65 73 65 74 7a-74 20 77 65 72 64 65 6e |t gesetz t werden|
0150 21 17 00 00 00 43 61 6e-6e 6f 74 20 73 65 74 20 |!....Can not set |
0160 33 72 64 20 63 6f 6d 6d-65 6e 74 21 d1 27 00 00 |3rd comm ent!Ñ'..|
0170 00 44 65 72 20 41 62 6c-61 75 66 3a 20 3c 25 2c |.Der Abl auf: <%,|
0180 25 2c 25 3e 20 69 73 74-20 6e 69 63 68 74 20 76 |%,%> ist  nicht v|
0190 6f 72 68 61 6e 64 65 6e-20 00 00 00 50 72 6f 63 |orhanden  ...Proc|
01a0 65 64 75 72 65 3a 20 3c-25 2c 25 2c 25 3e 20 6e |edure: < %,%,%> n|
01b0 6f 74 20 61 76 61 69 6c-61 62 6c 65 d1 1e 00 00 |ot avail ableÑ...|
01c0 00 44 65 72 20 41 72 74-69 6b 65 6c 20 25 20 65 |.Der Art ikel % e|
01d0 78 69 73 74 69 65 72 74-20 6e 69 63 68 74 21 19 |xistiert  nicht!.|
01e0 00 00 00 41 72 74 69 63-6c 65 20 25 20 64 6f 65 |...Artic le % doe|
01f0 73 20 6e 6f 74 20 65 78-69 73 74 21 d1 2d 00 00 |s not ex ist!Ñ-..|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12a6ee0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 44 65 72 20 41 72 74 |........ .Der Art|
0010 69 6b 65 6c 20 25 20 68-61 74 20 6b 65 69 6e 65 |ikel % h at keine|
0020 20 56 65 72 70 61 63 6b-75 6e 67 73 65 69 6e 68 | Verpack ungseinh|
0030 65 69 74 65 6e 21 21 00-00 00 41 72 74 69 63 6c |eiten!!. ..Articl|
0040 65 20 25 20 68 61 73 20-6e 6f 20 70 61 63 6b 61 |e % has  no packa|
0050 67 69 6e 67 20 75 6e 69-74 73 21 d1 12 00 00 00 |ging uni ts!Ñ....|
0060 44 65 72 20 41 72 74 69-6b 65 6c 20 66 65 68 6c |Der Arti kel fehl|
0070 74 21 10 00 00 00 41 72-74 69 63 6c 65 20 6d 69 |t!....Ar ticle mi|
0080 73 73 69 6e 67 21 d1 34-00 00 00 44 65 72 20 41 |ssing!Ñ4 ...Der A|
0090 75 66 62 61 75 20 64 65-72 20 45 72 66 6f 6c 67 |ufbau de r Erfolg|
00a0 73 72 65 63 68 6e 75 6e-67 20 69 73 74 20 6e 69 |srechnun g ist ni|
00b0 63 68 74 20 64 65 66 69-6e 69 65 72 74 20 21 2a |cht defi niert !*|
00c0 00 00 00 53 74 72 75 63-74 75 72 65 20 6f 66 20 |...Struc ture of |
00d0 69 6e 63 6f 6d 65 20 73-74 61 74 65 6d 65 6e 74 |income s tatement|
00e0 20 6e 6f 74 20 64 65 66-69 6e 65 64 21 d1 1f 00 | not def ined!Ñ..|
00f0 00 00 44 65 72 20 42 65-6e 75 74 7a 65 72 20 25 |..Der Be nutzer %|
0100 20 65 78 69 73 74 69 65-72 74 20 6e 69 63 68 74 | existie rt nicht|
0110 21 16 00 00 00 55 73 65-72 20 25 20 64 6f 65 73 |!....Use r % does|
0120 20 6e 6f 74 20 65 78 69-73 74 21 d1 42 00 00 00 | not exi st!ÑB...|
0130 44 65 72 20 42 65 75 74-65 6c 20 28 25 29 20 25 |Der Beut el (%) %|
0140 20 69 73 74 20 61 75 66-67 72 75 6e 64 20 64 65 | ist auf grund de|
0150 73 20 41 50 43 2f 50 54-2d 57 65 72 74 65 73 20 |s APC/PT -Wertes |
0160 6e 69 63 68 74 20 7a 75-67 65 6c 61 73 73 65 6e |nicht zu gelassen|
0170 20 21 3a 00 00 00 54 68-65 20 73 61 74 63 68 65 | !:...Th e satche|
0180 6c 20 28 25 29 20 25 20-69 73 20 6e 6f 74 20 61 |l (%) %  is not a|
0190 64 6d 69 74 74 65 64 20-64 75 65 20 74 6f 20 74 |dmitted  due to t|
01a0 68 65 20 41 50 43 2f 50-54 2d 76 61 6c 75 65 21 |he APC/P T-value!|
01b0 d1 1e 00 00 00 44 65 72-20 45 41 4e 31 33 20 25 |Ñ....Der  EAN13 %|
01c0 20 69 73 74 20 6e 69 63-68 74 20 62 65 6b 61 6e | ist nic ht bekan|
01d0 6e 74 21 10 00 00 00 45-41 4e 31 33 20 25 20 75 |nt!....E AN13 % u|
01e0 6e 6b 6e 6f 77 6e 21 d1-2f 00 00 00 44 65 72 20 |nknown!Ñ /...Der |
01f0 45 41 4e 31 33 20 25 20-6b 6f 6d 6d 74 20 61 6c |EAN13 %  kommt al|

token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14cd1e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14c2410, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 20 41 72 74 4e 72 45 |........ s ArtNrE|
0010 72 73 61 74 7a 20 6d 65-68 72 66 61 63 68 20 76 |rsatz me hrfach v|
0020 6f 72 21 2c 00 00 00 45-41 4e 31 33 20 25 20 68 |or!,...E AN13 % h|
0030 61 73 20 73 65 76 65 72-61 6c 20 6f 63 63 75 72 |as sever al occur|
0040 61 6e 63 65 73 20 61 73-20 52 65 70 6c 41 72 74 |ances as  ReplArt|
0050 4e 6f 21 d1 35 00 00 00-44 65 72 20 45 41 4e 31 |No!Ñ5... Der EAN1|
0060 33 20 25 20 6b 6f 6d 6d-74 20 69 6e 20 41 72 74 |3 % komm t in Art|
0070 69 6b 65 6c 56 50 45 69-6e 68 65 69 74 65 6e 20 |ikelVPEi nheiten |
0080 6d 65 68 72 66 61 63 68-20 76 6f 72 21 2e 00 00 |mehrfach  vor!...|
0090 00 45 41 4e 31 33 20 25-20 6f 63 63 75 72 73 20 |.EAN13 %  occurs |
00a0 73 65 76 61 72 61 6c 20-74 69 6d 65 73 20 69 6e |sevaral  times in|
00b0 20 41 72 74 69 63 6c 65-50 55 6e 69 74 73 21 d1 | Article PUnits!Ñ|
00c0 20 00 00 00 44 65 72 20-45 69 6e 74 72 61 67 20 | ...Der  Eintrag |
00d0 66 c3 bc 72 20 25 20 69-6e 20 25 20 69 73 74 20 |für % i n % ist |
00e0 3c 25 3e 2e 17 00 00 00-45 6e 74 72 79 20 66 6f |<%>..... Entry fo|
00f0 20 25 20 69 6e 20 25 20-69 73 20 3c 25 3e 2e d1 | % in %  is <%>.Ñ|
0100 2a 00 00 00 44 65 72 20-48 69 6c 66 65 2d 53 65 |*...Der  Hilfe-Se|
0110 72 76 65 72 20 77 75 72-64 65 20 6e 69 63 68 74 |rver wur de nicht|
0120 20 65 69 6e 67 65 72 69-63 68 74 65 74 2e 2a 00 | eingeri chtet.*.|
0130 00 00 54 68 65 20 68 65-6c 70 20 73 65 72 76 65 |..The he lp serve|
0140 72 20 68 61 73 20 6e 6f-74 20 62 65 65 6e 20 63 |r has no t been c|
0150 6f 6e 66 69 67 75 72 61-74 65 64 2e d1 24 00 00 |onfigura ted.Ñ$..|
0160 00 44 65 72 20 4b 54 20-54 79 70 20 25 20 69 73 |.Der KT  Typ % is|
0170 74 20 6e 69 63 68 74 20-75 6e 74 65 72 73 74 c3 |t nicht  unterstÃ|
0180 bc 74 7a 74 21 1f 00 00-00 54 68 65 20 43 55 20 |¼tzt!... .The CU |
0190 74 79 70 65 20 25 20 69-73 20 6e 6f 74 20 73 75 |type % i s not su|
01a0 70 70 6f 72 74 65 64 21-d1 28 00 00 00 44 65 72 |pported! Ñ(...Der|
01b0 20 4b 6f 6d 6d 65 6e 74-61 72 20 6b 61 6e 6e 20 | Komment ar kann |
01c0 6e 69 63 68 74 20 67 65-73 65 74 7a 74 20 77 65 |nicht ge setzt we|
01d0 72 64 65 6e 21 13 00 00-00 43 61 6e 6e 6f 74 20 |rden!... .Cannot |
01e0 73 65 74 20 63 6f 6d 6d-65 6e 74 21 d1 33 00 00 |set comm ent!Ñ3..|
01f0 00 44 65 72 20 4b 6f 73-74 65 6e 70 6c 61 74 7a |.Der Kos tenplatz|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 3e 25 3c 2e 3e 25 3c |........  >%<.>%<|
0010 20 69 73 74 20 69 6e 20-3e 25 3c 20 6e 69 63 68 | ist in  >%< nich|
0020 74 20 61 6e 67 65 6c 65-67 74 20 21 2d 00 00 00 |t angele gt !-...|
0030 43 6f 73 74 20 70 6c 61-63 65 20 3e 25 3c 2e 3e |Cost pla ce >%<.>|
0040 25 3c 20 69 73 20 6e 6f-74 20 65 73 74 61 62 6c |%< is no t establ|
0050 69 73 68 65 64 20 69 6e-20 3e 25 3c 21 d1 45 00 |ished in  >%<!ÑE.|
0060 00 00 44 65 72 20 4b 75-6e 64 65 20 25 20 68 61 |..Der Ku nde % ha|
0070 74 20 6b 65 69 6e 65 6e-20 45 69 6e 74 72 61 67 |t keinen  Eintrag|
0080 20 69 6e 20 41 74 74 72-69 62 75 74 20 3e 25 3c | in Attr ibut >%<|
0090 2e 20 57 6f 6c 6c 65 6e-20 53 69 65 20 65 72 66 |. Wollen  Sie erf|
00a0 61 73 73 65 6e 20 3f 34-00 00 00 43 75 73 74 6f |assen ?4 ...Custo|
00b0 6d 65 72 20 25 20 68 61-73 20 6e 6f 20 65 6e 74 |mer % ha s no ent|
00c0 72 79 20 66 6f 72 20 61-74 74 72 69 62 75 74 65 |ry for a ttribute|
00d0 20 3e 25 3c 2e 20 52 65-67 69 73 74 65 72 3f d1 | >%<. Re gister?Ñ|
00e0 5a 00 00 00 44 65 72 20-4b 75 6e 64 65 20 25 20 |Z...Der  Kunde % |
00f0 69 73 74 20 6e 69 63 68-74 20 61 6c 73 20 46 69 |ist nich t als Fi|
0100 72 6d 61 20 61 6e 67 65-6c 65 67 74 2e 20 44 61 |rma ange legt. Da|
0110 6d 69 74 20 73 69 6e 64-20 61 75 63 68 20 6b 65 |mit sind  auch ke|
0120 69 6e 65 20 46 69 72 6d-65 6e 61 74 74 72 69 62 |ine Firm enattrib|
0130 75 74 65 20 65 72 66 61-73 73 62 61 72 21 5a 00 |ute erfa ssbar!Z.|
0140 00 00 43 75 73 74 6f 6d-65 72 20 25 20 69 73 20 |..Custom er % is |
0150 6e 6f 74 20 72 65 67 69-73 74 65 72 65 64 20 61 |not regi stered a|
0160 73 20 61 20 63 6f 6d 70-61 6e 79 2e 20 20 54 68 |s a comp any.  Th|
0170 75 73 2c 20 63 6f 6d 70-61 6e 79 20 61 74 74 72 |us, comp any attr|
0180 69 62 75 74 65 73 20 63-61 6e 6e 6f 74 20 62 65 |ibutes c annot be|
0190 20 72 65 67 69 73 74 65-72 65 64 21 d1 53 00 00 | registe red!ÑS..|
01a0 00 44 65 72 20 4b 75 6e-64 65 20 68 61 74 20 5a |.Der Kun de hat Z|
01b0 61 68 6c 61 72 74 20 25-20 75 6e 64 20 65 73 20 |ahlart %  und es |
01c0 6b 6f 6e 6e 74 65 20 6b-65 69 6e 65 20 61 6b 74 |konnte k eine akt|
01d0 69 76 65 20 42 61 6e 6b-76 65 72 62 69 6e 64 75 |ive Bank verbindu|
01e0 6e 67 20 65 72 6d 69 74-74 65 6c 74 20 77 65 72 |ng ermit telt wer|
01f0 64 65 6e 21 43 00 00 00-43 75 73 74 6f 6d 65 72 |den!C... Customer|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddbc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddd60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1313ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddf30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 83 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-27 73 20 6d 65 74 68 6f |........ 's metho|
0010 64 20 6f 66 20 70 61 79-6d 65 6e 74 20 69 73 20 |d of pay ment is |
0020 25 20 61 6e 64 20 6e 6f-20 61 63 74 69 76 65 20 |% and no  active |
0030 62 61 6e 6b 20 61 63 63-6f 75 6e 74 20 66 6f 75 |bank acc ount fou|
0040 6e 64 21 d1 98 00 00 00-44 65 72 20 4b 75 6e 64 |nd!Ñ.... Der Kund|
0050 65 20 68 61 74 20 73 65-69 6e 20 4b 72 65 64 69 |e hat se in Kredi|
0060 74 6c 69 6d 69 74 20 65-72 72 65 69 63 68 74 2e |tlimit e rreicht.|
0070 20 4f 68 6e 65 20 41 6e-68 65 62 75 6e 67 20 64 | Ohne An hebung d|
0080 65 73 20 4b 72 65 64 69-74 6c 69 6d 69 74 73 20 |es Kredi tlimits |
0090 6b c3 b6 6e 6e 65 6e 20-6b 65 69 6e 65 20 77 65 |können  keine we|
00a0 69 74 65 72 74 65 6e 20-52 65 63 68 6e 75 6e 67 |iterten  Rechnung|
00b0 65 6e 2f 41 75 66 74 72-c3 a4 67 65 20 66 c3 bc |en/Auftr äge fü|
00c0 72 20 25 20 61 6e 67 65-6c 65 67 74 2f 66 72 65 |r % ange legt/fre|
00d0 69 67 65 67 65 62 65 6e-20 77 65 72 64 65 6e 2e |igegeben  werden.|
00e0 78 00 00 00 43 75 73 74-6f 6d 65 72 20 68 61 73 |x...Cust omer has|
00f0 20 72 65 61 63 68 65 64-20 68 69 73 20 63 72 65 | reached  his cre|
0100 64 69 74 20 6c 69 6d 69-74 2e 20 49 66 20 6c 69 |dit limi t. If li|
0110 6d 69 74 20 69 73 20 6e-6f 74 20 72 61 69 73 65 |mit is n ot raise|
0120 64 2c 20 6e 6f 20 66 75-72 74 68 65 72 20 69 6e |d, no fu rther in|
0130 76 6f 69 63 65 73 2f 6f-72 64 65 72 73 20 66 6f |voices/o rders fo|
0140 72 20 25 20 63 61 6e 20-62 65 20 63 72 65 61 74 |r % can  be creat|
0150 65 64 2f 61 70 70 72 6f-76 65 64 2e d1 99 00 00 |ed/appro ved.Ñ...|
0160 00 44 65 72 20 4b 75 6e-64 65 20 68 61 74 20 73 |.Der Kun de hat s|
0170 65 69 6e 20 4b 72 65 64-69 74 6c 69 6d 69 74 31 |ein Kred itlimit1|
0180 20 65 72 72 65 69 63 68-74 2e 20 4f 68 6e 65 20 | erreich t. Ohne |
0190 41 6e 68 65 62 75 6e 67-20 64 65 73 20 4b 72 65 |Anhebung  des Kre|
01a0 64 69 74 6c 69 6d 69 74-73 20 6b c3 b6 6e 6e 65 |ditlimit s könne|
01b0 6e 20 6b 65 69 6e 65 20-77 65 69 74 65 72 74 65 |n keine  weiterte|
01c0 6e 20 52 65 63 68 6e 75-6e 67 65 6e 2f 41 75 66 |n Rechnu ngen/Auf|
01d0 74 72 c3 a4 67 65 20 66-c3 bc 72 20 25 20 61 6e |träge f ür % an|
01e0 67 65 6c 65 67 74 2f 66-72 65 69 67 65 67 65 62 |gelegt/f reigegeb|
01f0 65 6e 20 77 65 72 64 65-6e 2e 7a 00 00 00 43 75 |en werde n.z...Cu|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 83
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddf30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (83 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 152 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 120 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 152
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (152 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 120
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de360, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (120 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 153 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 122 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 74 6f 6d 65 72 20 68 |........ stomer h|
0010 61 73 20 72 65 61 63 68-65 64 20 68 69 73 20 63 |as reach ed his c|
0020 72 65 64 69 74 20 6c 69-6d 69 74 20 31 2e 20 49 |redit li mit 1. I|
0030 66 20 6c 69 6d 69 74 20-69 73 20 6e 6f 74 20 72 |f limit  is not r|
0040 61 69 73 65 64 2c 20 6e-6f 20 66 75 72 74 68 65 |aised, n o furthe|
0050 72 20 69 6e 76 6f 69 63-65 73 2f 6f 72 64 65 72 |r invoic es/order|
0060 73 20 66 6f 72 20 25 20-63 61 6e 20 62 65 20 63 |s for %  can be c|
0070 72 65 61 74 65 64 2f 61-70 70 72 6f 76 65 64 2e |reated/a pproved.|
0080 d1 85 00 00 00 44 65 72-20 4b 75 6e 64 65 20 68 |Ñ....Der  Kunde h|
0090 61 74 20 73 65 69 6e 65-20 4b 72 65 64 69 74 6c |at seine  Kreditl|
00a0 69 6d 69 74 65 20 65 72-72 65 69 63 68 74 2e 20 |imite er reicht. |
00b0 4f 68 6e 65 20 41 6e 68-65 62 75 6e 67 20 64 65 |Ohne Anh ebung de|
00c0 72 20 4b 72 65 64 69 74-6c 69 6d 69 74 65 20 6b |r Kredit limite k|
00d0 c3 b6 6e 6e 65 6e 20 6b-65 69 6e 65 20 77 65 69 |önnen k eine wei|
00e0 74 65 72 65 6e 20 41 75-66 74 72 c3 a4 67 65 20 |teren Au fträge |
00f0 66 c3 bc 72 20 25 20 66-72 65 69 67 65 67 65 62 |für % f reigegeb|
0100 65 6e 20 77 65 72 64 65-6e 2e 67 00 00 00 43 75 |en werde n.g...Cu|
0110 73 74 6f 6d 65 72 20 68-61 73 20 72 65 61 63 68 |stomer h as reach|
0120 65 64 20 68 69 73 20 63-72 65 64 69 74 20 6c 69 |ed his c redit li|
0130 6d 69 74 2e 20 49 66 20-6c 69 6d 69 74 20 69 73 |mit. If  limit is|
0140 20 6e 6f 74 20 72 61 69-73 65 64 2c 20 6e 6f 20 | not rai sed, no |
0150 66 75 72 74 68 65 72 20-6f 72 64 65 72 73 20 63 |further  orders c|
0160 61 6e 20 62 65 20 61 70-70 72 6f 76 65 64 20 66 |an be ap proved f|
0170 6f 72 20 25 2e d1 86 00-00 00 44 65 72 20 4b 75 |or %.Ñ.. ..Der Ku|
0180 6e 64 65 20 68 61 74 20-73 65 69 6e 65 20 4b 72 |nde hat  seine Kr|
0190 65 64 69 74 6c 69 6d 69-74 65 20 65 72 72 65 69 |editlimi te errei|
01a0 63 68 74 2e 20 4f 68 6e-65 20 41 6e 68 65 62 75 |cht. Ohn e Anhebu|
01b0 6e 67 20 64 65 72 20 4b-72 65 64 69 74 6c 69 6d |ng der K reditlim|
01c0 69 74 65 20 6b c3 b6 6e-6e 65 6e 20 6b 65 69 6e |ite kön nen kein|
01d0 65 20 77 65 69 74 65 72-74 65 6e 20 41 75 66 74 |e weiter ten Auft|
01e0 72 c3 a4 67 65 20 66 c3-bc 72 20 25 20 66 72 65 |räge fà ¼r % fre|
01f0 69 67 65 67 65 62 65 6e-20 77 65 72 64 65 6e 2e |igegeben  werden.|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 153
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (153 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 122
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (122 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 133 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 103 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 133
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (133 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 103
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (103 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 134 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-67 00 00 00 43 75 73 74 |........ g...Cust|
0010 6f 6d 65 72 20 68 61 73-20 72 65 61 63 68 65 64 |omer has  reached|
0020 20 68 69 73 20 63 72 65-64 69 74 20 6c 69 6d 69 | his cre dit limi|
0030 74 2e 20 49 66 20 6c 69-6d 69 74 20 69 73 20 6e |t. If li mit is n|
0040 6f 74 20 72 61 69 73 65-64 2c 20 6e 6f 20 66 75 |ot raise d, no fu|
0050 72 74 68 65 72 20 6f 72-64 65 72 73 20 66 6f 72 |rther or ders for|
0060 20 25 20 63 61 6e 20 62-65 20 61 70 70 72 6f 76 | % can b e approv|
0070 65 64 2e d1 63 00 00 00-44 65 72 20 4b 75 6e 64 |ed.Ñc... Der Kund|
0080 65 20 77 c3 bc 72 64 65-20 64 61 73 20 4b 72 65 |e würde  das Kre|
0090 64 69 74 6c 69 6d 69 74-32 20 c3 bc 62 65 72 73 |ditlimit 2 übers|
00a0 63 68 72 65 69 74 65 6e-2e 20 4d c3 b6 63 68 74 |chreiten . Möcht|
00b0 65 6e 20 53 69 65 20 64-65 6e 20 64 69 65 20 52 |en Sie d en die R|
00c0 65 63 68 6e 75 6e 67 20-74 72 6f 74 7a 64 65 6d |echnung  trotzdem|
00d0 20 65 72 66 61 73 73 65-6e 20 3f 3c 00 00 00 43 | erfasse n ?<...C|
00e0 75 73 74 6f 6d 65 72 20-77 6f 75 6c 64 20 65 78 |ustomer  would ex|
00f0 63 65 65 64 20 63 72 65-64 69 74 20 6c 69 6d 69 |ceed cre dit limi|
0100 74 20 32 2e 20 52 65 67-69 73 74 65 72 20 6f 72 |t 2. Reg ister or|
0110 64 65 72 20 61 6e 79 77-61 79 3f d1 62 00 00 00 |der anyw ay?Ñb...|
0120 44 65 72 20 4b 75 6e 64-65 20 77 c3 bc 72 64 65 |Der Kund e würde|
0130 20 64 61 73 20 4b 72 65-64 69 74 6c 69 6d 69 74 | das Kre ditlimit|
0140 32 20 c3 bc 62 65 72 73-63 68 72 65 69 74 65 6e |2 übers chreiten|
0150 2e 20 4d c3 b6 63 68 74-65 6e 20 53 69 65 20 64 |. Möcht en Sie d|
0160 65 6e 20 64 69 65 20 52-65 63 68 6e 75 6e 67 20 |en die R echnung |
0170 74 72 6f 74 7a 64 65 6d-20 65 72 66 61 73 73 65 |trotzdem  erfasse|
0180 6e 3f 3c 00 00 00 43 75-73 74 6f 6d 65 72 20 77 |n?<...Cu stomer w|
0190 6f 75 6c 64 20 65 78 63-65 65 64 20 63 72 65 64 |ould exc eed cred|
01a0 69 74 20 6c 69 6d 69 74-20 32 2e 20 52 65 67 69 |it limit  2. Regi|
01b0 73 74 65 72 20 6f 72 64-65 72 20 61 6e 79 77 61 |ster ord er anywa|
01c0 79 3f d1 65 00 00 00 44-65 72 20 4b 75 6e 64 65 |y?Ñe...D er Kunde|
01d0 20 77 c3 bc 72 64 65 20-64 69 65 20 4b 72 65 64 | würde  die Kred|
01e0 69 74 6c 69 6d 69 74 65-32 20 c3 bc 62 65 72 73 |itlimite 2 übers|
01f0 63 68 72 65 69 74 74 65-6e 2e 20 4d c3 b6 63 68 |chreitte n. Möch|

token.c:2111:tds_get_data(): wire column size is 103 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 134
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (134 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 103
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (103 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 99 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 99
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (99 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 98 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 98
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (98 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 101 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 65 6e 20 53 69 65 20 |........ ten Sie |
0010 64 65 6e 20 64 65 6e 20-41 75 66 74 72 61 67 20 |den den  Auftrag |
0020 74 72 6f 74 7a 64 65 6d-20 66 72 65 69 67 65 62 |trotzdem  freigeb|
0030 65 6e 20 3f 3b 00 00 00-43 75 73 74 6f 6d 65 72 |en ?;... Customer|
0040 20 77 6f 75 6c 64 20 65-78 63 65 65 64 20 63 72 | would e xceed cr|
0050 65 64 69 74 20 6c 69 6d-69 74 20 32 2e 20 41 70 |edit lim it 2. Ap|
0060 70 72 6f 76 65 20 6f 72-64 65 72 20 61 6e 79 77 |prove or der anyw|
0070 61 79 3f d1 64 00 00 00-44 65 72 20 4b 75 6e 64 |ay?Ñd... Der Kund|
0080 65 20 77 c3 bc 72 64 65-20 64 69 65 20 4b 72 65 |e würde  die Kre|
0090 64 69 74 6c 69 6d 69 74-65 32 20 c3 bc 62 65 72 |ditlimit e2 über|
00a0 73 63 68 72 65 69 74 74-65 6e 2e 20 4d c3 b6 63 |schreitt en. Möc|
00b0 68 74 65 6e 20 53 69 65-20 64 65 6e 20 64 65 6e |hten Sie  den den|
00c0 20 41 75 66 74 72 61 67-20 74 72 6f 74 7a 64 65 | Auftrag  trotzde|
00d0 6d 20 66 72 65 69 67 65-62 65 6e 3f 3b 00 00 00 |m freige ben?;...|
00e0 43 75 73 74 6f 6d 65 72-20 77 6f 75 6c 64 20 65 |Customer  would e|
00f0 78 63 65 65 64 20 63 72-65 64 69 74 20 6c 69 6d |xceed cr edit lim|
0100 69 74 20 32 2e 20 41 70-70 72 6f 76 65 20 6f 72 |it 2. Ap prove or|
0110 64 65 72 20 61 6e 79 77-61 79 3f d1 9a 00 00 00 |der anyw ay?Ñ....|
0120 44 65 72 20 4b 75 6e 64-65 20 77 c3 bc 72 64 65 |Der Kund e würde|
0130 20 6d 69 74 20 64 69 65-73 65 72 20 50 6f 73 69 | mit die ser Posi|
0140 74 69 6f 6e 20 64 61 73-20 4b 72 65 64 69 74 6c |tion das  Kreditl|
0150 69 6d 69 74 20 c3 bc 62-65 72 73 63 68 72 65 69 |imit üb erschrei|
0160 74 65 6e 2e 20 4f 68 6e-65 20 41 6e 68 65 62 75 |ten. Ohn e Anhebu|
0170 6e 67 20 64 65 73 20 4b-72 65 64 69 74 6c 69 6d |ng des K reditlim|
0180 69 74 73 20 6b 61 6e 6e-20 64 69 65 73 65 20 50 |its kann  diese P|
0190 6f 73 69 74 69 6f 6e 20-6e 69 63 68 74 20 61 6e |osition  nicht an|
01a0 67 65 6c 65 67 74 2f 66-72 65 69 67 65 67 65 62 |gelegt/f reigegeb|
01b0 65 6e 20 77 65 72 64 65-6e 2e 7b 00 00 00 54 68 |en werde n.{...Th|
01c0 65 20 63 75 73 74 6f 6d-65 72 20 77 6f 75 6c 64 |e custom er would|
01d0 20 65 78 63 65 65 64 20-68 69 73 20 63 72 65 64 | exceed  his cred|
01e0 69 74 20 6c 69 6d 69 74-20 77 69 74 68 20 74 68 |it limit  with th|
01f0 69 73 20 69 74 65 6d 2e-20 49 66 20 6c 69 6d 69 |is item.  If limi|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 101
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (101 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 100 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 100
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de5f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (100 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 154 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 123 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 20 69 73 20 6e 6f 74 |........ t is not|
0010 20 72 61 69 73 65 64 2c-20 6e 6f 20 66 75 72 74 | raised,  no furt|
0020 68 65 72 20 69 74 65 6d-20 63 61 6e 20 62 65 20 |her item  can be |
0030 63 72 65 61 74 65 64 2f-61 70 70 72 6f 76 65 64 |created/ approved|
0040 2e d1 9b 00 00 00 44 65-72 20 4b 75 6e 64 65 20 |.Ñ....De r Kunde |
0050 77 c3 bc 72 64 65 20 6d-69 74 20 64 69 65 73 65 |würde m it diese|
0060 72 20 50 6f 73 69 74 69-6f 6e 20 64 61 73 20 4b |r Positi on das K|
0070 72 65 64 69 74 6c 69 6d-69 74 31 20 c3 bc 62 65 |reditlim it1 übe|
0080 72 73 63 68 72 65 69 74-65 6e 2e 20 4f 68 6e 65 |rschreit en. Ohne|
0090 20 41 6e 68 65 62 75 6e-67 20 64 65 73 20 4b 72 | Anhebun g des Kr|
00a0 65 64 69 74 6c 69 6d 69-74 73 20 6b 61 6e 6e 20 |editlimi ts kann |
00b0 64 69 65 73 65 20 50 6f-73 69 74 69 6f 6e 20 6e |diese Po sition n|
00c0 69 63 68 74 20 61 6e 67-65 6c 65 67 74 2f 66 72 |icht ang elegt/fr|
00d0 65 69 67 65 67 65 62 65-6e 20 77 65 72 64 65 6e |eigegebe n werden|
00e0 2e 81 00 00 00 54 68 65-20 63 75 73 74 6f 6d 65 |.....The  custome|
00f0 72 20 77 6f 75 6c 64 20-65 78 63 65 65 64 20 68 |r would  exceed h|
0100 69 73 20 63 72 65 64 69-74 20 6c 69 6d 69 74 20 |is credi t limit |
0110 31 20 77 69 74 68 20 74-68 69 73 20 69 74 65 6d |1 with t his item|
0120 2e 20 49 66 20 74 68 65-20 6c 69 6d 69 74 20 69 |. If the  limit i|
0130 73 20 6e 6f 74 20 72 61-69 73 65 64 2c 20 6e 6f |s not ra ised, no|
0140 20 66 75 72 74 68 65 72-20 69 74 65 6d 20 63 61 | further  item ca|
0150 6e 20 62 65 20 63 72 65-61 74 65 64 2f 61 70 70 |n be cre ated/app|
0160 72 6f 76 65 64 2e d1 1f-00 00 00 44 65 72 20 4b |roved.Ñ. ...Der K|
0170 75 72 73 20 64 61 72 66-20 6e 69 63 68 74 20 6c |urs darf  nicht l|
0180 65 65 72 20 73 65 69 6e-20 21 16 00 00 00 52 61 |eer sein  !....Ra|
0190 74 65 20 6d 61 79 20 6e-6f 74 20 62 65 20 65 6d |te may n ot be em|
01a0 70 74 79 21 d1 2b 00 00-00 44 65 72 20 4c 61 67 |pty!Ñ+.. .Der Lag|
01b0 65 72 6f 72 74 20 6b 6f-6e 6e 74 65 20 6e 69 63 |erort ko nnte nic|
01c0 68 74 20 65 72 6d 69 74-74 65 6c 74 20 77 65 72 |ht ermit telt wer|
01d0 64 65 6e 21 1b 00 00 00-53 74 6f 72 61 67 65 20 |den!.... Storage |
01e0 6c 6f 63 61 74 69 6f 6e-20 6e 6f 74 20 66 6f 75 |location  not fou|
01f0 6e 64 21 d1 2c 00 00 00-44 65 72 20 4c 69 65 66 |nd!Ñ,... Der Lief|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 154
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (154 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 123
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (123 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 155 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 129 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 155
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (155 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 129
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (129 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 72 61 6e 74 20 6b 6f |........ erant ko|
0010 6e 6e 74 65 20 6e 69 63-68 74 20 65 72 6d 69 74 |nnte nic ht ermit|
0020 74 65 6c 74 20 77 65 72-64 65 6e 21 21 00 00 00 |telt wer den!!...|
0030 53 75 70 70 6c 69 65 72-20 63 6f 75 6c 64 20 6e |Supplier  could n|
0040 6f 74 20 62 65 20 64 65-74 65 72 6d 69 6e 65 64 |ot be de termined|
0050 21 d1 3a 00 00 00 44 65-72 20 4d 61 6e 64 61 6e |!Ñ:...De r Mandan|
0060 74 20 25 20 69 73 74 20-6e 69 63 68 74 20 69 6e |t % ist  nicht in|
0070 20 64 65 72 20 4d 61 6e-64 61 6e 74 65 6e 6c 69 | der Man dantenli|
0080 73 74 65 20 65 69 6e 67-65 74 72 61 67 65 6e 21 |ste eing etragen!|
0090 2d 00 00 00 4e 6f 20 65-6e 74 72 79 20 66 6f 72 |-...No e ntry for|
00a0 20 6d 61 6e 64 61 74 6f-72 20 25 20 69 6e 20 6c | mandato r % in l|
00b0 69 73 74 20 6f 66 20 6d-61 6e 64 61 74 6f 72 73 |ist of m andators|
00c0 21 d1 3b 00 00 00 44 65-72 20 4d 61 6e 64 61 6e |!Ñ;...De r Mandan|
00d0 74 20 25 20 77 75 72 64-65 20 77 65 67 65 6e 20 |t % wurd e wegen |
00e0 62 65 73 6f 6e 64 65 72-65 72 20 56 6f 72 6b 6f |besonder er Vorko|
00f0 6d 6d 6e 69 73 73 65 20-67 65 73 70 65 72 72 74 |mmnisse  gesperrt|
0100 21 36 00 00 00 4d 61 6e-64 61 74 6f 72 20 25 20 |!6...Man dator % |
0110 68 61 73 20 62 65 65 6e-20 62 6c 6f 63 6b 65 64 |has been  blocked|
0120 20 64 75 65 20 74 6f 20-73 70 65 63 69 61 6c 20 | due to  special |
0130 6f 63 63 75 72 65 6e 63-65 73 21 d1 2f 00 00 00 |occurenc es!Ñ/...|
0140 44 65 72 20 4d 61 6e 64-61 6e 74 20 3e 25 3c 20 |Der Mand ant >%< |
0150 65 78 69 73 74 69 65 72-74 20 6e 69 63 68 74 20 |existier t nicht |
0160 61 75 66 20 64 65 6d 20-53 65 72 76 65 72 21 2a |auf dem  Server!*|
0170 00 00 00 4d 61 6e 64 61-74 6f 72 20 3e 25 3c 20 |...Manda tor >%< |
0180 64 6f 65 73 20 6e 6f 74-20 65 78 69 73 74 20 6f |does not  exist o|
0190 6e 20 74 68 65 20 73 65-72 76 65 72 21 d1 21 00 |n the se rver!Ñ!.|
01a0 00 00 44 65 72 20 4d 61-6e 64 61 6e 74 20 3e 25 |..Der Ma ndant >%|
01b0 3c 20 69 73 72 20 67 65-73 70 65 72 72 74 20 28 |< isr ge sperrt (|
01c0 25 29 21 1c 00 00 00 4d-61 6e 64 61 74 6f 72 20 |%)!....M andator |
01d0 3e 25 3c 20 69 73 20 62-6c 6f 63 6b 65 64 20 2f |>%< is b locked /|
01e0 25 29 21 d1 4a 00 00 00-44 65 72 20 4d 61 6e 64 |%)!ÑJ... Der Mand|
01f0 61 6e 74 20 69 73 74 20-6e 69 63 68 74 20 76 6f |ant ist  nicht vo|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14de2c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1322d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 74 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 68 61 6e 64 65 6e 2e |........ rhanden.|
0010 20 4b 6f 6e 74 61 6b 74-65 6e 20 53 69 65 20 75 | Kontakt en Sie u|
0020 6e 76 65 72 7a c3 bc 67-6c 69 63 68 20 64 65 6e |nverzüg lich den|
0030 20 53 75 70 70 6f 72 74-20 21 3b 00 00 00 4d 61 | Support  !;...Ma|
0040 6e 64 61 74 6f 72 20 6e-6f 74 20 61 76 61 69 6c |ndator n ot avail|
0050 61 62 6c 65 2e 20 50 6c-65 61 73 65 20 63 6f 6e |able. Pl ease con|
0060 74 61 63 74 20 73 75 70-70 6f 72 74 20 69 6d 6d |tact sup port imm|
0070 65 64 69 61 74 65 6c 79-21 d1 22 00 00 00 44 65 |ediately !Ñ"...De|
0080 72 20 4d 61 6e 64 61 6e-74 20 6d 75 73 73 20 61 |r Mandan t muss a|
0090 6e 67 65 67 65 62 65 6e-20 77 65 72 64 65 6e 21 |ngegeben  werden!|
00a0 1b 00 00 00 4d 61 6e 64-61 74 6f 72 20 6d 75 73 |....Mand ator mus|
00b0 74 20 62 65 20 69 6e 64-69 63 61 74 65 64 21 d1 |t be ind icated!Ñ|
00c0 2c 00 00 00 44 65 72 20-4d 61 6e 64 61 6e 74 20 |,...Der  Mandant |
00d0 77 75 72 64 65 20 7a 77-69 73 63 68 65 6e 7a 65 |wurde zw ischenze|
00e0 69 74 6c 69 63 68 20 67-65 73 70 65 72 72 74 21 |itlich g esperrt!|
00f0 2a 00 00 00 4d 61 6e 64-61 74 6f 72 20 68 61 73 |*...Mand ator has|
0100 20 62 65 65 6e 20 62 6c-6f 63 6b 65 64 20 69 6e | been bl ocked in|
0110 20 74 68 65 20 6d 65 61-6e 74 69 6d 65 21 d1 33 | the mea ntime!Ñ3|
0120 00 00 00 44 65 72 20 50-61 6b 65 74 4b 75 6e 64 |...Der P aketKund|
0130 65 6e 4e 75 6d 6d 65 72-20 66 65 68 6c 74 20 69 |enNummer  fehlt i|
0140 6e 20 56 65 72 73 61 6e-64 62 65 64 69 6e 67 75 |n Versan dbedingu|
0150 6e 67 20 3c 25 3e 39 00-00 00 50 61 63 6b 61 67 |ng <%>9. ..Packag|
0160 65 20 63 75 73 74 6f 6d-65 72 20 6e 75 6d 62 65 |e custom er numbe|
0170 72 20 6d 69 73 73 69 6e-67 20 69 6e 20 73 68 69 |r missin g in shi|
0180 70 70 69 6e 67 20 63 6f-6e 64 69 74 69 6f 6e 20 |pping co ndition |
0190 3c 25 3e d1 37 00 00 00-44 65 72 20 50 66 61 64 |<%>Ñ7... Der Pfad|
01a0 6e 61 6d 65 20 3e 25 3c-20 65 6e 74 68 c3 a4 6c |name >%<  enthäl|
01b0 74 20 75 6e 65 72 6c 61-75 62 74 65 72 77 65 69 |t unerla ubterwei|
01c0 73 65 20 4c 65 65 72 7a-65 69 63 68 65 6e 21 26 |se Leerz eichen!&|
01d0 00 00 00 50 61 74 68 20-6e 61 6d 65 20 3e 25 3c |...Path  name >%<|
01e0 20 63 6f 6e 74 61 69 6e-73 20 69 6e 76 61 6c 69 | contain s invali|
01f0 64 20 73 70 61 63 65 73-21 d1 2c 00 00 00 44 65 |d spaces !Ñ,...De|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 74
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (74 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 20 52 61 62 61 74 74 |........ r Rabatt|
0010 73 63 68 6c c3 bc 73 73-65 6c 20 3e 25 3c 20 69 |schlüss el >%< i|
0020 73 74 20 6e 69 63 68 74-20 62 65 6b 61 6e 6e 74 |st nicht  bekannt|
0030 20 21 19 00 00 00 44 69-73 63 6f 75 6e 74 20 6b | !....Di scount k|
0040 65 79 20 3e 25 3c 20 75-6e 6b 6e 6f 77 6e 21 d1 |ey >%< u nknown!Ñ|
0050 22 00 00 00 44 65 72 20-52 65 63 68 74 65 6d 6f |"...Der  Rechtemo|
0060 64 75 73 20 77 75 72 64-65 20 64 65 61 6b 74 69 |dus wurd e deakti|
0070 76 69 65 72 74 2e 20 00-00 00 52 69 67 68 74 20 |viert. . ..Right |
0080 6d 6f 64 65 20 68 61 73-20 62 65 65 6e 20 64 65 |mode has  been de|
0090 61 63 74 69 76 61 74 65-64 2e d1 3f 00 00 00 44 |activate d.Ñ?...D|
00a0 65 72 20 53 70 65 64 69-74 69 6f 6e 73 61 75 66 |er Spedi tionsauf|
00b0 74 72 61 67 20 65 6e 74-68 c3 a4 6c 74 20 6b 65 |trag ent hält ke|
00c0 69 6e 65 20 50 61 6b 65-74 65 20 2d 20 44 72 75 |ine Pake te - Dru|
00d0 63 6b 20 61 62 67 65 62-72 6f 63 68 65 6e 3a 00 |ck abgeb rochen:.|
00e0 00 00 53 68 69 70 70 69-6e 67 20 6f 72 64 65 72 |..Shippi ng order|
00f0 20 63 6f 6e 74 61 69 6e-73 20 6e 6f 20 70 61 63 | contain s no pac|
0100 6b 61 67 65 73 20 2d 20-70 72 69 6e 74 6f 75 74 |kages -  printout|
0110 20 69 6e 74 65 72 72 75-70 74 65 64 d1 33 00 00 | interru ptedÑ3..|
0120 00 44 65 72 20 53 74 61-72 74 20 67 65 6d c3 a4 |.Der Sta rt gemä|
0130 73 73 20 3e 25 3c 20 69-73 74 20 6e 6f 63 68 20 |ss >%< i st noch |
0140 6e 69 63 68 74 20 75 6e-74 65 72 73 74 c3 bc 74 |nicht un terstüt|
0150 7a 74 20 21 34 00 00 00-53 74 61 72 74 20 69 6e |zt !4... Start in|
0160 20 61 63 63 6f 72 64 61-6e 63 65 20 77 69 74 68 | accorda nce with|
0170 20 3e 20 25 20 3c 20 69-73 20 6e 6f 74 20 73 75 | > % < i s not su|
0180 70 70 6f 72 74 65 64 20-79 65 74 21 d1 3a 00 00 |pported  yet!Ñ:..|
0190 00 44 65 72 20 56 65 72-61 6e 74 77 6f 72 74 6c |.Der Ver antwortl|
01a0 69 63 68 65 20 28 24 4c-65 69 74 65 72 29 20 69 |iche ($L eiter) i|
01b0 73 74 20 62 65 69 20 25-20 6e 69 63 68 74 20 65 |st bei %  nicht e|
01c0 69 6e 67 65 74 72 61 67-65 6e 21 31 00 00 00 50 |ingetrag en!1...P|
01d0 65 72 73 6f 6e 20 72 65-73 70 6f 6e 73 69 62 6c |erson re sponsibl|
01e0 65 20 28 24 6c 65 61 64-65 72 29 20 6e 6f 74 20 |e ($lead er) not |
01f0 72 65 67 69 73 74 65 72-65 64 20 69 6e 20 25 21 |register ed in %!|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1473750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-d1 1b 00 00 00 44 65 72 |........ Ñ....Der|
0010 20 57 65 72 74 20 25 20-69 73 74 20 6b 65 69 6e | Wert %  ist kein|
0020 65 20 5a 61 68 6c 20 21-19 00 00 00 56 61 6c 75 |e Zahl ! ....Valu|
0030 65 20 25 20 69 73 20 6e-6f 74 20 6e 75 6d 65 72 |e % is n ot numer|
0040 69 63 61 6c 21 d1 20 00-00 00 44 65 72 20 57 65 |ical!Ñ . ..Der We|
0050 72 74 20 3e 25 3c 20 69-73 74 20 6e 69 63 68 74 |rt >%< i st nicht|
0060 20 62 65 6b 61 6e 6e 74-20 21 15 00 00 00 56 61 | bekannt  !....Va|
0070 6c 75 65 20 3e 25 3c 20-69 73 20 75 6e 6b 6e 6f |lue >%<  is unkno|
0080 77 6e 21 d1 2b 00 00 00-44 65 72 20 5a 6f 6c 6c |wn!Ñ+... Der Zoll|
0090 55 72 73 70 72 75 6e 67-20 6b 61 6e 6e 20 6e 69 |Ursprung  kann ni|
00a0 63 68 74 20 67 65 73 65-74 7a 74 20 77 65 72 64 |cht gese tzt werd|
00b0 65 6e 21 20 00 00 00 43-61 6e 6e 6f 74 20 65 73 |en! ...C annot es|
00c0 74 61 62 6c 69 73 68 20-63 75 73 74 6f 6d 73 20 |tablish  customs |
00d0 6f 72 69 67 69 6e 21 d1-27 00 00 00 44 65 72 20 |origin!Ñ '...Der |
00e0 5a 6f 6c 6c 57 65 72 74-20 6b 61 6e 6e 20 6e 69 |ZollWert  kann ni|
00f0 63 68 74 20 67 65 73 65-74 7a 74 20 77 65 72 64 |cht gese tzt werd|
0100 65 6e 21 1f 00 00 00 43-61 6e 6e 6f 74 20 64 65 |en!....C annot de|
0110 74 65 72 6d 69 6e 65 20-63 75 73 74 6f 6d 73 20 |termine  customs |
0120 76 61 6c 75 65 21 d1 27-00 00 00 44 65 72 20 5a |value!Ñ' ...Der Z|
0130 75 67 72 69 66 66 20 61-75 66 20 4d 61 6e 64 61 |ugriff a uf Manda|
0140 6e 74 20 25 20 69 73 74-20 67 65 73 70 65 72 72 |nt % ist  gesperr|
0150 74 21 20 00 00 00 41 63-63 65 73 73 20 74 6f 20 |t! ...Ac cess to |
0160 6d 61 6e 64 61 74 6f 72-20 25 20 69 73 20 62 6c |mandator  % is bl|
0170 6f 63 6b 65 64 21 d1 3b-00 00 00 44 65 72 20 5a |ocked!Ñ; ...Der Z|
0180 75 67 72 69 66 66 20 61-75 66 20 69 68 72 65 6e |ugriff a uf ihren|
0190 20 4d 61 6e 64 61 6e 74-20 25 20 69 73 74 20 77 | Mandant  % ist w|
01a0 65 67 65 6e 20 57 61 72-74 75 6e 67 20 67 65 73 |egen War tung ges|
01b0 70 65 72 72 74 21 33 00-00 00 41 63 63 65 73 73 |perrt!3. ..Access|
01c0 20 74 6f 20 6d 61 6e 64-61 74 6f 72 20 25 20 69 | to mand ator % i|
01d0 73 20 62 6c 6f 63 6b 65-64 20 64 75 65 20 74 6f |s blocke d due to|
01e0 20 6d 61 69 6e 74 65 6e-61 6e 63 65 21 d1 37 00 | mainten ance!Ñ7.|
01f0 00 00 44 65 72 20 61 6e-67 65 67 65 62 65 6e 65 |..Der an gegebene|

ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14740c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 57 65 72 74 20 6c 69 |........  Wert li|
0010 65 67 74 20 75 6e 74 65-72 20 64 65 6d 20 67 c3 |egt unte r dem gÃ|
0020 bc 6c 74 69 67 65 6e 20-42 65 72 65 69 63 68 20 |¼ltigen  Bereich |
0030 21 26 00 00 00 49 6e 64-69 63 61 74 65 64 20 76 |!&...Ind icated v|
0040 61 6c 75 65 20 75 6e 64-65 72 20 74 68 65 20 76 |alue und er the v|
0050 61 6c 69 64 20 72 61 6e-67 65 21 d1 37 00 00 00 |alid ran ge!Ñ7...|
0060 44 65 72 20 61 6e 67 65-67 65 62 65 6e 65 20 57 |Der ange gebene W|
0070 65 72 74 20 6c 69 65 67-74 20 c3 bc 62 65 72 20 |ert lieg t über |
0080 64 65 6d 20 67 c3 bc 6c-74 69 67 65 6e 20 42 65 |dem gül tigen Be|
0090 72 65 69 63 68 20 21 25-00 00 00 49 6e 64 69 63 |reich !% ...Indic|
00a0 61 74 65 64 20 76 61 6c-75 65 20 6f 76 65 72 20 |ated val ue over |
00b0 74 68 65 20 76 61 6c 69-64 20 72 61 6e 67 65 21 |the vali d range!|
00c0 d1 0b 00 00 00 44 65 76-65 6c 6f 70 6d 65 6e 74 |Ñ....Dev elopment|
00d0 0b 00 00 00 44 65 76 65-6c 6f 70 6d 65 6e 74 d1 |....Deve lopmentÑ|
00e0 0e 00 00 00 44 65 76 65-6c 79 45 72 65 69 67 6e |....Deve lyEreign|
00f0 69 73 0e 00 00 00 44 65-76 65 6c 79 45 72 65 69 |is....De velyErei|
0100 67 6e 69 73 d1 27 00 00-00 44 69 65 20 25 20 65 |gnisÑ'.. .Die % e|
0110 6e 74 68 c3 a4 6c 74 20-75 6e 67 c3 bc 6c 74 69 |nthält  ungülti|
0120 67 65 20 5a 65 69 63 68-65 6e 20 28 25 29 20 21 |ge Zeich en (%) !|
0130 22 00 00 00 25 20 63 6f-6e 74 61 69 6e 73 20 69 |"...% co ntains i|
0140 6e 76 61 6c 69 64 20 63-68 61 72 61 63 74 65 72 |nvalid c haracter|
0150 73 20 28 25 29 21 d1 12-00 00 00 44 69 65 20 25 |s (%)!Ñ. ...Die %|
0160 20 69 73 74 20 7a 75 20-6b 75 72 7a 21 0f 00 00 | ist zu  kurz!...|
0170 00 25 20 69 73 20 74 6f-6f 20 73 68 6f 72 74 21 |.% is to o short!|
0180 d1 1a 00 00 00 44 69 65-20 25 20 6d 75 73 73 20 |Ñ....Die  % muss |
0190 25 2d 73 74 65 6c 6c 69-67 20 73 65 69 6e 21 15 |%-stelli g sein!.|
01a0 00 00 00 25 20 6d 75 73-74 20 68 61 76 65 20 25 |...% mus t have %|
01b0 20 64 69 67 69 74 73 21-d1 1b 00 00 00 44 69 65 | digits! Ñ....Die|
01c0 20 25 20 6d 75 73 73 20-32 30 2d 73 74 65 6c 6c | % muss  20-stell|
01d0 69 67 20 73 65 69 6e 21-16 00 00 00 25 20 6d 75 |ig sein! ....% mu|
01e0 73 74 20 68 61 76 65 20-32 30 20 64 69 67 69 74 |st have  20 digit|
01f0 73 21 d1 25 00 00 00 44-69 65 20 41 64 72 65 73 |s!Ñ%...D ie Adres|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7aa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14b7680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 65 20 25 20 68 61 74 |........ se % hat|
0010 20 65 69 6e 65 20 53 70-65 72 72 65 20 25 20 25 | eine Sp erre % %|
0020 20 3a 20 25 1b 00 00 00-41 64 64 72 65 73 73 20 | : %.... Address |
0030 25 20 68 61 73 20 61 20-6c 6f 63 6b 20 25 20 25 |% has a  lock % %|
0040 3a 20 25 d1 1c 00 00 00-44 69 65 20 41 64 72 65 |: %Ñ.... Die Adre|
0050 73 73 65 20 65 78 69 73-74 69 65 72 74 20 6e 69 |sse exis tiert ni|
0060 63 68 74 21 17 00 00 00-41 64 64 72 65 73 73 20 |cht!.... Address |
0070 64 6f 65 73 20 6e 6f 74-20 65 78 69 73 74 21 d1 |does not  exist!Ñ|
0080 1e 00 00 00 44 69 65 20-41 72 74 4e 72 20 25 20 |....Die  ArtNr % |
0090 69 73 74 20 6e 69 63 68-74 20 62 65 6b 61 6e 6e |ist nich t bekann|
00a0 74 21 10 00 00 00 41 72-74 4e 6f 20 25 20 75 6e |t!....Ar tNo % un|
00b0 6b 6e 6f 77 6e 21 d1 18-00 00 00 44 69 65 20 41 |known!Ñ. ...Die A|
00c0 72 74 69 6b 65 6c 63 68-61 72 67 65 20 66 65 68 |rtikelch arge feh|
00d0 6c 74 21 16 00 00 00 41-72 74 69 63 6c 65 20 62 |lt!....A rticle b|
00e0 61 74 63 68 20 6d 69 73-73 69 6e 67 21 d1 22 00 |atch mis sing!Ñ".|
00f0 00 00 44 69 65 20 41 75-73 77 65 72 74 75 6e 67 |..Die Au swertung|
0100 20 77 69 72 64 20 61 6e-20 27 25 27 20 67 65 66 | wird an  '%' gef|
0110 61 78 74 21 21 00 00 00-54 68 65 20 65 76 61 6c |axt!!... The eval|
0120 75 61 74 69 6f 6e 20 69-73 20 66 61 78 65 64 20 |uation i s faxed |
0130 74 6f 20 27 20 25 20 27-21 d1 3a 00 00 00 44 69 |to ' % ' !Ñ:...Di|
0140 65 20 41 75 73 77 65 72-74 75 6e 67 20 77 69 72 |e Auswer tung wir|
0150 64 20 61 6e 20 64 69 65-20 62 65 74 72 65 66 66 |d an die  betreff|
0160 65 6e 64 65 6e 20 45 6d-70 66 c3 a4 6e 67 65 72 |enden Em pfänger|
0170 20 67 65 66 61 78 74 21-33 00 00 00 54 68 65 20 | gefaxt! 3...The |
0180 65 76 61 6c 75 61 74 69-6f 6e 20 69 73 20 66 61 |evaluati on is fa|
0190 78 65 64 20 74 6f 20 74-68 65 20 72 65 63 65 69 |xed to t he recei|
01a0 76 65 72 73 20 63 6f 6e-63 65 72 6e 65 64 21 d1 |vers con cerned!Ñ|
01b0 25 00 00 00 44 69 65 20-42 65 7a 65 69 63 68 6e |%...Die  Bezeichn|
01c0 75 6e 67 20 69 73 74 20-6e 69 63 68 74 20 65 69 |ung ist  nicht ei|
01d0 6e 64 65 75 74 69 67 20-21 19 00 00 00 44 65 73 |ndeutig  !....Des|
01e0 69 67 6e 61 74 69 6f 6e-20 69 73 20 61 6d 62 69 |ignation  is ambi|
01f0 67 75 6f 75 73 21 d1 24-00 00 00 44 69 65 20 42 |guous!Ñ$ ...Die B|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1474070, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14731a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dace0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dad30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dace0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dad30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 7a 65 69 63 68 6e 75 |........ ezeichnu|
0010 6e 67 20 69 73 74 20 6e-69 63 68 74 20 65 69 6e |ng ist n icht ein|
0020 64 65 75 74 69 67 21 19-00 00 00 44 65 73 69 67 |deutig!. ...Desig|
0030 6e 61 74 69 6f 6e 20 69-73 20 61 6d 62 69 67 75 |nation i s ambigu|
0040 6f 75 73 21 d1 1e 00 00-00 44 69 65 20 42 65 7a |ous!Ñ... .Die Bez|
0050 75 67 73 61 64 72 65 73-73 65 20 69 73 74 20 75 |ugsadres se ist u|
0060 6e 6b 6c 61 72 20 21 1a-00 00 00 52 65 66 65 72 |nklar !. ...Refer|
0070 65 6e 63 65 20 61 64 64-72 65 73 73 20 75 6e 63 |ence add ress unc|
0080 6c 65 61 72 21 d1 1c 00-00 00 44 69 65 20 42 75 |lear!Ñ.. ..Die Bu|
0090 63 68 75 6e 67 20 77 75-72 64 65 20 73 74 6f 72 |chung wu rde stor|
00a0 6e 69 65 72 74 2e 12 00-00 00 50 6f 73 74 69 6e |niert... ..Postin|
00b0 67 20 63 61 6e 63 65 6c-6c 65 64 2e d1 53 00 00 |g cancel led.ÑS..|
00c0 00 44 69 65 20 42 75 63-68 75 6e 67 73 70 65 72 |.Die Buc hungsper|
00d0 69 6f 64 65 20 25 2f 25-20 68 61 74 20 65 69 6e |iode %/%  hat ein|
00e0 65 20 42 75 63 68 73 70-65 72 72 65 20 44 65 62 |e Buchsp erre Deb|
00f0 69 2c 20 62 69 74 74 65-20 65 6e 74 66 65 72 6e |i, bitte  entfern|
0100 65 6e 20 53 69 65 20 64-69 65 73 65 20 7a 75 65 |en Sie d iese zue|
0110 72 73 74 21 57 00 00 00-54 68 65 20 61 63 63 6f |rst!W... The acco|
0120 75 6e 74 69 6e 67 20 70-65 72 69 6f 64 20 25 2f |unting p eriod %/|
0130 25 20 69 73 20 73 75 62-6a 65 63 74 20 74 6f 20 |% is sub ject to |
0140 61 20 6c 6f 63 6b 20 6f-6e 20 64 65 62 69 74 20 |a lock o n debit |
0150 70 6f 73 74 69 6e 67 73-2c 20 70 6c 65 61 73 65 |postings , please|
0160 20 75 6e 62 6c 6f 63 6b-20 66 69 72 73 74 21 d1 | unblock  first!Ñ|
0170 4e 00 00 00 44 69 65 20-42 75 63 68 75 6e 67 73 |N...Die  Buchungs|
0180 70 65 72 69 6f 64 65 20-25 2f 25 20 68 61 74 20 |periode  %/% hat |
0190 65 69 6e 65 20 42 75 63-68 73 70 65 72 72 65 2c |eine Buc hsperre,|
01a0 20 62 69 74 74 65 20 65-6e 74 66 65 72 6e 65 6e | bitte e ntfernen|
01b0 20 53 69 65 20 64 69 65-73 65 20 7a 75 65 72 73 | Sie die se zuers|
01c0 74 21 4e 00 00 00 54 68-65 20 61 63 63 6f 75 6e |t!N...Th e accoun|
01d0 74 69 6e 67 20 70 65 72-69 6f 64 20 25 2f 25 20 |ting per iod %/% |
01e0 69 73 20 73 75 62 6a 65-63 74 20 74 6f 20 61 20 |is subje ct to a |
01f0 70 6f 73 74 69 6e 67 20-6c 6f 63 6b 20 2c 20 70 |posting  lock , p|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dace0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dad30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dace0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dad30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dace0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11dad30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 83 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 83
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (83 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db3e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 65 61 73 65 20 75 6e |........ lease un|
0010 62 6c 6f 63 6b 20 66 69-72 73 74 21 d1 56 00 00 |block fi rst!ÑV..|
0020 00 44 69 65 20 42 75 63-68 75 6e 67 73 70 65 72 |.Die Buc hungsper|
0030 69 6f 64 65 20 25 2f 25-20 69 73 74 20 7a 75 6d |iode %/%  ist zum|
0040 20 42 75 63 68 65 6e 20-67 65 73 70 65 72 72 74 | Buchen  gesperrt|
0050 2c 20 62 69 74 74 65 20-c3 b6 66 66 6e 65 6e 20 |, bitte  öffnen |
0060 53 69 65 20 64 69 65 20-50 65 72 69 6f 64 65 20 |Sie die  Periode |
0070 7a 75 65 72 73 74 21 5a-00 00 00 54 68 65 20 61 |zuerst!Z ...The a|
0080 63 63 6f 75 6e 74 69 6e-67 20 70 65 72 69 6f 64 |ccountin g period|
0090 20 25 2f 25 20 69 73 20-73 75 62 6a 65 63 74 20 | %/% is  subject |
00a0 74 6f 20 61 20 62 6c 6f-63 6b 20 6f 6e 20 70 6f |to a blo ck on po|
00b0 73 74 69 6e 67 73 2c 20-70 6c 65 61 73 65 20 6f |stings,  please o|
00c0 70 65 6e 20 74 68 65 20-70 65 72 69 6f 64 20 66 |pen the  period f|
00d0 69 72 73 74 21 d1 34 00-00 00 44 69 65 20 43 68 |irst!Ñ4. ..Die Ch|
00e0 61 72 67 65 20 25 20 65-6e 74 73 70 72 69 63 68 |arge % e ntsprich|
00f0 74 20 6e 69 63 68 74 20-64 65 72 20 43 68 61 72 |t nicht  der Char|
0100 67 65 6e 7a 75 6f 72 64-6e 75 6e 67 20 21 26 00 |genzuord nung !&.|
0110 00 00 42 61 74 63 68 20-25 20 64 6f 65 73 20 6e |..Batch  % does n|
0120 6f 74 20 66 69 74 20 62-61 74 63 68 20 61 6c 6c |ot fit b atch all|
0130 6f 63 61 74 69 6f 6e 21-d1 42 00 00 00 44 69 65 |ocation! ÑB...Die|
0140 20 43 68 61 72 67 65 20-65 6e 74 73 70 72 69 63 | Charge  entspric|
0150 68 74 20 6e 69 63 68 74-20 64 65 72 20 52 65 73 |ht nicht  der Res|
0160 65 72 76 61 74 69 6f 6e-2c 20 62 75 63 68 65 6e |ervation , buchen|
0170 20 6e 69 63 68 74 20 65-72 6c 61 75 62 74 21 3c | nicht e rlaubt!<|
0180 00 00 00 54 68 65 20 62-61 74 63 68 20 64 6f 65 |...The b atch doe|
0190 73 20 6e 6f 74 20 66 69-74 20 74 68 65 20 72 65 |s not fi t the re|
01a0 73 65 72 76 61 74 69 6f-6e 2c 20 62 6f 6f 6b 69 |servatio n, booki|
01b0 6e 67 20 6e 6f 74 20 61-6c 6c 6f 77 65 64 21 d1 |ng not a llowed!Ñ|
01c0 48 00 00 00 44 69 65 20-43 68 61 72 67 65 20 65 |H...Die  Charge e|
01d0 6e 74 73 70 72 69 63 68-74 20 6e 69 63 68 74 20 |ntsprich t nicht |
01e0 64 65 72 20 52 65 73 65-72 76 61 74 69 6f 6e 2e |der Rese rvation.|
01f0 20 57 6f 6c 6c 65 6e 20-53 69 65 20 74 72 6f 74 | Wollen  Sie trot|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db3e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-7a 64 65 6d 20 62 75 63 |........ zdem buc|
0010 68 65 6e 3f 34 00 00 00-54 68 65 20 62 61 74 63 |hen?4... The batc|
0020 68 20 64 6f 65 73 20 6e-6f 74 20 66 69 74 20 74 |h does n ot fit t|
0030 68 65 20 72 65 73 65 72-76 61 74 69 6f 6e 2e 20 |he reser vation. |
0040 42 6f 6f 6b 20 61 6e 79-77 61 79 3f d1 30 00 00 |Book any way?Ñ0..|
0050 00 44 69 65 20 43 68 61-72 67 65 6e 2f 4b 75 6e |.Die Cha rgen/Kun|
0060 64 65 6e 7a 75 6f 72 64-6e 75 6e 67 20 6c c3 a4 |denzuord nung lä|
0070 73 73 74 20 64 61 73 20-6e 69 63 68 74 20 7a 75 |sst das  nicht zu|
0080 21 2e 00 00 00 42 61 74-63 68 2f 63 75 73 74 6f |!....Bat ch/custo|
0090 6d 65 72 20 61 6c 6c 6f-63 61 74 69 6f 6e 20 64 |mer allo cation d|
00a0 6f 65 73 20 6e 6f 74 20-61 6c 6c 6f 77 20 74 68 |oes not  allow th|
00b0 69 73 21 d1 2b 00 00 00-44 69 65 20 43 68 61 72 |is!Ñ+... Die Char|
00c0 67 65 6e 75 6d 6d 65 72-20 6b 61 6e 6e 20 6e 69 |genummer  kann ni|
00d0 63 68 74 20 67 65 73 65-74 7a 74 20 77 65 72 64 |cht gese tzt werd|
00e0 65 6e 21 18 00 00 00 43-61 6e 6e 6f 74 20 73 65 |en!....C annot se|
00f0 74 20 62 61 72 63 68 20-6e 75 6d 62 65 72 21 d1 |t barch  number!Ñ|
0100 28 00 00 00 44 69 65 20-44 61 74 65 69 20 6b 6f |(...Die  Datei ko|
0110 6e 6e 74 65 20 6e 69 63-68 74 20 67 65 c3 b6 66 |nnte nic ht geöf|
0120 66 6e 65 74 20 77 65 72-64 65 6e 2e 19 00 00 00 |fnet wer den.....|
0130 46 69 6c 65 20 63 6f 75-6c 64 20 6e 6f 74 20 62 |File cou ld not b|
0140 65 20 6f 70 65 6e 65 64-2e d1 25 00 00 00 44 69 |e opened .Ñ%...Di|
0150 65 20 44 61 74 65 6e 20-77 75 72 64 65 6e 20 69 |e Daten  wurden i|
0160 6e 20 25 20 62 65 72 65-69 74 67 65 73 74 65 6c |n % bere itgestel|
0170 6c 74 2e 27 00 00 00 54-68 65 20 64 61 74 61 20 |lt.'...T he data |
0180 68 61 76 65 20 62 65 65-6e 20 6d 61 64 65 20 61 |have bee n made a|
0190 76 61 69 6c 61 62 6c 65-20 69 6e 20 25 2e d1 65 |vailable  in %.Ñe|
01a0 00 00 00 44 69 65 20 44-65 66 61 75 6c 74 45 72 |...Die D efaultEr|
01b0 65 69 67 6e 69 73 49 44-20 3c 25 3e 20 65 78 69 |eignisID  <%> exi|
01c0 73 74 69 65 72 74 20 6e-69 63 68 74 20 69 6e 20 |stiert n icht in |
01d0 64 65 72 20 41 6b 74 69-6f 6e 20 45 72 65 69 67 |der Akti on Ereig|
01e0 6e 69 73 41 75 66 74 44-65 70 28 29 20 64 65 73 |nisAuftD ep() des|
01f0 20 4f 72 69 67 69 6e 61-6c 2d 45 72 65 69 67 6e | Origina l-Ereign|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11db380, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14ddfa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 101 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 73 73 65 73 20 25 2e |........ isses %.|
0010 61 00 00 00 44 65 66 61-75 6c 74 45 72 65 69 67 |a...Defa ultEreig|
0020 6e 69 73 49 44 20 3c 25-3e 20 64 6f 65 73 20 6e |nisID <% > does n|
0030 6f 74 20 65 78 69 73 74-20 69 6e 20 74 68 65 20 |ot exist  in the |
0040 61 63 74 69 6f 6e 20 45-72 65 69 67 6e 69 73 41 |action E reignisA|
0050 75 66 74 44 65 70 28 29-20 6f 66 20 74 68 65 20 |uftDep()  of the |
0060 6f 72 69 67 69 6e 61 6c-20 73 79 73 2d 65 76 65 |original  sys-eve|
0070 6e 74 20 25 2e d1 3b 00-00 00 44 69 65 20 44 65 |nt %.Ñ;. ..Die De|
0080 66 69 6e 69 74 69 6f 6e-20 64 65 72 20 54 65 6d |finition  der Tem|
0090 70 6f 72 c3 a4 72 65 6e-20 54 61 62 65 6c 6c 65 |porären  Tabelle|
00a0 20 3c 25 3e 20 65 78 69-73 74 69 65 72 74 20 6e | <%> exi stiert n|
00b0 69 63 68 74 21 31 00 00-00 44 65 66 69 6e 69 74 |icht!1.. .Definit|
00c0 69 6f 6e 20 6f 66 20 74-65 6d 70 6f 72 61 72 79 |ion of t emporary|
00d0 20 74 61 62 6c 65 20 3c-25 3e 20 64 6f 65 73 20 | table < %> does |
00e0 6e 6f 74 20 65 78 69 73-74 21 d1 2a 00 00 00 44 |not exis t!Ñ*...D|
00f0 69 65 20 45 5a 2d 43 6f-64 65 69 6e 66 6f 72 6d |ie EZ-Co deinform|
0100 61 74 69 6f 6e 65 6e 20-73 69 6e 64 20 66 65 68 |ationen  sind feh|
0110 6c 65 72 68 61 66 74 20-21 2b 00 00 00 50 61 79 |lerhaft  !+...Pay|
0120 6d 65 6e 74 20 73 6c 69-70 20 63 6f 64 65 20 69 |ment sli p code i|
0130 6e 66 6f 72 6d 61 74 69-6f 6e 20 69 73 20 69 6e |nformati on is in|
0140 63 6f 72 72 65 63 74 21-d1 31 00 00 00 44 69 65 |correct! Ñ1...Die|
0150 20 45 69 6e 67 61 62 65-20 25 20 69 73 74 20 61 | Eingabe  % ist a|
0160 6e 20 64 69 65 73 65 72-20 53 74 65 6c 6c 65 20 |n dieser  Stelle |
0170 6e 69 63 68 74 20 65 72-6c 61 75 62 74 21 20 00 |nicht er laubt! .|
0180 00 00 54 68 65 20 65 6e-74 72 79 20 25 20 69 73 |..The en try % is|
0190 20 6e 6f 74 20 61 6c 6c-6f 77 65 64 20 68 65 72 | not all owed her|
01a0 65 21 d1 66 00 00 00 44-69 65 20 45 69 6e 67 61 |e!Ñf...D ie Einga|
01b0 6e 67 73 6d 65 6e 67 65-20 25 20 c3 bc 62 65 72 |ngsmenge  % über|
01c0 73 74 65 69 67 74 20 64-69 65 20 6f 66 66 65 6e |steigt d ie offen|
01d0 65 20 42 65 73 74 65 6c-6c 6d 65 6e 67 65 20 25 |e Bestel lmenge %|
01e0 20 64 65 75 74 6c 69 63-68 2e 20 53 74 69 6d 6d | deutlic h. Stimm|
01f0 74 20 64 69 65 20 65 72-66 61 73 73 74 65 20 45 |t die er fasste E|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 97 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 101
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed2c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (101 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 97
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed330, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (97 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed2c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed330, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed2c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed330, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed2c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed330, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 102 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6e 67 61 6e 67 73 6d |........ ingangsm|
0010 65 6e 67 65 3f 72 00 00-00 49 6e 70 75 74 20 71 |enge?r.. .Input q|
0020 75 61 6e 74 69 74 79 20-25 20 69 73 20 6d 75 63 |uantity  % is muc|
0030 68 20 6c 61 72 67 65 72-20 74 68 61 6e 20 74 68 |h larger  than th|
0040 65 20 75 6e 73 65 74 74-6c 65 64 20 70 75 72 63 |e unsett led purc|
0050 68 61 73 65 20 71 75 61-6e 74 69 74 79 20 20 25 |hase qua ntity  %|
0060 2e 20 49 73 20 74 68 65-20 69 6e 70 75 74 20 71 |. Is the  input q|
0070 75 61 6e 74 69 74 79 20-72 65 67 69 73 74 65 72 |uantity  register|
0080 65 64 20 63 6f 72 72 65-63 74 3f d1 5e 00 00 00 |ed corre ct?Ñ^...|
0090 44 69 65 20 45 72 65 69-67 6e 69 73 49 44 20 3c |Die Erei gnisID <|
00a0 25 3e 20 65 78 69 73 74-69 65 72 74 20 6e 69 63 |%> exist iert nic|
00b0 68 74 20 69 6e 20 64 65-72 20 41 6b 74 69 6f 6e |ht in de r Aktion|
00c0 20 45 72 65 69 67 6e 69-73 41 75 66 74 44 65 70 | Ereigni sAuftDep|
00d0 28 29 20 64 65 73 20 4f-72 69 67 69 6e 61 6c 2d |() des O riginal-|
00e0 45 72 65 69 67 6e 69 73-73 65 73 20 25 2e 5a 00 |Ereignis ses %.Z.|
00f0 00 00 45 72 65 69 67 6e-69 73 49 44 20 3c 25 3e |..Ereign isID <%>|
0100 20 64 6f 65 73 20 6e 6f-74 20 65 78 69 73 74 20 | does no t exist |
0110 69 6e 20 74 68 65 20 61-63 74 69 6f 6e 20 45 72 |in the a ction Er|
0120 65 69 67 6e 69 73 41 75-66 74 44 65 70 28 29 20 |eignisAu ftDep() |
0130 6f 66 20 74 68 65 20 6f-72 69 67 69 6e 61 6c 20 |of the o riginal |
0140 73 79 73 2d 65 76 65 6e-74 20 25 2e d1 5c 00 00 |sys-even t %.Ñ\..|
0150 00 44 69 65 20 45 72 65-69 67 6e 69 73 49 44 20 |.Die Ere ignisID |
0160 3c 25 3e 20 65 78 69 73-74 69 65 72 74 20 6e 69 |<%> exis tiert ni|
0170 63 68 74 20 69 6e 20 64-65 72 20 41 6b 74 69 6f |cht in d er Aktio|
0180 6e 20 45 72 65 69 67 6e-69 73 4b 65 74 74 65 28 |n Ereign isKette(|
0190 29 20 64 65 73 20 4f 72-69 67 69 6e 61 6c 2d 45 |) des Or iginal-E|
01a0 72 65 69 67 6e 69 73 73-65 73 20 25 2e 58 00 00 |reigniss es %.X..|
01b0 00 45 72 65 69 67 6e 69-73 49 44 20 3c 25 3e 20 |.Ereigni sID <%> |
01c0 64 6f 65 73 20 6e 6f 74-20 65 78 69 73 74 20 69 |does not  exist i|
01d0 6e 20 74 68 65 20 61 63-74 69 6f 6e 20 45 72 65 |n the ac tion Ere|
01e0 69 67 6e 69 73 4b 65 74-74 65 28 29 20 6f 66 20 |ignisKet te() of |
01f0 74 68 65 20 6f 72 69 67-69 6e 61 6c 20 73 79 73 |the orig inal sys|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 114 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 102
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (102 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 114
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (114 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 94 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 94
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (94 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 92 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 88 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-2d 65 76 65 6e 74 20 25 |........ -event %|
0010 2e d1 5c 00 00 00 44 69-65 20 45 72 65 69 67 6e |.Ñ\...Di e Ereign|
0020 69 73 49 44 20 3c 25 3e-20 65 78 69 73 74 69 65 |isID <%>  existie|
0030 72 74 20 6e 69 63 68 74-20 69 6e 20 64 65 72 20 |rt nicht  in der |
0040 41 6b 74 69 6f 6e 20 4b-72 65 64 42 65 77 65 72 |Aktion K redBewer|
0050 74 75 6e 67 28 29 20 64-65 73 20 4f 72 69 67 69 |tung() d es Origi|
0060 6e 61 6c 2d 45 72 65 69-67 6e 69 73 73 65 73 20 |nal-Erei gnisses |
0070 25 2e 5c 00 00 00 45 72-65 69 67 6e 69 73 49 44 |%.\...Er eignisID|
0080 20 3c 25 3e 20 64 6f 65-73 20 6e 6f 74 20 65 78 | <%> doe s not ex|
0090 69 73 74 20 69 6e 20 74-68 65 20 61 63 74 69 6f |ist in t he actio|
00a0 6e 20 45 72 65 69 67 6e-69 73 42 65 77 65 72 74 |n Ereign isBewert|
00b0 75 6e 67 28 29 20 6f 66-20 74 68 65 20 6f 72 69 |ung() of  the ori|
00c0 67 69 6e 61 6c 20 73 79-73 2d 65 76 65 6e 74 20 |ginal sy s-event |
00d0 25 2e d1 32 00 00 00 44-69 65 20 46 49 42 55 2d |%.Ñ2...D ie FIBU-|
00e0 42 75 63 68 75 6e 67 20-6d 69 74 20 46 49 42 55 |Buchung  mit FIBU|
00f0 42 75 63 68 4e 72 20 25-20 65 78 69 73 74 69 65 |BuchNr %  existie|
0100 72 74 20 6e 69 63 68 74-2e 32 00 00 00 54 68 65 |rt nicht .2...The|
0110 20 47 45 4c 45 20 62 6f-6f 6b 69 6e 67 20 77 69 | GELE bo oking wi|
0120 74 68 20 46 49 42 55 42-75 63 68 4e 6f 20 25 20 |th FIBUB uchNo % |
0130 64 6f 65 73 20 6e 6f 74-20 65 78 69 73 74 2e d1 |does not  exist.Ñ|
0140 2a 00 00 00 44 69 65 20-46 72 65 6d 64 41 72 74 |*...Die  FremdArt|
0150 43 4e 72 20 6b 61 6e 6e-20 6e 69 63 68 74 20 67 |CNr kann  nicht g|
0160 65 73 65 74 7a 74 20 77-65 72 64 65 6e 21 1d 00 |esetzt w erden!..|
0170 00 00 45 78 74 65 72 6e-61 6c 41 72 74 42 4e 6f |..Extern alArtBNo|
0180 20 63 61 6e 6e 6f 74 20-62 65 20 73 65 74 21 d1 | cannot  be set!Ñ|
0190 47 00 00 00 44 69 65 20-47 72 75 70 70 65 20 25 |G...Die  Gruppe %|
01a0 20 68 61 74 20 6b 65 69-6e 65 72 6c 65 69 20 52 | hat kei nerlei R|
01b0 65 63 68 74 65 20 2d 20-62 69 74 74 65 20 6b 6f |echte -  bitte ko|
01c0 6e 74 61 6b 74 69 65 72-65 6e 20 53 69 65 20 64 |ntaktier en Sie d|
01d0 65 6e 20 53 75 70 70 6f-72 74 21 2f 00 00 00 47 |en Suppo rt!/...G|
01e0 72 6f 75 70 20 25 20 68-61 73 20 6e 6f 20 72 69 |roup % h as no ri|
01f0 67 68 74 73 20 2d 20 70-6c 65 61 73 65 20 63 6f |ghts - p lease co|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 92
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (92 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 88
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (88 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 92 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 92 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 92
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (92 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 92
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (92 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 74 61 63 74 20 73 75 |........ ntact su|
0010 70 70 6f 72 74 21 d1 30-00 00 00 44 69 65 20 4b |pport!Ñ0 ...Die K|
0020 6f 73 74 65 6e 73 74 65-6c 6c 65 20 3e 25 3c 20 |ostenste lle >%< |
0030 69 73 74 20 69 6e 20 3e-25 3c 20 6e 69 63 68 74 |ist in > %< nicht|
0040 20 61 6e 67 65 6c 65 67-74 20 21 29 00 00 00 43 | angeleg t !)...C|
0050 6f 73 74 20 63 65 6e 74-65 72 20 3e 25 3c 20 69 |ost cent er >%< i|
0060 73 20 6e 6f 74 20 72 65-67 69 73 74 65 72 65 64 |s not re gistered|
0070 20 69 6e 20 3e 25 3c 21-d1 2d 00 00 00 44 69 65 | in >%<! Ñ-...Die|
0080 20 4d 61 74 65 72 69 61-6c 65 6e 74 6e 61 6d 65 | Materia lentname|
0090 20 69 73 74 20 6e 6f 63-68 20 6e 69 63 68 74 20 | ist noc h nicht |
00a0 6b 6f 6d 70 6c 65 74 74-20 21 29 00 00 00 4d 61 |komplett  !)...Ma|
00b0 74 65 72 69 61 6c 20 77-69 74 68 64 72 61 77 61 |terial w ithdrawa|
00c0 6c 20 69 73 20 6e 6f 74-20 79 65 74 20 63 6f 6d |l is not  yet com|
00d0 70 6c 65 74 65 64 21 d1-47 00 00 00 44 69 65 20 |pleted!Ñ G...Die |
00e0 4d 65 6c 64 75 6e 67 20-65 6e 74 68 c3 a4 6c 74 |Meldung  enthält|
00f0 20 6b 65 69 6e 65 72 6c-65 69 20 50 65 72 73 6f | keinerl ei Perso|
0100 6e 65 6e 2c 20 62 69 74-74 65 20 70 72 c3 bc 66 |nen, bit te prüf|
0110 65 6e 20 53 69 65 20 64-69 65 20 41 75 73 77 61 |en Sie d ie Auswa|
0120 68 6c 21 3c 00 00 00 54-68 69 73 20 6d 65 73 73 |hl!<...T his mess|
0130 61 67 65 20 63 6f 6e 74-61 69 6e 73 20 6e 6f 20 |age cont ains no |
0140 70 65 72 73 6f 6e 2c 20-70 6c 65 61 73 65 20 63 |person,  please c|
0150 68 65 63 6b 20 74 68 65-20 73 65 6c 65 63 74 69 |heck the  selecti|
0160 6f 6e 21 d1 75 00 00 00-44 69 65 20 4d 65 6c 64 |on!Ñu... Die Meld|
0170 75 6e 67 20 65 6e 74 68-c3 a4 6c 74 20 c3 bc 62 |ung enth ält üb|
0180 65 72 68 61 75 70 74 20-6b 65 69 6e 65 20 45 6d |erhaupt  keine Em|
0190 70 66 c3 a4 6e 67 65 72-2e 20 42 69 74 74 65 20 |pfänger . Bitte |
01a0 70 72 c3 bc 66 65 6e 20-53 69 65 20 64 69 65 20 |prüfen  Sie die |
01b0 c3 9c 62 65 72 6d 69 74-74 6c 75 6e 67 73 65 69 |Ã.bermit tlungsei|
01c0 6e 73 74 65 6c 6c 75 6e-67 65 6e 20 64 65 72 20 |nstellun gen der |
01d0 53 6f 7a 69 61 6c 6b 61-73 73 65 6e 21 64 00 00 |Sozialka ssen!d..|
01e0 00 54 68 69 73 20 6d 65-73 73 61 67 65 20 63 6f |.This me ssage co|
01f0 6e 74 61 69 6e 73 20 6e-6f 20 70 61 79 65 65 2e |ntains n o payee.|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed9a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed930, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290790, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 117 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 100 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 50 6c 65 61 73 65 20 |........  Please |
0010 63 68 65 63 6b 20 74 68-65 20 74 72 61 6e 73 66 |check th e transf|
0020 65 72 20 63 6f 6e 66 69-67 75 72 61 74 69 6f 6e |er confi guration|
0030 20 6f 66 20 74 68 65 20-73 6f 63 69 61 6c 20 73 | of the  social s|
0040 65 63 75 72 69 74 79 20-66 75 6e 64 21 d1 2c 00 |ecurity  fund!Ñ,.|
0050 00 00 44 69 65 20 4d 65-6c 64 75 6e 67 65 6e 20 |..Die Me ldungen |
0060 6d c3 bc 73 73 65 6e 20-69 6e 20 4d 61 6e 64 61 |müssen  in Manda|
0070 6e 74 20 25 20 65 72 66-6f 6c 67 65 6e 21 28 00 |nt % erf olgen!(.|
0080 00 00 4d 65 73 73 61 67-65 73 20 6d 75 73 74 20 |..Messag es must |
0090 74 61 6b 65 20 70 6c 61-63 65 20 66 6f 72 20 6d |take pla ce for m|
00a0 61 6e 64 61 74 6f 72 20-25 21 d1 2d 00 00 00 44 |andator  %!Ñ-...D|
00b0 69 65 20 4d 65 72 67 65-20 50 72 6f 7a 65 64 75 |ie Merge  Prozedu|
00c0 72 20 6b 61 6e 6e 20 6e-69 63 68 74 20 67 65 6c |r kann n icht gel|
00d0 61 64 65 6e 20 77 65 72-64 65 6e 2e 1c 00 00 00 |aden wer den.....|
00e0 43 61 6e 6e 6f 74 20 6c-6f 61 64 20 6d 65 72 67 |Cannot l oad merg|
00f0 65 20 70 72 6f 63 65 64-75 72 65 2e d1 32 00 00 |e proced ure.Ñ2..|
0100 00 44 69 65 20 4d 69 6e-64 65 73 74 68 61 6c 74 |.Die Min desthalt|
0110 62 61 72 6b 65 69 74 20-69 73 74 20 6e 69 63 68 |barkeit  ist nich|
0120 74 20 65 72 66 c3 bc 6c-6c 74 21 20 28 62 69 73 |t erfül lt! (bis|
0130 20 25 29 2b 00 00 00 4d-69 6e 69 6d 75 6d 20 64 | %)+...M inimum d|
0140 75 72 61 62 69 6c 69 74-79 20 6e 6f 74 20 66 75 |urabilit y not fu|
0150 6c 66 69 6c 6c 65 64 20-28 75 6e 74 69 6c 20 25 |lfilled  (until %|
0160 29 21 d1 27 00 00 00 44-69 65 20 4d 6f 64 75 6c |)!Ñ'...D ie Modul|
0170 7a 75 6f 72 64 6e 75 6e-67 20 66 c3 bc 72 20 46 |zuordnun g für F|
0180 6f 72 6d 20 3c 25 3e 20-66 65 68 6c 74 2e 27 00 |orm <%>  fehlt.'.|
0190 00 00 4d 6f 64 75 6c 65-20 61 6c 6c 6f 63 61 74 |..Module  allocat|
01a0 69 6f 6e 20 66 6f 72 20-66 6f 72 6d 20 3c 25 3e |ion for  form <%>|
01b0 20 6d 69 73 73 69 6e 67-2e d1 2a 00 00 00 44 69 | missing .Ñ*...Di|
01c0 65 20 50 65 72 73 6f 6e-61 6c 6e 75 6d 6d 65 72 |e Person alnummer|
01d0 20 3e 25 3c 20 69 73 74-20 6e 69 63 68 74 20 62 | >%< ist  nicht b|
01e0 65 6b 61 6e 6e 74 20 21-1d 00 00 00 50 65 72 73 |ekannt ! ....Pers|
01f0 6f 6e 6e 65 6c 20 6e 75-6d 62 65 72 20 3e 25 3c |onnel nu mber >%<|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 117
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290960, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (117 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 100
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12909e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (100 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290960, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12909e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290960, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12909e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290960, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12909e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290960, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12909e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 75 6e 6b 6e 6f 77 6e |........  unknown|
0010 21 d1 50 00 00 00 44 69-65 20 50 72 65 69 73 65 |!ÑP...Di e Preise|
0020 72 6d 69 74 74 6c 75 6e-67 20 69 73 74 20 6e 69 |rmittlun g ist ni|
0030 63 68 74 20 65 69 6e 64-65 75 74 69 67 20 6d c3 |cht eind eutig mÃ|
0040 b6 67 6c 69 63 68 20 28-6d 65 68 72 65 72 65 20 |¶glich ( mehrere |
0050 56 50 45 73 20 69 6e 20-50 72 65 69 73 6c 69 73 |VPEs in  Preislis|
0060 74 65 20 25 29 21 41 00-00 00 50 72 69 63 65 20 |te %)!A. ..Price |
0070 63 61 6e 6e 6f 74 20 62-65 20 63 6c 65 61 72 6c |cannot b e clearl|
0080 79 20 64 65 74 65 72 6d-69 6e 65 64 20 28 73 65 |y determ ined (se|
0090 76 65 72 61 6c 20 50 55-73 20 69 6e 20 70 72 69 |veral PU s in pri|
00a0 63 65 20 6c 69 73 74 20-25 29 21 d1 3c 00 00 00 |ce list  %)!Ñ<...|
00b0 44 69 65 20 52 65 61 6b-74 69 6f 6e 73 61 72 74 |Die Reak tionsart|
00c0 20 41 20 28 25 20 25 29-20 69 73 74 20 62 69 73 | A (% %)  ist bis|
00d0 68 65 72 20 6e 6f 63 68-20 6e 69 63 68 74 20 75 |her noch  nicht u|
00e0 6e 74 65 72 73 74 c3 bc-74 7a 74 21 2b 00 00 00 |nterstü tzt!+...|
00f0 52 65 61 63 74 69 6f 6e-20 74 79 70 65 20 41 20 |Reaction  type A |
0100 28 25 20 25 29 20 69 73-20 6e 6f 74 20 79 65 74 |(% %) is  not yet|
0110 20 73 75 70 70 6f 72 74-65 64 21 d1 38 00 00 00 | support ed!Ñ8...|
0120 44 69 65 20 52 65 63 68-74 65 6d 61 73 6b 65 20 |Die Rech temaske |
0130 6b 61 6e 6e 20 6e 69 63-68 74 20 6f 68 6e 65 20 |kann nic ht ohne |
0140 47 72 75 70 70 65 20 61-62 67 65 66 72 61 67 74 |Gruppe a bgefragt|
0150 20 77 65 72 64 65 6e 21-2f 00 00 00 4e 6f 20 71 | werden! /...No q|
0160 75 65 72 79 20 70 6f 73-73 69 62 6c 65 20 6f 6e |uery pos sible on|
0170 20 72 69 67 68 74 73 20-6d 61 73 6b 20 77 69 74 | rights  mask wit|
0180 68 6f 75 74 20 67 72 6f-75 70 21 d1 22 00 00 00 |hout gro up!Ñ"...|
0190 44 69 65 20 52 65 73 65-72 76 61 74 69 6f 6e 20 |Die Rese rvation |
01a0 77 69 72 64 20 61 6b 74-75 61 6c 69 73 69 65 72 |wird akt ualisier|
01b0 74 21 1c 00 00 00 52 65-73 65 72 76 61 74 69 6f |t!....Re servatio|
01c0 6e 20 77 69 6c 6c 20 62-65 20 75 70 64 61 74 65 |n will b e update|
01d0 64 21 d1 3d 00 00 00 44-69 65 20 53 70 65 64 69 |d!Ñ=...D ie Spedi|
01e0 74 69 6f 6e 73 2d 4b 75-6e 64 65 6e 6e 75 6d 6d |tions-Ku ndennumm|
01f0 65 72 20 66 65 68 6c 74-20 69 6e 20 64 65 72 20 |er fehlt  in der |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1290960, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12909e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-56 65 72 73 61 6e 64 62 |........ Versandb|
0010 65 64 69 6e 67 75 6e 67-20 3c 25 3e 45 00 00 00 |edingung  <%>E...|
0020 54 68 65 20 73 68 69 70-70 69 6e 67 2d 63 75 73 |The ship ping-cus|
0030 74 6f 6d 65 72 20 6e 75-6d 62 65 72 20 69 73 20 |tomer nu mber is |
0040 6d 69 73 73 69 6e 67 20-69 6e 20 74 68 65 20 73 |missing  in the s|
0050 68 69 70 70 69 6e 67 20-63 6f 6e 64 69 74 69 6f |hipping  conditio|
0060 6e 20 3c 25 3e d1 22 00-00 00 44 69 65 20 54 72 |n <%>Ñ". ..Die Tr|
0070 69 67 67 65 72 20 64 65-72 20 54 61 62 65 6c 6c |igger de r Tabell|
0080 65 20 25 20 66 65 68 6c-65 6e 20 21 1c 00 00 00 |e % fehl en !....|
0090 54 72 69 67 67 65 72 73-20 6f 66 20 74 61 62 6c |Triggers  of tabl|
00a0 65 20 25 20 6d 69 73 73-69 6e 67 21 d1 58 00 00 |e % miss ing!ÑX..|
00b0 00 44 69 65 20 55 53 54-2d 49 64 20 65 6e 74 73 |.Die UST -Id ents|
00c0 70 72 69 63 68 74 20 6e-69 63 68 74 20 64 65 6d |pricht n icht dem|
00d0 20 4c c3 a4 6e 64 65 72-66 6f 72 6d 61 74 20 66 | Länder format f|
00e0 c3 bc 72 20 25 20 28 25-29 2e 20 42 69 74 74 65 |ür % (% ). Bitte|
00f0 20 70 72 c3 bc 66 65 6e-20 53 69 65 20 49 68 72 | prüfen  Sie Ihr|
0100 65 20 45 69 6e 67 61 62-65 47 00 00 00 56 41 54 |e Eingab eG...VAT|
0110 20 49 44 20 64 6f 65 73-20 6e 6f 74 20 63 6f 72 | ID does  not cor|
0120 72 65 73 70 6f 6e 64 20-74 6f 20 63 6f 75 6e 74 |respond  to count|
0130 72 79 20 66 6f 72 6d 61-74 20 25 20 28 25 29 2e |ry forma t % (%).|
0140 20 50 6c 65 61 73 65 20-63 68 65 63 6b 20 65 6e | Please  check en|
0150 74 72 79 2e d1 2f 00 00-00 44 69 65 20 56 50 45 |try.Ñ/.. .Die VPE|
0160 2d 56 6f 72 6c 61 67 65-20 66 c3 bc 72 20 25 20 |-Vorlage  für % |
0170 66 65 68 6c 74 20 69 6e-20 64 65 6e 20 53 74 61 |fehlt in  den Sta|
0180 6d 6d 64 61 74 65 6e 21-23 00 00 00 50 55 20 6d |mmdaten! #...PU m|
0190 61 73 74 65 72 20 25 20-6d 69 73 73 69 6e 67 20 |aster %  missing |
01a0 69 6e 20 6d 61 73 74 65-72 20 64 61 74 61 21 d1 |in maste r data!Ñ|
01b0 32 00 00 00 44 69 65 20-56 61 72 69 61 62 6c 65 |2...Die  Variable|
01c0 20 22 41 64 72 65 73 73-42 65 64 69 6e 67 75 6e | "Adress Bedingun|
01d0 67 22 20 69 73 74 20 6e-69 63 68 74 20 61 6e 67 |g" ist n icht ang|
01e0 65 6c 65 67 74 2e 32 00-00 00 54 68 65 20 76 61 |elegt.2. ..The va|
01f0 72 69 61 62 6c 65 20 22-41 64 72 65 73 73 42 65 |riable " AdressBe|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 88 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 88
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (88 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 69 6e 67 75 6e 67 22 |........ dingung"|
0010 20 69 73 20 6e 6f 74 20-65 73 74 61 62 6c 69 73 | is not  establis|
0020 68 65 64 2e d1 33 00 00-00 44 69 65 20 56 61 72 |hed.Ñ3.. .Die Var|
0030 69 61 62 6c 65 20 22 42-65 73 74 65 6c 6c 42 65 |iable "B estellBe|
0040 64 69 6e 67 75 6e 67 22-20 69 73 74 20 6e 69 63 |dingung"  ist nic|
0050 68 74 20 61 6e 67 65 6c-65 67 74 2e 33 00 00 00 |ht angel egt.3...|
0060 54 68 65 20 76 61 72 69-61 62 6c 65 20 22 42 65 |The vari able "Be|
0070 73 74 65 6c 6c 42 65 64-69 6e 67 75 6e 67 22 20 |stellBed ingung" |
0080 69 73 20 6e 6f 74 20 65-73 74 61 62 6c 69 73 68 |is not e stablish|
0090 65 64 2e d1 33 00 00 00-44 69 65 20 56 61 72 69 |ed.Ñ3... Die Vari|
00a0 61 62 6c 65 20 22 46 61-6b 74 75 72 61 42 65 64 |able "Fa kturaBed|
00b0 69 6e 67 75 6e 67 22 20-69 73 74 20 6e 69 63 68 |ingung"  ist nich|
00c0 74 20 61 6e 67 65 6c 65-67 74 2e 2e 00 00 00 56 |t angele gt.....V|
00d0 61 72 69 61 62 6c 65 20-22 46 61 6b 74 75 72 61 |ariable  "Faktura|
00e0 42 65 64 69 6e 67 75 6e-67 22 20 69 73 20 6e 6f |Bedingun g" is no|
00f0 74 20 72 65 67 69 73 74-65 72 65 64 2e d1 3e 00 |t regist ered.Ñ>.|
0100 00 00 44 69 65 20 56 61-72 69 61 62 6c 65 20 25 |..Die Va riable %|
0110 20 69 73 74 20 6e 69 63-68 74 20 64 65 66 69 6e | ist nic ht defin|
0120 69 65 72 74 2c 20 77 6f-6c 6c 65 6e 20 53 69 65 |iert, wo llen Sie|
0130 20 73 69 65 20 65 69 6e-72 69 63 68 74 65 6e 3f | sie ein richten?|
0140 24 00 00 00 56 61 72 69-61 62 6c 65 20 25 20 69 |$...Vari able % i|
0150 73 20 6e 6f 74 20 64 65-66 69 6e 65 64 2c 20 72 |s not de fined, r|
0160 65 67 69 73 74 65 72 3f-d1 38 00 00 00 44 69 65 |egister? Ñ8...Die|
0170 20 56 61 72 69 61 62 6c-65 20 3e 4c 6f 68 6e 53 | Variabl e >LohnS|
0180 56 4d 65 6c 64 65 4d 61-6e 64 61 6e 74 3c 20 69 |VMeldeMa ndant< i|
0190 73 74 20 6e 69 63 68 74-20 65 69 6e 67 65 74 72 |st nicht  eingetr|
01a0 61 67 65 6e 21 2d 00 00-00 56 61 72 69 61 62 6c |agen!-.. .Variabl|
01b0 65 20 3e 4c 6f 68 6e 53-56 4d 65 6c 64 65 4d 61 |e >LohnS VMeldeMa|
01c0 6e 64 61 6e 74 3c 20 6e-6f 74 20 72 65 67 69 73 |ndant< n ot regis|
01d0 74 65 72 65 64 21 d1 33-00 00 00 44 69 65 20 56 |tered!Ñ3 ...Die V|
01e0 61 72 69 61 62 6c 65 20-45 4c 53 54 45 52 2d 50 |ariable  ELSTER-P|
01f0 61 73 73 77 6f 72 74 20-69 73 74 20 6e 69 63 68 |asswort  ist nich|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344500, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13454c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13454c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 20 65 69 6e 67 65 74 |........ t einget|
0010 72 61 67 65 6e 21 28 00-00 00 56 61 72 69 61 62 |ragen!(. ..Variab|
0020 6c 65 20 45 4c 53 54 45-52 20 70 61 73 73 77 6f |le ELSTE R passwo|
0030 72 64 20 6e 6f 74 20 72-65 67 69 73 74 65 72 65 |rd not r egistere|
0040 64 21 d1 35 00 00 00 44-69 65 20 56 61 72 69 61 |d!Ñ5...D ie Varia|
0050 62 6c 65 20 49 4e 54 52-41 53 54 41 54 2d 4b 65 |ble INTR ASTAT-Ke|
0060 6e 6e 75 6e 67 20 69 73-74 20 6e 69 63 68 74 20 |nnung is t nicht |
0070 65 69 6e 67 65 74 72 61-67 65 6e 21 2f 00 00 00 |eingetra gen!/...|
0080 4e 6f 20 65 6e 74 72 79-20 66 6f 72 20 76 61 72 |No entry  for var|
0090 69 61 62 6c 65 20 49 4e-54 52 41 53 54 41 54 20 |iable IN TRASTAT |
00a0 69 64 65 6e 74 69 66 69-63 61 74 69 6f 6e 21 d1 |identifi cation!Ñ|
00b0 36 00 00 00 44 69 65 20-56 61 72 69 61 62 6c 65 |6...Die  Variable|
00c0 20 49 4e 54 52 41 53 54-41 54 2d 50 61 73 73 77 | INTRAST AT-Passw|
00d0 6f 72 74 20 69 73 74 20-6e 69 63 68 74 20 65 69 |ort ist  nicht ei|
00e0 6e 67 65 74 72 61 67 65-6e 21 29 00 00 00 4e 6f |ngetrage n!)...No|
00f0 20 65 6e 74 72 79 20 66-6f 72 20 76 61 72 69 61 | entry f or varia|
0100 62 6c 65 20 49 4e 54 52-41 53 54 41 54 20 70 61 |ble INTR ASTAT pa|
0110 73 73 77 6f 72 64 21 d1-6e 00 00 00 44 69 65 20 |ssword!Ñ n...Die |
0120 56 61 72 69 61 62 6c 65-20 4b 72 65 64 5a 4c 44 |Variable  KredZLD|
0130 44 54 41 41 62 6c 61 75-66 20 67 65 73 74 61 74 |DTAAblau f gestat|
0140 74 65 74 20 6b 65 69 6e-65 20 44 54 41 2d 47 65 |tet kein e DTA-Ge|
0150 6e 65 72 69 65 72 75 6e-67 20 28 44 45 29 2e 20 |nerierun g (DE). |
0160 42 69 74 74 65 20 6b 6f-6e 74 72 6f 6c 6c 69 65 |Bitte ko ntrollie|
0170 72 65 6e 20 53 69 65 20-64 69 65 20 45 69 6e 73 |ren Sie  die Eins|
0180 74 65 6c 6c 75 6e 67 65-6e 2e 5e 00 00 00 56 61 |tellunge n.^...Va|
0190 72 69 61 62 6c 65 20 4b-72 65 64 5a 4c 44 44 54 |riable K redZLDDT|
01a0 41 41 62 6c 61 75 66 20-64 6f 65 73 20 6e 6f 74 |AAblauf  does not|
01b0 20 61 6c 6c 6f 77 20 44-54 41 20 67 65 6e 65 72 | allow D TA gener|
01c0 61 74 69 6e 67 20 28 44-45 29 2e 20 50 6c 65 61 |ating (D E). Plea|
01d0 73 65 20 63 68 65 63 6b-20 74 68 65 20 63 6f 6e |se check  the con|
01e0 66 69 67 75 72 61 74 69-6f 6e 73 2e d1 31 00 00 |figurati ons.Ñ1..|
01f0 00 44 69 65 20 56 61 72-69 61 62 6c 65 6e 20 3e |.Die Var iablen >|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13454c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13454c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13454c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1344560, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 110 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 94 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 110
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (110 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 94
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (94 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-4c 6f 68 6e 42 56 47 42 |........ LohnBVGB|
0010 72 75 74 74 6f 3c 20 69-73 74 20 6e 69 63 68 74 |rutto< i st nicht|
0020 20 67 65 73 65 74 7a 74-20 21 25 00 00 00 56 61 | gesetzt  !%...Va|
0030 72 69 61 62 6c 65 20 3e-4c 6f 68 6e 42 56 47 42 |riable > LohnBVGB|
0040 72 75 74 74 6f 3c 20 6e-6f 74 20 64 65 66 69 6e |rutto< n ot defin|
0050 65 64 21 d1 5a 00 00 00-44 69 65 20 56 65 72 62 |ed!ÑZ... Die Verb|
0060 69 6e 64 75 6e 67 20 7a-75 72 20 44 61 74 65 6e |indung z ur Daten|
0070 62 61 6e 6b 20 25 20 6b-61 6e 6e 20 6e 69 63 68 |bank % k ann nich|
0080 74 20 61 75 66 67 65 62-61 75 74 20 77 65 72 64 |t aufgeb aut werd|
0090 65 6e 21 20 57 6f 6c 6c-65 6e 20 53 69 65 20 6e |en! Woll en Sie n|
00a0 6f 63 68 6d 61 6c 73 20-76 65 72 73 75 63 68 65 |ochmals  versuche|
00b0 6e 3f 31 00 00 00 43 61-6e 6e 6f 74 20 65 73 74 |n?1...Ca nnot est|
00c0 61 62 6c 69 73 68 20 63-6f 6e 6e 65 63 74 69 6f |ablish c onnectio|
00d0 6e 20 74 6f 20 64 61 74-61 62 61 73 65 20 25 21 |n to dat abase %!|
00e0 20 52 65 74 72 79 3f d1-26 00 00 00 44 69 65 20 | Retry?Ñ &...Die |
00f0 56 65 72 70 61 63 6b 75-6e 67 73 65 69 6e 68 65 |Verpacku ngseinhe|
0100 69 74 20 25 20 69 73 74-20 67 65 73 70 65 72 72 |it % ist  gesperr|
0110 74 21 19 00 00 00 50 61-63 6b 61 67 69 6e 67 20 |t!....Pa ckaging |
0120 75 6e 69 74 20 25 20 62-6c 6f 63 6b 65 64 21 d1 |unit % b locked!Ñ|
0130 3c 00 00 00 44 69 65 20-56 65 72 70 61 63 6b 75 |<...Die  Verpacku|
0140 6e 67 73 65 69 6e 68 65-69 74 20 25 20 69 73 74 |ngseinhe it % ist|
0150 20 69 6e 20 64 65 6e 20-56 50 45 2d 53 74 61 6d | in den  VPE-Stam|
0160 6d 64 61 74 65 6e 20 67-65 73 70 65 72 72 74 21 |mdaten g esperrt!|
0170 2b 00 00 00 50 61 63 6b-61 67 69 6e 67 20 75 6e |+...Pack aging un|
0180 69 74 20 25 20 62 6c 6f-63 6b 65 64 20 69 6e 20 |it % blo cked in |
0190 50 55 20 6d 61 73 74 65-72 20 64 61 74 61 21 d1 |PU maste r data!Ñ|
01a0 38 00 00 00 44 69 65 20-56 65 72 70 61 63 6b 75 |8...Die  Verpacku|
01b0 6e 67 73 65 69 6e 68 65-69 74 20 65 6e 74 73 70 |ngseinhe it entsp|
01c0 72 69 63 68 74 20 6e 69-63 68 74 20 64 65 72 20 |richt ni cht der |
01d0 52 65 73 65 72 76 61 74-69 6f 6e 21 2a 00 00 00 |Reservat ion!*...|
01e0 50 61 63 6b 69 6e 67 20-75 6e 69 74 20 64 6f 65 |Packing  unit doe|
01f0 73 20 6e 6f 74 20 66 69-74 20 74 68 65 20 72 65 |s not fi t the re|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 90 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 90
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (90 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 65 72 76 61 74 69 6f |........ servatio|
0010 6e 21 d1 2c 00 00 00 44-69 65 20 56 65 72 73 61 |n!Ñ,...D ie Versa|
0020 6e 64 62 65 64 69 6e 67-75 6e 67 20 25 20 70 61 |ndbeding ung % pa|
0030 73 73 74 20 6e 69 63 68-74 20 7a 75 6d 20 25 20 |sst nich t zum % |
0040 28 25 29 29 00 00 00 53-68 69 70 70 69 6e 67 20 |(%))...S hipping |
0050 63 6f 6e 64 69 74 69 6f-6e 20 25 20 64 6f 65 73 |conditio n % does|
0060 20 6e 6f 74 20 6d 61 74-63 68 20 25 20 28 25 29 | not mat ch % (%)|
0070 d1 33 00 00 00 44 69 65-20 5a 6f 6c 6c 49 6d 70 |Ñ3...Die  ZollImp|
0080 6f 72 74 50 72 61 65 66-65 72 65 6e 7a 20 6b 61 |ortPraef erenz ka|
0090 6e 6e 20 6e 69 63 68 74-20 67 65 73 65 74 7a 74 |nn nicht  gesetzt|
00a0 20 77 65 72 64 65 6e 21-2b 00 00 00 43 61 6e 6e | werden! +...Cann|
00b0 6f 74 20 65 73 74 61 62-6c 69 73 68 20 63 75 73 |ot estab lish cus|
00c0 74 6f 6d 73 20 69 6d 70-6f 72 74 20 70 72 65 66 |toms imp ort pref|
00d0 65 72 65 6e 63 65 21 d1-64 00 00 00 44 69 65 20 |erence!Ñ d...Die |
00e0 5a 75 67 61 6e 67 73 64-61 74 65 6e 20 66 c3 bc |Zugangsd aten fü|
00f0 72 20 64 65 6e 20 57 65-62 73 65 72 76 69 63 65 |r den We bservice|
0100 20 22 42 61 72 63 6f 64-65 22 20 73 69 6e 64 20 | "Barcod e" sind |
0110 66 61 6c 73 63 68 20 65-69 6e 67 65 74 72 61 67 |falsch e ingetrag|
0120 65 6e 20 28 56 61 72 69-61 62 6c 65 20 41 75 66 |en (Vari able Auf|
0130 74 53 70 65 64 50 43 48-41 63 63 6f 75 6e 74 29 |tSpedPCH Account)|
0140 52 00 00 00 45 72 72 6f-72 73 20 69 6e 20 61 63 |R...Erro rs in ac|
0150 63 65 73 73 20 64 61 74-61 20 66 6f 72 20 74 68 |cess dat a for th|
0160 65 20 77 65 62 20 73 65-72 76 69 63 65 20 22 62 |e web se rvice "b|
0170 61 72 20 63 6f 64 65 22-20 28 56 61 72 69 61 62 |ar code"  (Variab|
0180 6c 65 20 41 75 66 74 53-70 65 64 50 43 48 41 63 |le AuftS pedPCHAc|
0190 63 6f 75 6e 74 29 d1 63-00 00 00 44 69 65 20 5a |count)Ñc ...Die Z|
01a0 75 67 61 6e 67 73 64 61-74 65 6e 20 66 c3 bc 72 |ugangsda ten für|
01b0 20 64 65 6e 20 57 65 62-73 65 72 76 69 63 65 20 | den Web service |
01c0 22 42 61 72 63 6f 64 65-22 20 73 69 6e 64 20 6e |"Barcode " sind n|
01d0 69 63 68 74 20 65 69 6e-67 65 74 72 61 67 65 6e |icht ein getragen|
01e0 20 28 56 61 72 69 61 62-6c 65 20 41 75 66 74 53 | (Variab le AuftS|
01f0 70 65 64 50 43 48 41 63-63 6f 75 6e 74 29 52 00 |pedPCHAc count)R.|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a3d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 100 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 100
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147aec0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (100 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 99 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 45 72 72 6f 72 73 |........ ..Errors|
0010 20 69 6e 20 61 63 63 65-73 73 20 64 61 74 61 20 | in acce ss data |
0020 66 6f 72 20 74 68 65 20-77 65 62 20 73 65 72 76 |for the  web serv|
0030 69 63 65 20 22 62 61 72-20 63 6f 64 65 22 20 28 |ice "bar  code" (|
0040 56 61 72 69 61 62 6c 65-20 41 75 66 74 53 70 65 |Variable  AuftSpe|
0050 64 50 43 48 41 63 63 6f-75 6e 74 29 d1 44 00 00 |dPCHAcco unt)ÑD..|
0060 00 44 69 65 20 65 69 6e-67 65 73 74 65 6c 6c 74 |.Die ein gestellt|
0070 65 20 4d 65 74 68 6f 64-65 20 66 c3 bc 72 20 64 |e Method e für d|
0080 61 73 20 53 48 44 42 20-65 72 6c 61 75 62 74 20 |as SHDB  erlaubt |
0090 64 69 65 73 65 20 46 75-6e 6b 74 69 6f 6e 20 6e |diese Fu nktion n|
00a0 69 63 68 74 21 3d 00 00-00 54 68 65 20 73 65 6c |icht!=.. .The sel|
00b0 65 63 74 65 64 20 6d 65-74 68 6f 64 20 66 6f 72 |ected me thod for|
00c0 20 74 68 65 20 53 44 53-20 64 6f 65 73 20 6e 6f | the SDS  does no|
00d0 74 20 61 6c 6c 6f 77 20-74 68 69 73 20 66 75 6e |t allow  this fun|
00e0 63 74 69 6f 6e 21 d1 30-00 00 00 44 69 65 20 66 |ction!Ñ0 ...Die f|
00f0 6f 6c 67 65 6e 64 65 6e-20 42 65 75 74 65 6c 49 |olgenden  BeutelI|
0100 44 73 20 77 75 72 64 65-6e 20 6d 65 68 72 66 61 |Ds wurde n mehrfa|
0110 63 68 20 65 72 66 61 73-73 74 3a 3f 00 00 00 54 |ch erfas st:?...T|
0120 68 65 20 66 6f 6c 6c 6f-77 69 6e 67 20 73 61 74 |he follo wing sat|
0130 63 68 65 6c 2d 49 44 73-20 68 61 76 65 6e 20 62 |chel-IDs  haven b|
0140 65 65 6e 20 72 65 67 69-73 74 65 72 65 64 20 6d |een regi stered m|
0150 75 6c 74 69 70 6c 65 20-74 69 6d 65 73 3a d1 6d |ultiple  times:Ñm|
0160 00 00 00 44 69 65 20 69-6e 20 64 65 72 20 43 68 |...Die i n der Ch|
0170 61 72 67 65 20 25 2f 25-20 65 69 6e 67 65 74 72 |arge %/%  eingetr|
0180 61 67 65 6e 65 20 56 6f-72 73 63 68 72 69 66 74 |agene Vo rschrift|
0190 20 56 2e 25 20 65 78 69-73 74 69 65 72 74 20 6e | V.% exi stiert n|
01a0 69 63 68 74 2c 20 69 73-74 20 64 61 73 20 67 67 |icht, is t das gg|
01b0 66 2e 20 65 69 6e 65 20-43 68 61 72 67 65 20 61 |f. eine  Charge a|
01c0 75 73 20 64 65 72 20 56-6f 72 7a 65 69 74 20 3f |us der V orzeit ?|
01d0 56 00 00 00 46 6f 72 20-62 61 74 63 68 20 25 2f |V...For  batch %/|
01e0 25 20 74 68 65 20 72 65-67 69 73 74 65 72 65 64 |% the re gistered|
01f0 20 72 65 67 75 6c 61 74-69 6f 6e 20 56 2e 25 20 | regulat ion V.% |

token.c:2111:tds_get_data(): wire column size is 82 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 99
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147aec0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (99 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147aec0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147aec0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 109 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 6f 65 73 20 6e 6f 74 |........ does not|
0010 20 65 78 69 73 74 2c 20-69 73 20 69 74 20 70 65 | exist,  is it pe|
0020 72 68 61 70 73 20 70 72-65 68 69 73 74 6f 72 69 |rhaps pr ehistori|
0030 63 3f d1 48 00 00 00 44-69 65 20 c3 9c 62 65 72 |c?ÑH...D ie Ã.ber|
0040 6e 61 68 6d 65 20 77 75-72 64 65 20 61 75 73 67 |nahme wu rde ausg|
0050 65 66 c3 bc 68 72 74 2e-20 42 69 74 74 65 20 6b |eführt.  Bitte k|
0060 6f 6e 74 72 6f 6c 6c 69-65 72 65 6e 20 53 69 65 |ontrolli eren Sie|
0070 20 64 61 73 20 50 72 6f-74 6f 6b 6f 6c 6c 21 25 | das Pro tokoll!%|
0080 00 00 00 43 6f 70 79 20-70 72 6f 63 65 73 73 65 |...Copy  processe|
0090 64 2e 20 50 6c 65 61 73-65 20 63 68 65 63 6b 20 |d. Pleas e check |
00a0 74 68 65 20 6c 6f 67 21-d1 20 00 00 00 44 69 65 |the log! Ñ ...Die|
00b0 73 65 20 41 6e 6c 61 67-65 20 69 73 74 20 6e 69 |se Anlag e ist ni|
00c0 63 68 74 20 62 65 6b 61-6e 6e 74 20 21 1b 00 00 |cht beka nnt !...|
00d0 00 54 68 69 73 20 69 6e-76 65 73 74 6d 65 6e 74 |.This in vestment|
00e0 20 69 73 20 75 6e 6b 6e-6f 77 6e 21 d1 4f 00 00 | is unkn own!ÑO..|
00f0 00 44 69 65 73 65 20 42-65 6c 65 67 6e 75 6d 6d |.Diese B elegnumm|
0100 65 72 20 77 75 72 64 65-20 62 65 72 65 69 74 73 |er wurde  bereits|
0110 20 76 65 72 77 65 6e 64-65 74 2e 20 4d c3 b6 63 | verwend et. Möc|
0120 68 74 65 6e 20 53 69 65-20 65 69 6e 65 20 4b 6f |hten Sie  eine Ko|
0130 72 72 65 6b 74 75 72 20-62 75 63 68 65 6e 20 3f |rrektur  buchen ?|
0140 4c 00 00 00 54 68 69 73-20 76 6f 75 63 68 65 72 |L...This  voucher|
0150 20 6e 75 6d 62 65 72 20-68 61 73 20 61 6c 72 65 | number  has alre|
0160 61 64 79 20 62 65 65 6e-20 75 73 65 64 2e 20 44 |ady been  used. D|
0170 6f 20 79 6f 75 20 77 69-73 68 20 74 6f 20 70 6f |o you wi sh to po|
0180 73 74 20 61 20 63 6f 72-72 65 63 74 69 6f 6e 3f |st a cor rection?|
0190 d1 4b 00 00 00 44 69 65-73 65 20 42 65 6c 65 67 |ÑK...Die se Beleg|
01a0 6e 75 6d 6d 65 72 20 77-75 72 64 65 20 62 65 72 |nummer w urde ber|
01b0 65 69 74 73 20 76 65 72-77 65 6e 64 65 74 2e 20 |eits ver wendet. |
01c0 57 c3 bc 6e 73 63 68 65-6e 20 53 69 65 20 65 69 |Wünsche n Sie ei|
01d0 6e 65 20 53 74 6f 72 6e-69 65 72 75 6e 67 20 3f |ne Storn ierung ?|
01e0 2d 00 00 00 56 6f 75 63-68 65 72 20 6e 75 6d 62 |-...Vouc her numb|
01f0 65 72 20 68 61 73 20 61-6c 72 65 61 64 79 20 62 |er has a lready b|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 109
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147b530, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (109 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147b530, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147b530, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 76 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147b530, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 76
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (76 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 65 6e 20 75 73 65 64 |........ een used|
0010 2e 20 43 61 6e 63 65 6c-3f d1 33 00 00 00 44 69 |. Cancel ?Ñ3...Di|
0020 65 73 65 20 42 65 77 65-67 75 6e 67 73 61 72 74 |ese Bewe gungsart|
0030 20 6b 61 6e 6e 20 68 69-65 72 20 6e 69 63 68 74 | kann hi er nicht|
0040 20 76 65 72 77 65 6e 64-65 74 20 77 65 72 64 65 | verwend et werde|
0050 6e 29 00 00 00 54 68 69-73 20 74 72 61 6e 73 61 |n)...Thi s transa|
0060 63 74 69 6f 6e 20 74 79-70 65 20 63 61 6e 6e 6f |ction ty pe canno|
0070 74 20 62 65 20 75 73 65-64 20 68 65 72 65 d1 60 |t be use d hereÑ`|
0080 00 00 00 44 69 65 73 65-20 42 75 63 68 75 6e 67 |...Diese  Buchung|
0090 20 69 73 74 20 6b 65 69-6e 65 20 4e 6f 72 6d 61 | ist kei ne Norma|
00a0 6c 2d 20 75 6e 64 20 6b-65 69 6e 65 20 41 62 73 |l- und k eine Abs|
00b0 63 68 6c 75 73 73 62 75-63 68 75 6e 67 2e 20 53 |chlussbu chung. S|
00c0 69 65 20 6b 61 6e 6e 20-73 6f 20 6e 69 63 68 74 |ie kann  so nicht|
00d0 20 73 74 6f 72 6e 69 65-72 74 20 77 65 72 64 65 | stornie rt werde|
00e0 6e 20 21 56 00 00 00 50-6f 73 74 69 6e 67 20 69 |n !V...P osting i|
00f0 73 20 6e 6f 74 20 61 20-6e 6f 72 6d 61 6c 20 70 |s not a  normal p|
0100 6f 73 74 69 6e 67 20 6e-6f 72 20 61 20 63 6c 6f |osting n or a clo|
0110 73 69 6e 67 20 65 6e 74-72 79 2e 20 59 6f 75 20 |sing ent ry. You |
0120 63 61 6e 6e 6f 74 20 63-61 6e 63 65 6c 20 69 74 |cannot c ancel it|
0130 20 69 6e 20 74 68 69 73-20 77 61 79 21 d1 49 00 | in this  way!ÑI.|
0140 00 00 44 69 65 73 65 20-42 75 63 68 75 6e 67 20 |..Diese  Buchung |
0150 6b 6f 6d 6d 74 20 61 75-73 20 65 69 6e 65 6e 20 |kommt au s einen |
0160 4e 65 62 65 6e 62 75 63-68 2e 20 53 69 65 20 6d |Nebenbuc h. Sie m|
0170 75 73 73 20 64 6f 72 74-20 73 74 6f 72 6e 69 65 |uss dort  stornie|
0180 72 74 20 77 65 72 64 65-6e 20 21 46 00 00 00 50 |rt werde n !F...P|
0190 6f 73 74 69 6e 67 20 6f-72 69 67 69 6e 61 74 65 |osting o riginate|
01a0 73 20 66 72 6f 6d 20 61-20 73 75 62 73 69 64 69 |s from a  subsidi|
01b0 61 72 79 20 62 6f 6f 6b-2e 20 49 74 20 6d 75 73 |ary book . It mus|
01c0 74 20 62 65 20 63 61 6e-63 65 6c 6c 65 64 20 74 |t be can celled t|
01d0 68 65 72 65 21 d1 32 00-00 00 44 69 65 73 65 20 |here!Ñ2. ..Diese |
01e0 46 75 6e 6b 74 69 6f 6e-20 69 73 74 20 69 6e 20 |Funktion  ist in |
01f0 41 6e 7a 65 69 67 65 6d-6f 64 75 73 20 6e 69 63 |Anzeigem odus nic|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147b530, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147b530, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 96 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 86 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 96
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (96 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 86
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (86 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-68 74 20 6d c3 b6 67 6c |........ ht mögl|
0010 69 63 68 21 24 00 00 00-46 75 6e 63 74 69 6f 6e |ich!$... Function|
0020 20 69 6d 70 6f 73 73 69-62 6c 65 20 69 6e 20 76 | impossi ble in v|
0030 69 65 77 69 6e 67 20 6d-6f 64 65 21 d1 3e 00 00 |iewing m ode!Ñ>..|
0040 00 44 69 65 73 65 20 46-75 6e 6b 74 69 6f 6e 20 |.Diese F unktion |
0050 73 74 65 68 74 20 66 c3-bc 72 20 41 74 74 72 69 |steht fà ¼r Attri|
0060 62 75 74 65 20 7a 75 20-25 20 6e 69 63 68 74 20 |bute zu  % nicht |
0070 7a 75 72 20 56 65 72 66-c3 bc 67 75 6e 67 21 35 |zur Verf ügung!5|
0080 00 00 00 54 68 69 73 20-66 75 6e 63 74 69 6f 6e |...This  function|
0090 20 69 73 20 6e 6f 74 20-61 76 61 69 6c 61 62 6c | is not  availabl|
00a0 65 20 66 6f 72 20 61 74-74 72 69 62 75 74 65 73 |e for at tributes|
00b0 20 66 6f 72 20 25 20 21-d1 3a 00 00 00 44 69 65 | for % ! Ñ:...Die|
00c0 73 65 20 46 75 6e 6b 74-69 6f 6e 20 73 74 65 68 |se Funkt ion steh|
00d0 74 20 6e 75 72 20 64 65-6d 20 41 64 6d 69 6e 69 |t nur de m Admini|
00e0 73 74 72 61 74 6f 72 20-7a 75 72 20 56 65 72 66 |strator  zur Verf|
00f0 c3 bc 67 75 6e 67 21 2d-00 00 00 46 75 6e 63 74 |ügung!- ...Funct|
0100 69 6f 6e 20 6f 6e 6c 79-20 61 76 61 69 6c 61 62 |ion only  availab|
0110 6c 65 20 74 6f 20 74 68-65 20 61 64 6d 69 6e 69 |le to th e admini|
0120 73 74 72 61 74 6f 72 21-d1 24 00 00 00 44 69 65 |strator! Ñ$...Die|
0130 73 65 20 4b 53 54 20 68-61 74 20 6b 65 69 6e 65 |se KST h at keine|
0140 20 4b 50 20 65 69 6e 67-65 74 72 61 67 65 6e 20 | KP eing etragen |
0150 21 1d 00 00 00 4e 6f 20-43 50 20 72 65 67 69 73 |!....No  CP regis|
0160 74 65 72 65 64 20 66 6f-72 20 74 68 69 73 20 43 |tered fo r this C|
0170 43 21 d1 1d 00 00 00 44-69 65 73 65 20 4b 53 54 |C!Ñ....D iese KST|
0180 20 69 73 74 20 6e 69 63-68 74 20 62 65 6b 61 6e | ist nic ht bekan|
0190 6e 74 20 21 0b 00 00 00-43 43 20 75 6e 6b 6e 6f |nt !.... CC unkno|
01a0 77 6e 21 d1 1c 00 00 00-44 69 65 73 65 20 4b 53 |wn!Ñ.... Diese KS|
01b0 54 20 69 73 74 20 6e 69-63 68 74 20 62 65 6b 61 |T ist ni cht beka|
01c0 6e 6e 74 21 0b 00 00 00-43 43 20 75 6e 6b 6e 6f |nnt!.... CC unkno|
01d0 77 6e 21 d1 25 00 00 00-44 69 65 73 65 20 4b 75 |wn!Ñ%... Diese Ku|
01e0 6e 64 65 6e 67 72 75 70-70 65 20 69 73 74 20 6e |ndengrup pe ist n|
01f0 69 63 68 74 20 62 65 6b-61 6e 6e 74 21 17 00 00 |icht bek annt!...|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 43 75 73 74 6f 6d 65 |........ .Custome|
0010 72 20 67 72 6f 75 70 20-75 6e 6b 6e 6f 77 6e 21 |r group  unknown!|
0020 d1 25 00 00 00 44 69 65-73 65 20 4d 6f 64 69 66 |Ñ%...Die se Modif|
0030 69 6b 61 74 69 6f 6e 20-69 73 74 20 6e 69 63 68 |ikation  ist nich|
0040 74 20 65 72 6c 61 75 62-74 21 21 00 00 00 54 68 |t erlaub t!!...Th|
0050 69 73 20 6d 6f 64 69 66-69 63 61 74 69 6f 6e 20 |is modif ication |
0060 69 73 20 6e 6f 74 20 61-6c 6c 6f 77 65 64 21 d1 |is not a llowed!Ñ|
0070 29 00 00 00 44 69 65 73-65 20 50 65 72 73 6f 6e |)...Dies e Person|
0080 20 69 73 74 20 6e 69 63-68 74 20 69 6d 20 50 65 | ist nic ht im Pe|
0090 72 73 6f 6e 61 6c 73 74-61 6d 6d 20 21 21 00 00 |rsonalst amm !!..|
00a0 00 50 65 72 73 6f 6e 20-6e 6f 74 20 69 6e 20 74 |.Person  not in t|
00b0 68 65 20 70 65 72 73 6f-6e 6e 65 6c 20 62 61 73 |he perso nnel bas|
00c0 65 21 d1 21 00 00 00 44-69 65 73 65 20 57 c3 a4 |e!Ñ!...D iese Wä|
00d0 68 72 75 6e 67 20 69 73-74 20 6e 69 63 68 74 20 |hrung is t nicht |
00e0 62 65 6b 61 6e 6e 74 21-19 00 00 00 54 68 69 73 |bekannt! ....This|
00f0 20 63 75 72 72 65 6e 63-79 20 69 73 20 75 6e 6b | currenc y is unk|
0100 6e 6f 77 6e 21 d1 25 00-00 00 44 69 65 73 65 72 |nown!Ñ%. ..Dieser|
0110 20 45 69 67 65 6e 74 75-65 6d 65 72 20 69 73 74 | Eigentu emer ist|
0120 20 6e 69 63 68 74 20 62-65 6b 61 6e 6e 74 21 0e | nicht b ekannt!.|
0130 00 00 00 4f 77 6e 65 72-20 75 6e 6b 6e 6f 77 6e |...Owner  unknown|
0140 21 d1 21 00 00 00 44 69-65 73 65 72 20 4b 50 20 |!Ñ!...Di eser KP |
0150 69 73 74 20 69 6e 20 25-20 6e 69 63 68 74 20 62 |ist in %  nicht b|
0160 65 6b 61 6e 6e 74 21 10-00 00 00 43 50 20 75 6e |ekannt!. ...CP un|
0170 6b 6e 6f 77 6e 20 69 6e-20 25 21 d1 1c 00 00 00 |known in  %!Ñ....|
0180 44 69 65 73 65 72 20 4b-50 20 69 73 74 20 6e 69 |Dieser K P ist ni|
0190 63 68 74 20 62 65 6b 61-6e 6e 74 21 13 00 00 00 |cht beka nnt!....|
01a0 54 68 69 73 20 43 50 20-69 73 20 75 6e 6b 6e 6f |This CP  is unkno|
01b0 77 6e 21 d1 20 00 00 00-44 69 65 73 65 72 20 4d |wn!Ñ ... Dieser M|
01c0 61 6e 64 61 6e 74 20 65-78 69 73 74 69 65 72 74 |andant e xistiert|
01d0 20 6e 69 63 68 74 20 21-18 00 00 00 4d 61 6e 64 | nicht ! ....Mand|
01e0 61 74 6f 72 20 64 6f 65-73 20 6e 6f 74 20 65 78 |ator doe s not ex|
01f0 69 73 74 21 d1 42 00 00-00 44 69 65 73 65 72 20 |ist!ÑB.. .Dieser |

token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147af30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d2800, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x129d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-4d 61 6e 64 61 6e 74 20 |........ Mandant |
0010 69 73 74 20 6e 69 63 68-74 20 69 6e 20 64 65 72 |ist nich t in der|
0020 20 4c 69 73 74 65 20 69-68 72 65 72 20 4d 61 6e | Liste i hrer Man|
0030 64 61 6e 74 65 6e 20 65-69 6e 67 65 74 72 61 67 |danten e ingetrag|
0040 65 6e 21 27 00 00 00 4d-61 6e 64 61 74 6f 72 20 |en!'...M andator |
0050 6e 6f 74 20 6f 6e 20 79-6f 75 72 20 6c 69 73 74 |not on y our list|
0060 20 6f 66 20 6d 61 6e 64-61 74 6f 72 73 21 d1 25 | of mand ators!Ñ%|
0070 00 00 00 44 69 65 73 65-72 20 53 63 68 6c c3 bc |...Diese r Schlü|
0080 73 73 65 6c 20 69 73 74-20 6e 69 63 68 74 20 62 |ssel ist  nicht b|
0090 65 6b 61 6e 6e 74 20 21-14 00 00 00 54 68 69 73 |ekannt ! ....This|
00a0 20 6b 65 79 20 69 73 20-75 6e 6b 6e 6f 77 6e 21 | key is  unknown!|
00b0 d1 24 00 00 00 44 69 65-73 65 72 20 53 70 72 61 |Ñ$...Die ser Spra|
00c0 63 68 63 6f 64 65 20 69-73 74 20 6e 69 63 68 74 |chcode i st nicht|
00d0 20 62 65 6b 61 6e 6e 74-21 1e 00 00 00 54 68 69 | bekannt !....Thi|
00e0 73 20 6c 61 6e 67 75 61-67 65 20 63 6f 64 65 20 |s langua ge code |
00f0 69 73 20 75 6e 6b 6e 6f-77 6e 21 d1 23 00 00 00 |is unkno wn!Ñ#...|
0100 44 69 65 73 65 72 20 56-65 72 74 72 65 74 65 72 |Dieser V ertreter|
0110 20 69 73 74 20 6e 69 63-68 74 20 62 65 6b 61 6e | ist nic ht bekan|
0120 6e 74 21 17 00 00 00 52-65 70 72 65 73 65 6e 74 |nt!....R epresent|
0130 61 74 69 76 65 20 75 6e-6b 6e 6f 77 6e 21 d1 1f |ative un known!Ñ.|
0140 00 00 00 44 69 65 73 65-72 20 57 65 72 74 20 69 |...Diese r Wert i|
0150 73 74 20 6e 69 63 68 74-20 62 65 6b 61 6e 6e 74 |st nicht  bekannt|
0160 20 21 16 00 00 00 54 68-69 73 20 76 61 6c 75 65 | !....Th is value|
0170 20 69 73 20 75 6e 6b 6e-6f 77 6e 21 d1 3e 00 00 | is unkn own!Ñ>..|
0180 00 44 69 65 73 65 72 20-57 65 72 74 20 6b 61 6e |.Dieser  Wert kan|
0190 6e 20 6e 69 63 68 74 20-6d 65 68 72 20 6f 64 65 |n nicht  mehr ode|
01a0 72 20 6e 6f 63 68 20 6e-69 63 68 74 20 67 65 c3 |r noch n icht geÃ|
01b0 a4 6e 64 65 72 74 20 77-65 72 64 65 6e 20 21 2a |¤ndert w erden !*|
01c0 00 00 00 54 68 69 73 20-76 61 6c 75 65 20 63 61 |...This  value ca|
01d0 6e 6e 6f 74 20 62 65 20-63 68 61 6e 67 65 64 20 |nnot be  changed |
01e0 61 6e 79 6d 6f 72 65 2f-20 79 65 74 21 d1 4f 00 |anymore/  yet!ÑO.|
01f0 00 00 44 69 65 73 65 72-20 57 65 72 74 20 6b 61 |..Dieser  Wert ka|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14deaa0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d3f50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 6e 20 6e 69 63 68 74 |........ nn nicht|
0010 20 6d 65 68 72 20 6f 64-65 72 20 6e 6f 63 68 20 | mehr od er noch |
0020 6e 69 63 68 74 20 67 65-c3 a4 6e 64 65 72 74 20 |nicht ge ändert |
0030 77 65 72 64 65 6e 21 20-54 72 6f 74 7a 64 65 6d |werden!  Trotzdem|
0040 20 c3 a4 6e 64 65 72 6e-3f 39 00 00 00 54 68 69 | ändern ?9...Thi|
0050 73 20 76 61 6c 75 65 20-63 61 6e 6e 6f 74 20 62 |s value  cannot b|
0060 65 20 63 68 61 6e 67 65-64 20 61 6e 79 6d 6f 72 |e change d anymor|
0070 65 2f 20 79 65 74 21 20-43 68 61 6e 67 65 20 61 |e/ yet!  Change a|
0080 6e 79 77 61 79 3f d1 1e-00 00 00 44 69 65 73 65 |nyway?Ñ. ...Diese|
0090 73 20 4c 61 6e 64 20 69-73 74 20 6e 69 63 68 74 |s Land i st nicht|
00a0 20 62 65 6b 61 6e 6e 74-21 10 00 00 00 43 6f 75 | bekannt !....Cou|
00b0 6e 74 72 79 20 75 6e 6b-6e 6f 77 6e 21 d1 0c 00 |ntry unk nown!Ñ..|
00c0 00 00 44 69 72 65 63 74-20 64 65 62 69 74 0c 00 |..Direct  debit..|
00d0 00 00 44 69 72 65 63 74-20 64 65 62 69 74 d1 0d |..Direct  debitÑ.|
00e0 00 00 00 44 6f 6b 75 2d-54 65 6d 70 6c 61 74 65 |...Doku- Template|
00f0 0d 00 00 00 44 6f 63 75-20 74 65 6d 70 6c 61 74 |....Docu  templat|
0100 65 d1 04 00 00 00 44 6f-6e 65 04 00 00 00 44 6f |eÑ....Do ne....Do|
0110 6e 65 d1 0b 00 00 00 44-6f 70 70 65 6c 6b 6c 69 |neÑ....D oppelkli|
0120 63 6b 0c 00 00 00 64 6f-75 62 6c 65 20 63 6c 69 |ck....do uble cli|
0130 63 6b d1 1b 00 00 00 44-72 75 63 6b 20 44 48 4c |ckÑ....D ruck DHL|
0140 20 76 69 61 20 43 6c 6f-75 64 20 53 65 72 76 69 | via Clo ud Servi|
0150 63 65 1b 00 00 00 44 48-4c 20 70 72 69 6e 74 20 |ce....DH L print |
0160 76 69 61 20 43 6c 6f 75-64 20 53 65 72 76 69 63 |via Clou d Servic|
0170 65 d1 1b 00 00 00 44 72-75 63 6b 20 44 50 44 20 |eÑ....Dr uck DPD |
0180 76 69 61 20 43 6c 6f 75-64 20 53 65 72 76 69 63 |via Clou d Servic|
0190 65 1b 00 00 00 50 72 69-6e 74 20 44 50 44 20 76 |e....Pri nt DPD v|
01a0 69 61 20 63 6c 6f 75 64-20 73 65 72 76 69 63 65 |ia cloud  service|
01b0 d1 1b 00 00 00 44 72 75-63 6b 20 62 65 69 20 42 |Ñ....Dru ck bei B|
01c0 41 20 25 20 64 65 61 6b-74 69 76 69 65 72 74 21 |A % deak tiviert!|
01d0 1b 00 00 00 50 72 69 6e-74 69 6e 67 20 64 69 73 |....Prin ting dis|
01e0 61 62 6c 65 64 20 66 6f-72 20 42 41 20 25 21 d1 |abled fo r BA %!Ñ|
01f0 0c 00 00 00 44 72 75 63-6b 44 20 3d 20 3c 25 3e |....Druc kD = <%>|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12dd920, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12dd920, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12dd920, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12dd920, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12dd920, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12dd920, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12d38e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-0c 00 00 00 50 72 69 6e |........ ....Prin|
0010 74 44 20 3d 20 3c 25 3e-d1 17 00 00 00 44 72 75 |tD = <%> Ñ....Dru|
0020 63 6b 44 65 66 61 75 6c-74 52 65 61 64 28 25 2f |ckDefaul tRead(%/|
0030 25 2f 25 29 17 00 00 00-44 72 75 63 6b 44 65 66 |%/%).... DruckDef|
0040 61 75 6c 74 52 65 61 64-28 25 2f 25 2f 25 29 d1 |aultRead (%/%/%)Ñ|
0050 1b 00 00 00 44 72 75 63-6b 44 65 66 61 75 6c 74 |....Druc kDefault|
0060 52 65 61 64 28 25 2f 25-2f 25 29 20 3d 20 25 1b |Read(%/% /%) = %.|
0070 00 00 00 44 72 75 63 6b-44 65 66 61 75 6c 74 52 |...Druck DefaultR|
0080 65 61 64 28 25 2f 25 2f-25 29 20 3d 20 25 d1 1f |ead(%/%/ %) = %Ñ.|
0090 00 00 00 44 72 75 63 6b-44 65 66 61 75 6c 74 57 |...Druck DefaultW|
00a0 72 69 74 65 28 25 2c 25-2c 25 29 20 3d 20 25 2c |rite(%,% ,%) = %,|
00b0 20 25 1f 00 00 00 44 72-75 63 6b 44 65 66 61 75 | %....Dr uckDefau|
00c0 6c 74 57 72 69 74 65 28-25 2c 25 2c 25 29 20 3d |ltWrite( %,%,%) =|
00d0 20 25 2c 20 25 d1 14 00-00 00 44 72 75 63 6b 52 | %, %Ñ.. ..DruckR|
00e0 65 70 6f 72 74 43 6c 65-61 6e 75 70 28 29 14 00 |eportCle anup()..|
00f0 00 00 44 72 75 63 6b 52-65 70 6f 72 74 43 6c 65 |..DruckR eportCle|
0100 61 6e 75 70 28 29 d1 24-00 00 00 44 72 75 63 6b |anup()Ñ$ ...Druck|
0110 52 65 70 6f 72 74 4c 61-79 6f 75 74 28 44 65 62 |ReportLa yout(Deb|
0120 69 4e 72 20 25 2c 20 41-72 74 4e 72 20 25 29 24 |iNr %, A rtNr %)$|
0130 00 00 00 44 72 75 63 6b-52 65 70 6f 72 74 4c 61 |...Druck ReportLa|
0140 79 6f 75 74 28 44 65 62-69 4e 72 20 25 2c 20 41 |yout(Deb iNr %, A|
0150 72 74 4e 72 20 25 29 d1-32 00 00 00 44 72 75 63 |rtNr %)Ñ 2...Druc|
0160 6b 52 65 70 6f 72 74 50-61 72 61 6d 3a 20 74 6f |kReportP aram: to|
0170 6f 20 6d 61 6e 79 20 72-65 70 6f 72 74 20 70 61 |o many r eport pa|
0180 72 73 20 28 70 61 72 61-6d 73 5b 2c 5d 29 32 00 |rs (para ms[,])2.|
0190 00 00 44 72 75 63 6b 52-65 70 6f 72 74 50 61 72 |..DruckR eportPar|
01a0 61 6d 3a 20 74 6f 6f 20-6d 61 6e 79 20 72 65 70 |am: too  many rep|
01b0 6f 72 74 20 70 61 72 73-20 28 70 61 72 61 6d 73 |ort pars  (params|
01c0 5b 2c 5d 29 d1 35 00 00-00 44 72 75 63 6b 52 65 |[,])Ñ5.. .DruckRe|
01d0 70 6f 72 74 50 61 72 61-6d 45 6e 64 3a 20 74 6f |portPara mEnd: to|
01e0 6f 20 6d 61 6e 79 20 72-65 70 6f 72 74 20 70 61 |o many r eport pa|
01f0 72 73 20 28 70 61 72 61-6d 73 5b 2c 5d 29 35 00 |rs (para ms[,])5.|

token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13ed300, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 44 72 75 63 6b 52 |........ ..DruckR|
0010 65 70 6f 72 74 50 61 72-61 6d 45 6e 64 3a 20 74 |eportPar amEnd: t|
0020 6f 6f 20 6d 61 6e 79 20-72 65 70 6f 72 74 20 70 |oo many  report p|
0030 61 72 73 20 28 70 61 72-61 6d 73 5b 2c 5d 29 d1 |ars (par ams[,])Ñ|
0040 34 00 00 00 45 2d 4d 61-69 6c 61 64 72 65 73 73 |4...E-Ma iladress|
0050 65 20 64 65 73 20 41 6e-73 70 72 65 63 68 70 61 |e des An sprechpa|
0060 72 74 6e 65 72 73 20 3e-41 64 72 4e 72 20 25 3c |rtners > AdrNr %<|
0070 20 66 65 68 6c 65 6e 21-32 00 00 00 45 2d 6d 61 | fehlen! 2...E-ma|
0080 69 6c 20 61 64 64 72 65-73 73 20 6f 66 20 6c 6f |il addre ss of lo|
0090 63 61 6c 20 70 61 72 74-6e 65 72 20 3e 41 64 72 |cal part ner >Adr|
00a0 4e 6f 20 25 3c 20 6d 69-73 73 69 6e 67 21 d1 1c |No %< mi ssing!Ñ.|
00b0 00 00 00 45 41 4e 2d 31-32 38 3a 20 55 6e 62 65 |...EAN-1 28: Unbe|
00c0 6b 61 6e 6e 74 65 72 20-41 49 20 28 25 29 21 18 |kannter  AI (%)!.|
00d0 00 00 00 45 41 4e 2d 31-32 38 3a 20 75 6e 6b 6e |...EAN-1 28: unkn|
00e0 6f 77 6e 20 41 49 20 28-25 29 21 d1 06 00 00 00 |own AI ( %)!Ñ....|
00f0 45 69 67 65 6e 65 03 00-00 00 4f 77 6e d1 1e 00 |Eigene.. ..OwnÑ..|
0100 00 00 45 69 6e 20 4b 54-20 6d 75 73 73 20 65 69 |..Ein KT  muss ei|
0110 6e 67 65 67 65 62 65 6e-20 77 65 72 64 65 6e 21 |ngegeben  werden!|
0120 13 00 00 00 43 55 20 6d-75 73 74 20 62 65 20 65 |....CU m ust be e|
0130 6e 74 65 72 65 64 21 d1-25 00 00 00 45 69 6e 20 |ntered!Ñ %...Ein |
0140 73 6f 6c 63 68 65 72 20-4b 75 6e 64 65 20 69 73 |solcher  Kunde is|
0150 74 20 6e 69 63 68 74 20-62 65 6b 61 6e 6e 74 20 |t nicht  bekannt |
0160 21 11 00 00 00 43 75 73-74 6f 6d 65 72 20 75 6e |!....Cus tomer un|
0170 6b 6e 6f 77 6e 21 d1 29-00 00 00 45 69 6e 20 73 |known!Ñ) ...Ein s|
0180 6f 6c 63 68 65 72 20 4c-69 65 66 65 72 61 6e 74 |olcher L ieferant|
0190 20 69 73 74 20 6e 69 63-68 74 20 62 65 6b 61 6e | ist nic ht bekan|
01a0 6e 74 20 21 11 00 00 00-53 75 70 70 6c 69 65 72 |nt !.... Supplier|
01b0 20 75 6e 6b 6e 6f 77 6e-21 d1 28 00 00 00 45 69 | unknown !Ñ(...Ei|
01c0 6e 20 73 6f 6c 63 68 65-72 20 53 74 61 6e 64 6f |n solche r Stando|
01d0 72 74 20 69 73 74 20 6e-69 63 68 74 20 62 65 6b |rt ist n icht bek|
01e0 61 6e 6e 74 20 21 11 00-00 00 4c 6f 63 61 74 69 |annt !.. ..Locati|
01f0 6f 6e 20 75 6e 6b 6e 6f-77 6e 21 d1 23 00 00 00 |on unkno wn!Ñ#...|

token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-45 69 6e 20 73 6f 6c 63 |........ Ein solc|
0010 68 65 73 20 4b 6f 6e 74-6f 20 65 78 69 73 74 69 |hes Kont o existi|
0020 65 72 74 20 6e 69 63 68-74 20 21 17 00 00 00 41 |ert nich t !....A|
0030 63 63 6f 75 6e 74 20 64-6f 65 73 20 6e 6f 74 20 |ccount d oes not |
0040 65 78 69 73 74 21 d1 28-00 00 00 45 69 6e 65 20 |exist!Ñ( ...Eine |
0050 41 72 74 69 6b 65 6c 6e-75 6d 6d 65 72 20 6d 75 |Artikeln ummer mu|
0060 73 73 20 65 69 6e 67 65-62 65 6e 20 77 65 72 64 |ss einge ben werd|
0070 65 6e 21 22 00 00 00 50-6c 65 61 73 65 20 69 6e |en!"...P lease in|
0080 64 69 63 61 74 65 20 61-6e 20 61 72 74 69 63 6c |dicate a n articl|
0090 65 20 6e 75 6d 62 65 72-21 d1 34 00 00 00 45 69 |e number !Ñ4...Ei|
00a0 6e 65 20 42 61 6e 6b 20-6d 69 74 20 64 69 65 73 |ne Bank  mit dies|
00b0 65 72 20 42 65 7a 65 69-63 68 6e 75 6e 67 20 69 |er Bezei chnung i|
00c0 73 74 20 6e 69 63 68 74-20 62 65 6b 61 6e 6e 74 |st nicht  bekannt|
00d0 20 21 24 00 00 00 4e 6f-20 62 61 6e 6b 20 77 69 | !$...No  bank wi|
00e0 74 68 20 74 68 69 73 20-64 65 73 69 67 6e 61 74 |th this  designat|
00f0 69 6f 6e 20 6b 6e 6f 77-6e 21 d1 2f 00 00 00 45 |ion know n!Ñ/...E|
0100 69 6e 65 20 42 61 6e 6b-20 6d 69 74 20 64 69 65 |ine Bank  mit die|
0110 73 65 72 20 4e 75 6d 6d-65 72 20 69 73 74 20 6e |ser Numm er ist n|
0120 69 63 68 74 20 62 65 6b-61 6e 6e 74 20 21 1f 00 |icht bek annt !..|
0130 00 00 4e 6f 20 62 61 6e-6b 20 77 69 74 68 20 74 |..No ban k with t|
0140 68 69 73 20 6e 75 6d 62-65 72 20 6b 6e 6f 77 6e |his numb er known|
0150 21 d1 42 00 00 00 45 69-6e 65 20 42 75 63 68 75 |!ÑB...Ei ne Buchu|
0160 6e 67 20 6d 69 74 20 7a-77 65 69 20 76 65 72 73 |ng mit z wei vers|
0170 63 68 69 65 64 65 6e 65-6e 20 46 57 20 4b 6f 6e |chiedene n FW Kon|
0180 74 65 6e 20 69 73 74 20-6e 69 63 68 74 20 6d c3 |ten ist  nicht mÃ|
0190 b6 67 6c 69 63 68 20 21-3e 00 00 00 50 6f 73 74 |¶glich ! >...Post|
01a0 69 6e 67 73 20 61 66 66-65 63 74 69 6e 67 20 74 |ings aff ecting t|
01b0 77 6f 20 64 69 66 66 65-72 65 6e 74 20 46 43 20 |wo diffe rent FC |
01c0 61 63 63 6f 75 6e 74 73-20 61 72 65 20 6e 6f 74 |accounts  are not|
01d0 20 70 6f 73 73 69 62 6c-65 21 d1 29 00 00 00 45 | possibl e!Ñ)...E|
01e0 69 6e 65 20 4b 6f 6e 74-6f 6e 75 6d 6d 65 72 20 |ine Kont onummer |
01f0 68 61 74 20 6d 69 6e 64-65 73 74 65 6e 73 20 25 |hat mind estens %|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de7b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12de770, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x147a490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 53 74 65 6c 6c 65 6e |........  Stellen|
0010 26 00 00 00 41 63 63 6f-75 6e 74 20 6e 75 6d 62 |&...Acco unt numb|
0020 65 72 73 20 68 61 76 65-20 61 74 20 6c 65 61 73 |ers have  at leas|
0030 74 20 25 20 64 69 67 69-74 73 d1 2e 00 00 00 45 |t % digi tsÑ....E|
0040 69 6e 65 20 50 65 72 73-6f 6e 20 6d 69 74 20 4e |ine Pers on mit N|
0050 61 63 68 6e 61 6d 65 20-25 20 69 73 74 20 6e 69 |achname  % ist ni|
0060 63 68 74 20 62 65 6b 61-6e 6e 74 20 21 1e 00 00 |cht beka nnt !...|
0070 00 50 65 72 73 6f 6e 20-77 69 74 68 20 73 75 72 |.Person  with sur|
0080 6e 61 6d 65 20 25 20 75-6e 6b 6e 6f 77 6e 21 d1 |name % u nknown!Ñ|
0090 26 00 00 00 45 69 6e 65-20 73 6f 6c 63 68 65 20 |&...Eine  solche |
00a0 41 6e 6c 61 67 65 20 69-73 74 20 6e 69 63 68 74 |Anlage i st nicht|
00b0 20 62 65 6b 61 6e 6e 74-20 21 13 00 00 00 49 6e | bekannt  !....In|
00c0 76 65 73 74 6d 65 6e 74-20 75 6e 6b 6e 6f 77 6e |vestment  unknown|
00d0 21 d1 2c 00 00 00 45 69-6e 65 20 73 6f 6c 63 68 |!Ñ,...Ei ne solch|
00e0 65 20 41 6e 6c 61 67 65-67 72 75 70 70 65 20 69 |e Anlage gruppe i|
00f0 73 74 20 6e 69 63 68 74-20 62 65 6b 61 6e 6e 74 |st nicht  bekannt|
0100 20 21 14 00 00 00 41 73-73 65 74 20 67 72 6f 75 | !....As set grou|
0110 70 20 75 6e 6b 6e 6f 77-6e 21 d1 26 00 00 00 45 |p unknow n!Ñ&...E|
0120 69 6e 65 20 73 6f 6c 63-68 65 20 50 65 72 73 6f |ine solc he Perso|
0130 6e 20 69 73 74 20 6e 69-63 68 74 20 62 65 6b 61 |n ist ni cht beka|
0140 6e 6e 74 20 21 0f 00 00-00 50 65 72 73 6f 6e 20 |nnt !... .Person |
0150 75 6e 6b 6e 6f 77 6e 21-d1 24 00 00 00 45 69 6e |unknown! Ñ$...Ein|
0160 65 72 20 64 65 72 20 47-72 65 6e 7a 77 65 72 74 |er der G renzwert|
0170 65 20 69 73 74 20 6b 65-69 6e 65 20 5a 61 68 6c |e ist ke ine Zahl|
0180 21 22 00 00 00 4f 6e 65-20 6f 66 20 74 68 65 20 |!"...One  of the |
0190 6c 69 6d 69 74 73 20 69-73 20 6e 6f 74 20 61 20 |limits i s not a |
01a0 6e 75 6d 62 65 72 21 d1-12 00 00 00 45 6e 74 72 |number!Ñ ....Entr|
01b0 79 20 25 20 64 61 74 61-74 79 70 65 20 25 12 00 |y % data type %..|
01c0 00 00 45 6e 74 72 79 20-25 20 64 61 74 61 74 79 |..Entry  % dataty|
01d0 70 65 20 25 d1 12 00 00-00 45 72 65 69 67 6e 69 |pe %Ñ... .Ereigni|
01e0 73 20 25 20 25 20 25 20-25 20 25 13 00 00 00 53 |s % % %  % %....S|
01f0 79 73 2d 45 76 65 6e 74-20 25 20 25 20 25 20 25 |ys-Event  % % % %|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 25 d1 20 00 00 00 45 |........  %Ñ ...E|
0010 72 65 69 67 6e 69 73 20-25 20 6d 69 74 20 25 20 |reignis  % mit % |
0020 25 20 77 c3 bc 72 64 65-20 66 65 75 65 72 6e 20 |% würde  feuern |
0030 00 00 00 53 79 73 2d 45-76 65 6e 74 20 25 20 77 |...Sys-E vent % w|
0040 69 74 68 20 25 20 25 20-77 6f 75 6c 64 20 6d 61 |ith % %  would ma|
0050 74 63 68 d1 51 00 00 00-45 72 65 69 67 6e 69 73 |tchÑQ... Ereignis|
0060 20 3c 25 3e 20 77 75 72-64 65 20 6e 69 63 68 74 | <%> wur de nicht|
0070 20 6b 6f 72 72 65 6b 74-20 61 75 73 67 65 66 c3 | korrekt  ausgefÃ|
0080 bc 68 72 74 2e 20 42 69-74 74 65 20 6b 6f 6e 74 |¼hrt. Bi tte kont|
0090 61 6b 74 69 65 72 65 6e-20 53 69 65 20 64 65 6e |aktieren  Sie den|
00a0 20 53 75 70 70 6f 72 74-2e 47 00 00 00 53 79 73 | Support .G...Sys|
00b0 2d 65 76 65 6e 74 20 3c-25 3e 20 68 61 73 20 6e |-event < %> has n|
00c0 6f 74 20 62 65 65 6e 20-63 6f 6d 70 6c 65 74 65 |ot been  complete|
00d0 64 20 63 6f 72 72 65 63-74 6c 79 2e 20 50 6c 65 |d correc tly. Ple|
00e0 61 73 65 20 63 6f 6e 74-61 63 74 20 73 75 70 70 |ase cont act supp|
00f0 6f 72 74 2e d1 24 00 00-00 45 72 65 69 67 6e 69 |ort.Ñ$.. .Ereigni|
0100 73 52 65 61 6b 74 69 6f-6e 20 3e 25 3c 20 69 73 |sReaktio n >%< is|
0110 74 20 75 6e 64 65 66 69-6e 69 65 72 74 1e 00 00 |t undefi niert...|
0120 00 53 79 73 45 76 65 6e-74 52 65 61 63 74 69 6f |.SysEven tReactio|
0130 6e 20 3e 25 3c 20 75 6e-64 65 66 69 6e 65 64 d1 |n >%< un definedÑ|
0140 1f 00 00 00 45 72 65 69-67 6e 69 73 76 65 72 73 |....Erei gnisvers|
0150 61 6e 64 20 66 65 68 6c-67 65 73 63 68 6c 61 67 |and fehl geschlag|
0160 65 6e 21 1a 00 00 00 53-79 73 2d 45 76 65 6e 74 |en!....S ys-Event|
0170 20 74 72 61 6e 73 66 65-72 20 66 61 69 6c 65 64 | transfe r failed|
0180 21 d1 21 00 00 00 45 72-66 61 73 73 65 6e 20 53 |!Ñ!...Er fassen S|
0190 69 65 20 65 69 6e 65 20-41 75 66 74 72 61 67 73 |ie eine  Auftrags|
01a0 6e 75 6d 6d 65 72 21 1d-00 00 00 50 6c 65 61 73 |nummer!. ...Pleas|
01b0 65 20 65 6e 74 65 72 20-61 6e 20 6f 72 64 65 72 |e enter  an order|
01c0 20 6e 75 6d 62 65 72 21-d1 2e 00 00 00 45 72 67 | number! Ñ....Erg|
01d0 65 62 6e 69 73 3a 20 41-72 74 4e 72 20 25 20 41 |ebnis: A rtNr % A|
01e0 72 74 43 4e 72 20 25 20-56 50 45 69 6e 68 65 69 |rtCNr %  VPEinhei|
01f0 74 20 25 20 4d 65 6e 67-65 20 25 30 00 00 00 52 |t % Meng e %0...R|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301040, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 81 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 81
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (81 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 73 75 6c 74 3a 20 41 |........ esult: A|
0010 72 74 4e 6f 20 25 20 41-72 74 42 4e 6f 20 25 20 |rtNo % A rtBNo % |
0020 50 61 63 6b 61 67 69 6e-67 55 20 25 20 51 75 61 |Packagin gU % Qua|
0030 6e 74 69 74 79 20 25 d1-23 00 00 00 45 72 6d 69 |ntity %Ñ #...Ermi|
0040 74 74 65 6c 74 3a 20 53-74 61 6e 64 6f 72 74 3d |ttelt: S tandort=|
0050 20 25 20 4c 61 67 65 72-4f 72 74 20 3d 20 25 28 | % Lager Ort = %(|
0060 00 00 00 46 6f 75 6e 64-3a 20 4c 6f 63 61 74 69 |...Found : Locati|
0070 6f 6e 20 3d 20 25 20 73-74 6f 72 61 67 65 20 6c |on = % s torage l|
0080 6f 63 61 74 69 6f 6e 20-3d 20 25 d1 34 00 00 00 |ocation  = %Ñ4...|
0090 45 72 6d 69 74 74 6c 65-20 45 69 6e 67 61 6e 67 |Ermittle  Eingang|
00a0 73 2d 4c 61 67 65 72 6f-72 74 20 41 72 74 4e 72 |s-Lagero rt ArtNr|
00b0 20 25 20 53 74 61 6f 20-25 20 4c 61 67 65 72 4f | % Stao  % LagerO|
00c0 72 74 20 25 3d 00 00 00-46 69 6e 64 20 73 74 6f |rt %=... Find sto|
00d0 63 6b 20 65 6e 74 72 79-20 6c 6f 63 61 74 69 6f |ck entry  locatio|
00e0 6e 20 61 72 74 20 6e 6f-20 25 20 73 69 74 65 20 |n art no  % site |
00f0 25 2c 20 73 74 6f 72 61-67 65 20 6c 6f 63 61 74 |%, stora ge locat|
0100 69 6f 6e 20 25 d1 4d 00-00 00 45 72 7a 65 75 67 |ion %ÑM. ..Erzeug|
0110 75 6e 67 20 54 65 69 6c-62 65 73 74 65 6c 6c 75 |ung Teil bestellu|
0120 6e 67 20 61 62 67 65 62-72 6f 63 68 65 6e 20 28 |ng abgeb rochen (|
0130 46 65 68 6c 65 72 20 62-65 69 20 42 65 73 74 65 |Fehler b ei Beste|
0140 6c 6c 70 6f 73 69 74 69-6f 6e 20 61 6e 6c 65 67 |llpositi on anleg|
0150 65 6e 20 28 31 29 29 47-00 00 00 43 72 65 61 74 |en (1))G ...Creat|
0160 69 6e 67 20 6f 66 20 70-61 72 74 69 61 6c 20 6f |ing of p artial o|
0170 72 64 65 72 20 61 62 6f-72 74 65 64 20 28 65 72 |rder abo rted (er|
0180 72 6f 72 20 77 68 69 6c-65 20 63 72 65 61 74 69 |ror whil e creati|
0190 6e 67 20 6f 72 64 65 72-20 69 74 65 6d 20 28 31 |ng order  item (1|
01a0 29 29 d1 4d 00 00 00 45-72 7a 65 75 67 75 6e 67 |))ÑM...E rzeugung|
01b0 20 54 65 69 6c 62 65 73-74 65 6c 6c 75 6e 67 20 | Teilbes tellung |
01c0 61 62 67 65 62 72 6f 63-68 65 6e 20 28 46 65 68 |abgebroc hen (Feh|
01d0 6c 65 72 20 62 65 69 20-42 65 73 74 65 6c 6c 70 |ler bei  Bestellp|
01e0 6f 73 69 74 69 6f 6e 20-61 6e 6c 65 67 65 6e 20 |osition  anlegen |
01f0 28 32 29 29 47 00 00 00-43 72 65 61 74 69 6e 67 |(2))G... Creating|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13022f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302330, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13022f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302330, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13022f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 6f 66 20 70 61 72 74 |........  of part|
0010 69 61 6c 20 6f 72 64 65-72 20 61 62 6f 72 74 65 |ial orde r aborte|
0020 64 20 28 65 72 72 6f 72-20 77 68 69 6c 65 20 63 |d (error  while c|
0030 72 65 61 74 69 6e 67 20-6f 72 64 65 72 20 69 74 |reating  order it|
0040 65 6d 20 28 32 29 29 d1-44 00 00 00 45 72 7a 65 |em (2))Ñ D...Erze|
0050 75 67 75 6e 67 20 54 65-69 6c 62 65 73 74 65 6c |ugung Te ilbestel|
0060 6c 75 6e 67 20 61 62 67-65 62 72 6f 63 68 65 6e |lung abg ebrochen|
0070 20 28 46 65 68 6c 65 72-20 62 65 69 20 42 65 73 | (Fehler  bei Bes|
0080 74 65 6c 6c 75 6e 67 20-61 6e 6c 65 67 65 6e 29 |tellung  anlegen)|
0090 43 00 00 00 43 72 65 61-74 69 6e 67 20 6f 66 20 |C...Crea ting of |
00a0 70 61 72 74 69 61 6c 20-6f 72 64 65 72 20 61 62 |partial  order ab|
00b0 6f 72 74 65 64 20 28 65-72 72 6f 72 20 77 68 69 |orted (e rror whi|
00c0 6c 65 20 63 72 65 61 74-69 6e 67 20 6f 72 64 65 |le creat ing orde|
00d0 72 20 69 74 65 6d 29 d1-3c 00 00 00 45 72 7a 65 |r item)Ñ <...Erze|
00e0 75 67 75 6e 67 20 54 65-69 6c 62 65 73 74 65 6c |ugung Te ilbestel|
00f0 6c 75 6e 67 20 61 62 67-65 62 72 6f 63 68 65 6e |lung abg ebrochen|
0100 20 28 53 63 68 72 69 74-74 20 25 20 68 61 74 20 | (Schrit t % hat |
0110 30 2d 4d 65 6e 67 65 29-39 00 00 00 43 72 65 61 |0-Menge) 9...Crea|
0120 74 69 6e 67 20 6f 66 20-70 61 72 74 69 61 6c 20 |ting of  partial |
0130 6f 72 64 65 72 20 61 62-6f 72 74 65 64 20 28 73 |order ab orted (s|
0140 74 65 70 20 25 20 68 61-73 20 30 20 71 75 61 6e |tep % ha s 0 quan|
0150 74 69 74 79 29 d1 52 00-00 00 45 72 7a 65 75 67 |tity)ÑR. ..Erzeug|
0160 75 6e 67 20 54 65 69 6c-62 65 73 74 65 6c 6c 75 |ung Teil bestellu|
0170 6e 67 20 61 62 67 65 62-72 6f 63 68 65 6e 20 28 |ng abgeb rochen (|
0180 64 65 6d 20 41 72 74 69-6b 65 6c 20 25 20 69 73 |dem Arti kel % is|
0190 74 20 6b 65 69 6e 20 4c-69 65 66 65 72 61 6e 74 |t kein L ieferant|
01a0 20 7a 75 67 65 6f 72 64-6e 65 74 29 46 00 00 00 | zugeord net)F...|
01b0 43 72 65 61 74 69 6e 67-20 6f 66 20 70 61 72 74 |Creating  of part|
01c0 69 61 6c 20 6f 72 64 65-72 20 61 62 6f 72 74 65 |ial orde r aborte|
01d0 64 20 28 6e 6f 20 73 75-70 70 6c 69 65 72 20 61 |d (no su pplier a|
01e0 6c 6c 6f 63 61 74 65 64-20 74 6f 20 61 72 74 69 |llocated  to arti|
01f0 63 6c 65 20 25 29 d1 50-00 00 00 45 72 7a 65 75 |cle %)ÑP ...Erzeu|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-67 75 6e 67 20 54 65 69 |........ gung Tei|
0010 6c 62 65 73 74 65 6c 6c-75 6e 67 20 61 62 67 65 |lbestell ung abge|
0020 62 72 6f 63 68 65 6e 20-28 64 65 6d 20 53 63 68 |brochen  (dem Sch|
0030 72 69 74 74 20 25 20 69-73 74 20 6b 65 69 6e 20 |ritt % i st kein |
0040 41 72 74 69 6b 65 6c 20-7a 75 67 65 6f 72 64 6e |Artikel  zugeordn|
0050 65 74 29 46 00 00 00 43-72 65 61 74 69 6e 67 20 |et)F...C reating |
0060 6f 66 20 70 61 72 74 69-61 6c 20 6f 72 64 65 72 |of parti al order|
0070 20 61 62 6f 72 74 65 64-20 28 6e 6f 20 73 75 70 | aborted  (no sup|
0080 70 6c 69 65 72 20 61 6c-6c 6f 63 61 74 65 64 20 |plier al located |
0090 74 6f 20 61 72 74 69 63-6c 65 20 25 29 d1 4e 00 |to artic le %)ÑN.|
00a0 00 00 45 72 7a 65 75 67-75 6e 67 20 54 65 69 6c |..Erzeug ung Teil|
00b0 62 65 73 74 65 6c 6c 75-6e 67 20 61 62 67 65 62 |bestellu ng abgeb|
00c0 72 6f 63 68 65 6e 20 28-64 65 72 20 41 72 74 69 |rochen ( der Arti|
00d0 6b 65 6c 20 6b 61 6e 6e-20 6e 69 63 68 74 20 65 |kel kann  nicht e|
00e0 72 6d 69 74 74 65 6c 74-20 77 65 72 64 65 6e 29 |rmittelt  werden)|
00f0 43 00 00 00 43 72 65 61-74 69 6e 67 20 6f 66 20 |C...Crea ting of |
0100 70 61 72 74 69 61 6c 20-6f 72 64 65 72 20 61 62 |partial  order ab|
0110 6f 72 74 65 64 20 28 61-72 74 69 63 6c 65 20 63 |orted (a rticle c|
0120 6f 75 6c 64 20 6e 6f 74-20 62 65 20 64 65 74 65 |ould not  be dete|
0130 72 6d 69 6e 65 64 29 d1-2b 00 00 00 45 73 20 65 |rmined)Ñ +...Es e|
0140 78 69 73 74 69 65 72 65-6e 20 41 75 73 67 c3 a4 |xistiere n Ausgä|
0150 6e 67 65 20 2d 3e 20 6b-65 69 6e 65 20 41 75 73 |nge -> k eine Aus|
0160 62 75 63 68 75 6e 67 29-00 00 00 54 68 65 72 65 |buchung) ...There|
0170 20 68 61 76 65 20 62 65-65 6e 20 73 68 69 70 6d | have be en shipm|
0180 65 6e 74 73 20 2d 3e 20-6e 6f 20 63 68 65 63 6b |ents ->  no check|
0190 2d 6f 75 74 d1 2d 00 00-00 45 73 20 65 78 69 73 |-outÑ-.. .Es exis|
01a0 74 69 65 72 65 6e 20 4c-69 65 66 65 72 75 6e 67 |tieren L ieferung|
01b0 65 6e 20 2d 3e 20 6b 65-69 6e 65 20 41 75 73 62 |en -> ke ine Ausb|
01c0 75 63 68 75 6e 67 2a 00-00 00 54 68 65 72 65 20 |uchung*. ..There |
01d0 68 61 76 65 20 62 65 65-6e 20 64 65 6c 69 76 65 |have bee n delive|
01e0 72 69 65 73 20 2d 3e 20-6e 6f 20 63 68 65 63 6b |ries ->  no check|
01f0 2d 6f 75 74 d1 3f 00 00-00 45 73 20 65 78 69 73 |-outÑ?.. .Es exis|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 78 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 78
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (78 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x13027e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 69 65 72 65 6e 20 6b |........ tieren k|
0010 65 69 6e 65 20 46 6f 72-6d 73 20 2d 20 62 69 74 |eine For ms - bit|
0020 74 65 20 6b 6f 6e 74 61-6b 74 69 65 72 65 6e 20 |te konta ktieren |
0030 53 69 65 20 64 65 6e 20-53 75 70 70 6f 72 74 21 |Sie den  Support!|
0040 2c 00 00 00 4e 6f 20 66-6f 72 6d 73 20 61 76 61 |,...No f orms ava|
0050 69 6c 61 62 6c 65 20 2d-20 70 6c 65 61 73 65 20 |ilable -  please |
0060 63 6f 6e 74 61 63 74 20-73 75 70 70 6f 72 74 21 |contact  support!|
0070 d1 70 00 00 00 45 73 20-65 78 69 73 74 69 65 72 |Ñp...Es  existier|
0080 65 6e 20 6b 65 69 6e 65-20 4c 6f 68 6e 2d 53 74 |en keine  Lohn-St|
0090 61 6e 64 6f 72 74 65 2e-20 4b 6f 6e 74 72 6f 6c |andorte.  Kontrol|
00a0 6c 69 65 72 65 6e 20 53-69 65 20 64 69 65 20 53 |lieren S ie die S|
00b0 74 61 6e 64 6f 72 74 65-20 69 6e 20 64 65 6e 20 |tandorte  in den |
00c0 53 74 61 6d 6d 64 61 74-65 6e 20 28 41 64 72 65 |Stammdat en (Adre|
00d0 73 73 65 20 75 6e 64 20-41 72 62 65 69 74 73 7a |sse und  Arbeitsz|
00e0 65 69 74 29 21 5f 00 00-00 4e 6f 20 77 61 67 65 |eit)!_.. .No wage|
00f0 20 6c 6f 63 61 74 69 6f-6e 73 20 66 6f 75 6e 64 | locatio ns found|
0100 2e 20 50 6c 65 61 73 65-20 63 68 65 63 6b 20 74 |. Please  check t|
0110 68 65 20 6c 6f 63 61 74-69 6f 6e 73 20 69 6e 20 |he locat ions in |
0120 74 68 65 20 6d 61 73 74-65 72 20 64 61 74 61 20 |the mast er data |
0130 28 61 64 64 72 65 73 73-20 61 6e 64 20 77 6f 72 |(address  and wor|
0140 6b 20 74 69 6d 65 29 21-d1 61 00 00 00 45 73 20 |k time)! Ña...Es |
0150 65 78 69 73 74 69 65 72-65 6e 20 6d 65 68 72 65 |existier en mehre|
0160 72 65 20 53 74 61 6e 64-6f 72 74 65 20 69 6d 20 |re Stand orte im |
0170 4b 61 6e 74 6f 6e 20 25-2e 20 50 72 c3 a4 7a 69 |Kanton % . Präzi|
0180 73 69 65 72 65 6e 20 53-69 65 20 64 65 6e 20 53 |sieren S ie den S|
0190 74 61 6e 64 6f 72 74 20-76 69 61 20 50 65 72 73 |tandort  via Pers|
01a0 6f 6e 61 6c 2d 41 74 74-72 69 62 75 74 21 59 00 |onal-Att ribut!Y.|
01b0 00 00 54 68 65 72 65 20-61 72 65 20 73 65 76 65 |..There  are seve|
01c0 72 61 6c 20 6c 6f 63 61-74 69 6f 6e 73 20 69 6e |ral loca tions in|
01d0 20 63 61 6e 74 6f 6e 20-25 2e 20 50 6c 65 61 73 | canton  %. Pleas|
01e0 65 20 73 70 65 63 69 66-79 20 74 68 65 20 6c 6f |e specif y the lo|
01f0 63 61 74 69 6f 6e 20 76-69 61 20 73 74 61 66 66 |cation v ia staff|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127ba20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1302620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 112 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 95 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 112
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (112 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 95
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (95 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 97 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 89 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 61 74 74 72 69 62 75 |........  attribu|
0010 74 65 21 d1 45 00 00 00-45 73 20 65 78 69 73 74 |te!ÑE... Es exist|
0020 69 65 72 74 20 62 65 72-65 69 74 73 20 65 69 6e |iert ber eits ein|
0030 65 20 75 6e 76 65 72 73-61 6e 64 74 65 20 42 65 |e unvers andte Be|
0040 73 74 65 6c 6c 75 6e 67-20 28 25 29 20 62 65 69 |stellung  (%) bei|
0050 20 4c 69 65 66 65 72 61-6e 74 20 25 2e 3b 00 00 | Liefera nt %.;..|
0060 00 54 68 65 72 65 20 69-73 20 61 6c 72 65 61 64 |.There i s alread|
0070 79 20 61 6e 20 75 6e 73-68 69 70 70 65 64 20 70 |y an uns hipped p|
0080 75 72 63 68 61 73 65 20-28 25 29 20 66 72 6f 6d |urchase  (%) from|
0090 20 73 75 70 70 6c 69 65-72 20 25 2e d1 43 00 00 | supplie r %.ÑC..|
00a0 00 45 73 20 65 78 69 73-74 69 65 72 74 20 62 65 |.Es exis tiert be|
00b0 72 65 69 74 73 20 65 69-6e 65 20 76 65 72 73 61 |reits ei ne versa|
00c0 6e 64 74 65 20 42 65 73-74 65 6c 6c 75 6e 67 20 |ndte Bes tellung |
00d0 28 25 29 20 62 65 69 20-4c 69 65 66 65 72 61 6e |(%) bei  Lieferan|
00e0 74 20 25 2e 38 00 00 00-54 68 65 72 65 20 69 73 |t %.8... There is|
00f0 20 61 6c 72 65 61 64 79-20 61 20 73 68 69 70 70 | already  a shipp|
0100 65 64 20 70 75 72 63 68-61 73 65 20 28 25 29 20 |ed purch ase (%) |
0110 66 72 6f 6d 20 73 75 70-70 6c 69 65 72 20 25 2e |from sup plier %.|
0120 d1 33 00 00 00 45 73 20-66 65 68 6c 65 6e 20 45 |Ñ3...Es  fehlen E|
0130 69 6e 67 61 62 65 6e 2e-20 57 6f 6c 6c 65 6e 20 |ingaben.  Wollen |
0140 53 69 65 20 64 69 65 73-65 20 6a 65 74 7a 74 20 |Sie dies e jetzt |
0150 6d 61 63 68 65 6e 20 3f-1c 00 00 00 49 6e 70 75 |machen ? ....Inpu|
0160 74 20 6d 69 73 73 69 6e-67 2e 20 52 65 67 69 73 |t missin g. Regis|
0170 74 65 72 20 6e 6f 77 3f-d1 32 00 00 00 45 73 20 |ter now? Ñ2...Es |
0180 66 65 68 6c 74 20 64 61-73 20 44 61 74 75 6d 20 |fehlt da s Datum |
0190 66 c3 bc 72 20 25 2e 20-42 69 74 74 65 20 66 c3 |für %.  Bitte fÃ|
01a0 bc 6c 6c 65 6e 20 53 69-65 20 65 69 6e 20 21 23 |¼llen Si e ein !#|
01b0 00 00 00 4d 69 73 73 69-6e 67 20 64 61 74 65 20 |...Missi ng date |
01c0 66 6f 72 20 25 2e 20 50-6c 65 61 73 65 20 66 69 |for %. P lease fi|
01d0 6c 6c 20 69 6e 21 d1 3a-00 00 00 45 73 20 66 65 |ll in!Ñ: ...Es fe|
01e0 68 6c 74 20 64 65 72 20-41 6e 61 6c 79 73 65 53 |hlt der  AnalyseS|
01f0 74 75 6e 64 65 6e 73 61-74 7a 20 66 c3 bc 72 20 |tundensa tz für |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 97
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (97 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 89
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (89 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-3e 25 3c 20 75 6e 64 20 |........ >%< und |
0010 53 70 72 61 63 68 65 20-3e 2a 3c 20 21 34 00 00 |Sprache  >*< !4..|
0020 00 41 6e 61 6c 79 73 69-73 48 6f 75 72 6c 79 52 |.Analysi sHourlyR|
0030 61 74 65 20 66 6f 72 20-3e 25 3c 20 61 6e 64 20 |ate for  >%< and |
0040 6c 61 6e 67 75 61 67 65-20 3e 2a 3c 20 6d 69 73 |language  >*< mis|
0050 73 69 6e 67 21 d1 31 00-00 00 45 73 20 66 65 68 |sing!Ñ1. ..Es feh|
0060 6c 74 20 65 69 6e 20 57-65 72 74 20 66 c3 bc 72 |lt ein W ert für|
0070 20 25 2e 20 42 69 74 74-65 20 66 c3 bc 6c 6c 65 | %. Bitt e fülle|
0080 6e 20 53 69 65 20 65 69-6e 20 21 25 00 00 00 4d |n Sie ei n !%...M|
0090 69 73 73 69 6e 67 20 76-61 6c 75 65 20 66 6f 72 |issing v alue for|
00a0 20 25 2e 20 50 6c 65 61-73 65 20 63 6f 6d 70 6c | %. Plea se compl|
00b0 65 74 65 21 d1 35 00 00-00 45 73 20 67 69 62 74 |ete!Ñ5.. .Es gibt|
00c0 20 25 20 4c 61 67 65 72-6f 72 74 65 20 66 c3 bc | % Lager orte fü|
00d0 72 20 64 69 65 73 65 6e-20 41 72 74 69 6b 65 6c |r diesen  Artikel|
00e0 20 61 6d 20 53 74 61 6e-64 6f 72 74 20 25 32 00 | am Stan dort %2.|
00f0 00 00 25 20 73 74 6f 72-61 67 65 20 6c 6f 63 61 |..% stor age loca|
0100 74 69 6f 6e 73 20 66 6f-72 20 74 68 69 73 20 61 |tions fo r this a|
0110 72 74 69 63 6c 65 20 61-74 20 6c 6f 63 61 74 69 |rticle a t locati|
0120 6f 6e 20 25 d1 2f 00 00-00 45 73 20 67 69 62 74 |on %Ñ/.. .Es gibt|
0130 20 57 65 72 74 65 20 61-75 73 73 65 72 68 61 6c | Werte a usserhal|
0140 62 20 64 65 72 20 53 70-65 7a 69 66 69 6b 61 74 |b der Sp ezifikat|
0150 69 6f 6e 20 28 49 29 21-28 00 00 00 56 61 6c 75 |ion (I)! (...Valu|
0160 65 73 20 6f 75 74 73 69-64 65 20 6f 66 20 74 68 |es outsi de of th|
0170 65 20 73 70 65 63 69 66-69 63 61 74 69 6f 6e 20 |e specif ication |
0180 28 49 29 21 d1 3f 00 00-00 45 73 20 67 69 62 74 |(I)!Ñ?.. .Es gibt|
0190 20 61 6e 20 64 69 65 73-65 6d 20 53 74 61 6e 64 | an dies em Stand|
01a0 6f 72 74 20 4b 45 49 4e-45 20 4c 61 67 65 72 6f |ort KEIN E Lagero|
01b0 72 74 65 20 66 c3 bc 72-20 64 69 65 73 65 6e 20 |rte für  diesen |
01c0 41 72 74 69 6b 65 6c 21-37 00 00 00 4e 4f 20 73 |Artikel! 7...NO s|
01d0 74 6f 72 61 67 65 20 6c-6f 63 61 74 69 6f 6e 73 |torage l ocations|
01e0 20 66 6f 72 20 74 68 69-73 20 61 72 74 69 63 6c | for thi s articl|
01f0 65 20 61 74 20 74 68 69-73 20 6c 6f 63 61 74 69 |e at thi s locati|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6f 6e 21 d1 2d 00 00 00 |........ on!Ñ-...|
0010 45 73 20 67 69 62 74 20-6b 65 69 6e 20 4b 6f 6e |Es gibt  kein Kon|
0020 74 6f 20 61 75 66 20 64-69 65 73 65 72 20 42 61 |to auf d ieser Ba|
0030 6e 6b 20 28 66 c3 bc 72-20 25 29 20 21 21 00 00 |nk (für  %) !!..|
0040 00 4e 6f 20 61 63 63 6f-75 6e 74 20 66 6f 72 20 |.No acco unt for |
0050 74 68 69 73 20 62 61 6e-6b 20 28 66 6f 72 20 25 |this ban k (for %|
0060 29 21 d1 3b 00 00 00 45-73 20 67 69 62 74 20 6b |)!Ñ;...E s gibt k|
0070 65 69 6e 65 6e 20 4c 61-67 65 72 6f 72 74 20 66 |einen La gerort f|
0080 c3 bc 72 20 41 72 74 69-6b 65 6c 20 25 20 28 6b |ür Arti kel % (k|
0090 65 69 6e 65 20 52 65 73-65 72 76 69 65 72 75 6e |eine Res ervierun|
00a0 67 29 32 00 00 00 4e 6f-20 73 74 6f 72 61 67 65 |g)2...No  storage|
00b0 20 6c 6f 63 61 74 69 6f-6e 20 66 6f 72 20 61 72 | locatio n for ar|
00c0 74 69 63 6c 65 20 25 20-28 6e 6f 20 72 65 73 65 |ticle %  (no rese|
00d0 72 76 61 74 69 6f 6e 29-d1 34 00 00 00 45 73 20 |rvation) Ñ4...Es |
00e0 67 69 62 74 20 6b 65 69-6e 65 6e 20 4c 61 67 65 |gibt kei nen Lage|
00f0 72 6f 72 74 20 66 c3 bc-72 20 41 72 74 69 6b 65 |rort fü r Artike|
0100 6c 20 25 20 61 6e 20 53-74 61 6e 64 6f 72 74 20 |l % an S tandort |
0110 25 2f 00 00 00 4e 6f 20-73 74 6f 72 61 67 65 20 |%/...No  storage |
0120 6c 6f 63 61 74 69 6f 6e-20 66 6f 72 20 61 72 74 |location  for art|
0130 69 63 6c 65 20 25 20 61-74 20 6c 6f 63 61 74 69 |icle % a t locati|
0140 6f 6e 20 25 d1 46 00 00-00 45 73 20 67 69 62 74 |on %ÑF.. .Es gibt|
0150 20 6b 65 69 6e 65 6e 20-4c 61 67 65 72 6f 72 74 | keinen  Lagerort|
0160 20 66 c3 bc 72 20 41 72-74 69 6b 65 6c 20 25 2e | für Ar tikel %.|
0170 20 57 6f 6c 6c 65 6e 20-53 69 65 20 4c 61 67 65 | Wollen  Sie Lage|
0180 72 6f 72 74 65 20 65 72-66 61 73 73 65 6e 3f 3e |rorte er fassen?>|
0190 00 00 00 4e 6f 20 73 74-6f 72 61 67 65 20 6c 6f |...No st orage lo|
01a0 63 61 74 69 6f 6e 20 66-6f 72 20 61 72 74 69 63 |cation f or artic|
01b0 6c 65 20 25 2e 20 52 65-67 69 73 74 65 72 20 73 |le %. Re gister s|
01c0 74 6f 72 61 67 65 20 6c-6f 63 61 74 69 6f 6e 73 |torage l ocations|
01d0 3f d1 1d 00 00 00 45 73-20 67 69 62 74 20 6e 69 |?Ñ....Es  gibt ni|
01e0 63 68 74 73 20 7a 75 20-73 74 6f 72 6e 69 65 72 |chts zu  stornier|
01f0 65 6e 2e 12 00 00 00 4e-6f 74 68 69 6e 67 20 74 |en.....N othing t|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bc50, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6f 20 63 61 6e 63 65 6c |........ o cancel|
0010 2e d1 4c 00 00 00 45 73-20 69 73 74 20 62 69 73 |.ÑL...Es  ist bis|
0020 68 65 72 20 6b 65 69 6e-20 44 54 41 20 66 c3 bc |her kein  DTA fü|
0030 72 20 42 61 6e 6b 65 6e-20 64 65 72 20 41 72 74 |r Banken  der Art|
0040 20 3e 25 3c 20 69 6e 20-3e 25 3c 20 76 65 72 66 | >%< in  >%< verf|
0050 c3 bc 67 62 61 72 20 28-42 61 6e 6b 4e 72 20 25 |ügbar ( BankNr %|
0060 29 21 39 00 00 00 4e 6f-20 44 54 41 20 61 76 61 |)!9...No  DTA ava|
0070 69 6c 61 62 6c 65 20 73-6f 20 66 61 72 20 66 6f |ilable s o far fo|
0080 72 20 74 79 70 65 20 25-20 62 61 6e 6b 73 20 69 |r type %  banks i|
0090 6e 20 25 20 28 42 61 6e-6b 4e 6f 20 25 29 21 d1 |n % (Ban kNo %)!Ñ|
00a0 44 00 00 00 45 73 20 69-73 74 20 65 69 6e 20 4b |D...Es i st ein K|
00b0 6f 6d 6d 65 6e 74 61 72-20 62 65 69 6d 20 4b 75 |ommentar  beim Ku|
00c0 6e 64 65 6e 20 65 69 6e-67 65 74 72 61 67 65 6e |nden ein getragen|
00d0 2e 20 57 6f 6c 6c 65 6e-20 53 69 65 20 64 65 6e |. Wollen  Sie den|
00e0 20 73 65 68 65 6e 20 3f-2b 00 00 00 43 6f 6d 6d | sehen ? +...Comm|
00f0 65 6e 74 20 72 65 67 69-73 74 65 72 65 64 20 66 |ent regi stered f|
0100 6f 72 20 74 68 69 73 20-63 75 73 74 6f 6d 65 72 |or this  customer|
0110 2e 20 56 69 65 77 3f d1-45 00 00 00 45 73 20 69 |. View?Ñ E...Es i|
0120 73 74 20 6b 65 69 6e 20-44 54 41 20 66 c3 bc 72 |st kein  DTA für|
0130 20 42 61 6e 6b 65 6e 20-64 65 72 20 41 72 74 20 | Banken  der Art |
0140 3e 25 3c 20 69 6e 20 3e-25 3c 20 76 65 72 66 c3 |>%< in > %< verfÃ|
0150 bc 67 62 61 72 20 28 42-61 6e 6b 4e 72 20 25 29 |¼gbar (B ankNr %)|
0160 21 32 00 00 00 4e 6f 20-44 54 41 20 61 76 61 69 |!2...No  DTA avai|
0170 6c 61 62 6c 65 20 66 6f-72 20 74 79 70 65 20 25 |lable fo r type %|
0180 20 62 61 6e 6b 73 20 69-6e 20 25 20 28 42 61 6e | banks i n % (Ban|
0190 6b 4e 6f 20 25 29 21 d1-2b 00 00 00 45 73 20 69 |kNo %)!Ñ +...Es i|
01a0 73 74 20 6b 65 69 6e 65-20 41 64 72 65 73 73 65 |st keine  Adresse|
01b0 20 7a 75 72 20 41 6e 61-6c 79 73 65 20 67 65 77 | zur Ana lyse gew|
01c0 c3 a4 68 6c 74 20 21 21-00 00 00 4e 6f 20 61 64 |ählt !! ...No ad|
01d0 64 72 65 73 73 20 73 65-6c 65 63 74 65 64 20 66 |dress se lected f|
01e0 6f 72 20 61 6e 61 6c 79-73 69 73 21 d1 3d 00 00 |or analy sis!Ñ=..|
01f0 00 45 73 20 69 73 74 20-6b 65 69 6e 65 20 4c 69 |.Es ist  keine Li|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x127bbd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 76 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 76
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (76 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-7a 65 6e 7a 20 65 69 6e |........ zenz ein|
0010 67 65 74 72 61 67 65 6e-20 21 20 4b 6f 6e 74 61 |getragen  ! Konta|
0020 6b 74 65 6e 20 53 69 65-20 64 65 6e 20 53 75 70 |kten Sie  den Sup|
0030 70 6f 72 74 20 21 2f 00-00 00 4e 6f 20 6c 69 63 |port !/. ..No lic|
0040 65 6e 73 65 20 72 65 67-69 73 74 65 72 65 64 21 |ense reg istered!|
0050 20 20 50 6c 65 61 73 65-20 63 6f 6e 74 61 63 74 |  Please  contact|
0060 20 73 75 70 70 6f 72 74-21 d1 22 00 00 00 45 73 | support !Ñ"...Es|
0070 20 6b 61 6e 6e 20 6b 65-69 6e 20 50 44 46 20 65 | kann ke in PDF e|
0080 72 6d 69 74 74 65 6c 74-20 77 65 72 64 65 6e 21 |rmittelt  werden!|
0090 14 00 00 00 43 61 6e 6e-6f 74 20 66 69 6e 64 20 |....Cann ot find |
00a0 61 6e 79 20 50 44 46 21-d1 23 00 00 00 45 73 20 |any PDF! Ñ#...Es |
00b0 6b 61 6e 6e 20 6b 65 69-6e 20 50 44 46 20 73 65 |kann kei n PDF se|
00c0 6c 65 6b 74 69 65 72 74-20 77 65 72 64 65 6e 21 |lektiert  werden!|
00d0 16 00 00 00 43 61 6e 6e-6f 74 20 73 65 6c 65 63 |....Cann ot selec|
00e0 74 20 61 6e 79 20 50 44-46 21 d1 24 00 00 00 45 |t any PD F!Ñ$...E|
00f0 73 20 6b 61 6e 6e 20 6b-65 69 6e 20 54 6f 6b 65 |s kann k ein Toke|
0100 6e 20 65 72 6d 69 74 74-65 6c 74 20 77 65 72 64 |n ermitt elt werd|
0110 65 6e 21 1d 00 00 00 41-20 74 6f 6b 65 6e 20 63 |en!....A  token c|
0120 61 6e 6e 6f 74 20 62 65-20 69 64 65 6e 74 69 66 |annot be  identif|
0130 69 65 64 21 d1 2f 00 00-00 45 73 20 6b 61 6e 6e |ied!Ñ/.. .Es kann|
0140 20 6b 65 69 6e 65 20 70-61 73 73 65 6e 64 65 20 | keine p assende |
0150 44 61 74 65 69 20 25 20-67 65 66 75 6e 64 65 6e |Datei %  gefunden|
0160 20 77 65 72 64 65 6e 21-18 00 00 00 4e 6f 20 66 | werden! ....No f|
0170 69 74 74 69 6e 67 20 66-69 6c 65 20 25 20 66 6f |itting f ile % fo|
0180 75 6e 64 21 d1 3a 00 00-00 45 73 20 6b 6f 6e 6e |und!Ñ:.. .Es konn|
0190 74 65 20 6b 65 69 6e 65-20 70 61 73 73 65 6e 64 |te keine  passend|
01a0 65 20 42 65 73 74 65 6c-6c 75 6e 67 20 7a 75 20 |e Bestel lung zu |
01b0 25 2e 25 20 67 65 66 75-6e 64 65 6e 20 77 65 72 |%.% gefu nden wer|
01c0 64 65 6e 1f 00 00 00 4e-6f 20 6d 61 74 63 68 69 |den....N o matchi|
01d0 6e 67 20 6f 64 65 72 20-66 6f 75 6e 64 20 66 6f |ng oder  found fo|
01e0 72 20 25 2e 20 25 d1 38-00 00 00 45 73 20 6b c3 |r %. %Ñ8 ...Es kÃ|
01f0 b6 6e 6e 65 6e 72 20 6e-75 72 20 41 74 74 72 69 |¶nnenr n ur Attri|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278340, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278df0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-62 75 74 65 20 76 6f 6e |........ bute von|
0010 20 54 79 70 20 46 20 75-6d 67 65 72 65 63 68 6e | Typ F u mgerechn|
0020 65 74 20 77 65 72 64 65-6e 20 21 28 00 00 00 4f |et werde n !(...O|
0030 6e 6c 79 20 74 79 70 65-20 46 20 61 74 74 72 69 |nly type  F attri|
0040 62 75 74 65 73 20 63 61-6e 20 62 65 20 63 6f 6e |butes ca n be con|
0050 76 65 72 74 65 64 21 d1-52 00 00 00 45 73 20 6c |verted!Ñ R...Es l|
0060 61 75 66 65 6e 20 62 65-72 65 69 74 73 20 76 69 |aufen be reits vi|
0070 65 6c 65 20 41 75 73 77-65 72 74 75 6e 67 65 6e |ele Ausw ertungen|
0080 2e 20 57 6f 6c 6c 65 6e-20 53 69 65 20 64 69 65 |. Wollen  Sie die|
0090 20 41 75 73 77 65 72 74-75 6e 67 20 74 72 6f 74 | Auswert ung trot|
00a0 7a 64 65 6d 20 73 74 61-72 74 65 6e 20 3f 3d 00 |zdem sta rten ?=.|
00b0 00 00 53 65 76 65 72 61-6c 20 65 76 61 6c 75 61 |..Severa l evalua|
00c0 74 69 6f 6e 73 20 72 75-6e 6e 69 6e 67 20 61 6c |tions ru nning al|
00d0 72 65 61 64 79 2e 20 53-74 61 72 74 20 65 76 61 |ready. S tart eva|
00e0 6c 75 61 74 69 6f 6e 20-61 6e 79 77 61 79 3f d1 |luation  anyway?Ñ|
00f0 41 00 00 00 45 73 20 6c-61 75 66 65 6e 20 62 65 |A...Es l aufen be|
0100 72 65 69 74 73 20 7a 75-76 69 65 6c 65 20 41 75 |reits zu viele Au|
0110 73 77 65 72 74 75 6e 67-65 6e 2e 20 57 6f 6c 6c |swertung en. Woll|
0120 65 6e 20 53 69 65 20 65-74 77 61 73 20 77 61 72 |en Sie e twas war|
0130 74 65 6e 20 3f 2b 00 00-00 54 6f 6f 20 6d 61 6e |ten ?+.. .Too man|
0140 79 20 65 76 61 6c 75 61-74 69 6f 6e 73 20 72 75 |y evalua tions ru|
0150 6e 6e 69 6e 67 20 61 6c-72 65 61 64 79 2e 20 57 |nning al ready. W|
0160 61 69 74 3f d1 33 00 00-00 45 73 20 6c 69 65 67 |ait?Ñ3.. .Es lieg|
0170 74 20 6b 65 69 6e 65 20-41 72 74 69 6b 65 6c 76 |t keine  Artikelv|
0180 6f 72 73 63 68 72 69 66-74 20 76 6f 72 20 66 c3 |orschrif t vor fÃ|
0190 bc 72 20 41 72 74 69 6b-65 6c 20 25 23 00 00 00 |¼r Artik el %#...|
01a0 4e 6f 20 61 72 74 69 63-6c 65 20 72 65 67 75 6c |No artic le regul|
01b0 61 74 69 6f 6e 20 66 6f-72 20 61 72 74 69 63 6c |ation fo r articl|
01c0 65 20 25 d1 47 00 00 00-45 73 20 6c 69 65 67 74 |e %ÑG... Es liegt|
01d0 20 6e 6f 63 68 20 6b 65-69 6e 65 20 4d 61 6e 64 | noch ke ine Mand|
01e0 61 74 73 72 65 66 65 72-65 6e 7a 20 76 6f 72 2e |atsrefer enz vor.|
01f0 20 42 69 74 74 65 20 6c-65 67 65 6e 20 53 69 65 | Bitte l egen Sie|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12780c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 65 69 6e 20 4d 61 6e |........  ein Man|
0010 64 61 74 20 61 6e 21 30-00 00 00 4e 6f 20 6d 61 |dat an!0 ...No ma|
0020 6e 64 61 74 65 20 72 65-66 65 72 65 6e 63 65 2e |ndate re ference.|
0030 20 50 6c 65 61 73 65 20-72 65 67 69 73 74 65 72 | Please  register|
0040 20 61 20 6d 61 6e 64 61-74 65 21 d1 2f 00 00 00 | a manda te!Ñ/...|
0050 45 73 20 6d 75 73 73 20-65 69 6e 20 41 62 72 65 |Es muss  ein Abre|
0060 63 68 6e 75 6e 67 73 6b-72 65 69 73 20 61 6e 67 |chnungsk reis ang|
0070 65 67 65 62 65 6e 20 77-65 72 64 65 6e 20 21 1d |egeben w erden !.|
0080 00 00 00 53 75 62 2d 6c-65 64 67 65 72 20 6d 75 |...Sub-l edger mu|
0090 73 74 20 62 65 20 69 6e-64 69 63 61 74 65 64 21 |st be in dicated!|
00a0 d1 3b 00 00 00 45 73 20-6d 75 73 73 20 65 69 6e |Ñ;...Es  muss ein|
00b0 20 44 61 74 75 6d 20 69-6e 20 64 65 72 20 46 6f | Datum i n der Fo|
00c0 72 6d 20 54 54 2e 4d 4d-2e 4a 4a 4a 4a 20 65 69 |rm TT.MM .JJJJ ei|
00d0 6e 67 65 67 65 62 65 6e-20 77 65 72 64 65 6e 21 |ngegeben  werden!|
00e0 30 00 00 00 4d 75 73 74-20 69 6e 64 69 63 61 74 |0...Must  indicat|
00f0 65 20 61 20 64 61 74 65-20 77 69 74 68 20 69 6e |e a date  with in|
0100 70 75 74 20 66 6f 72 6d-20 44 44 2e 4d 4d 2e 59 |put form  DD.MM.Y|
0110 59 59 59 21 d1 24 00 00-00 45 73 20 6d 75 73 73 |YYY!Ñ$.. .Es muss|
0120 20 65 69 6e 65 20 5a 61-68 6c 20 65 69 6e 67 65 | eine Za hl einge|
0130 67 65 62 65 6e 20 77 65-72 64 65 6e 21 22 00 00 |geben we rden!"..|
0140 00 4e 75 6d 65 72 69 63-61 6c 20 76 61 6c 75 65 |.Numeric al value|
0150 20 6d 75 73 74 20 62 65-20 69 6e 64 69 63 61 74 | must be  indicat|
0160 65 64 21 d1 4b 00 00 00-45 73 20 73 69 6e 64 20 |ed!ÑK... Es sind |
0170 62 65 72 65 69 74 73 20-25 20 41 6e 77 65 6e 64 |bereits  % Anwend|
0180 65 72 20 65 69 6e 67 65-6c 6f 67 67 74 20 21 20 |er einge loggt ! |
0190 56 65 72 73 75 63 68 65-6e 20 53 69 65 20 65 73 |Versuche n Sie es|
01a0 20 73 70 c3 a4 74 65 72-20 6e 6f 63 68 6d 61 6c | später  nochmal|
01b0 73 20 21 2b 00 00 00 25-20 75 73 65 72 73 20 61 |s !+...%  users a|
01c0 6c 72 65 61 64 79 20 6c-6f 67 67 65 64 20 69 6e |lready l ogged in|
01d0 21 20 54 72 79 20 61 67-61 69 6e 20 6c 61 74 65 |! Try ag ain late|
01e0 72 21 d1 70 00 00 00 45-73 20 73 69 6e 64 20 62 |r!Ñp...E s sind b|
01f0 65 72 65 69 74 73 20 61-6e 20 25 20 53 74 65 6c |ereits a n % Stel|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1278f70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 112 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 65 6e 20 46 49 42 55 |........ len FIBU|
0010 20 42 75 64 67 65 74 2d-57 65 72 74 65 20 66 c3 | Budget- Werte fÃ|
0020 bc 72 20 4a 61 68 72 20-25 20 68 69 6e 74 65 72 |¼r Jahr  % hinter|
0030 6c 65 67 74 2c 20 77 6f-6c 6c 65 6e 20 53 69 65 |legt, wo llen Sie|
0040 20 64 69 65 73 65 20 77-69 72 6b 6c 69 63 68 20 | diese w irklich |
0050 c3 bc 62 65 72 73 63 68-72 65 69 62 65 6e 3f 63 |übersch reiben?c|
0060 00 00 00 47 45 4c 45 20-62 75 64 67 65 74 20 76 |...GELE  budget v|
0070 61 6c 75 65 73 20 61 6c-72 65 61 64 79 20 72 65 |alues al ready re|
0080 67 69 73 74 65 72 65 64-20 61 74 20 25 20 70 6c |gistered  at % pl|
0090 61 63 65 73 20 66 6f 72-20 79 65 61 72 20 25 2c |aces for  year %,|
00a0 20 64 6f 20 79 6f 75 20-72 65 61 6c 6c 79 20 77 | do you  really w|
00b0 61 6e 74 20 74 6f 20 6f-76 65 72 77 72 69 74 65 |ant to o verwrite|
00c0 20 74 68 65 6d 3f d1 6e-00 00 00 45 73 20 73 69 | them?Ñn ...Es si|
00d0 6e 64 20 6b 65 69 6e 65-20 56 65 72 72 65 63 68 |nd keine  Verrech|
00e0 6e 75 6e 67 65 6e 20 7a-75 20 64 65 6d 20 61 6e |nungen z u dem an|
00f0 67 65 67 65 62 65 6e 65-6e 20 44 61 74 75 6d 20 |gegebene n Datum |
0100 76 6f 72 68 61 6e 64 65-6e 21 20 57 6f 6c 6c 65 |vorhande n! Wolle|
0110 6e 20 53 69 65 20 64 61-73 20 6c 65 74 7a 74 65 |n Sie da s letzte|
0120 20 44 61 74 75 6d 20 76-6f 72 20 64 65 6e 20 61 | Datum v or den a|
0130 6e 67 65 67 65 62 65 6e-3f 46 00 00 00 4e 6f 20 |ngegeben ?F...No |
0140 61 63 63 6f 75 74 69 6e-67 20 61 76 61 69 6c 61 |accoutin g availa|
0150 62 6c 65 20 66 6f 72 20-74 68 65 20 69 6e 64 69 |ble for  the indi|
0160 63 61 74 65 64 20 64 61-74 65 21 20 43 6f 70 79 |cated da te! Copy|
0170 20 74 68 65 20 70 72 65-76 69 6f 75 73 20 64 61 | the pre vious da|
0180 74 65 3f d1 49 00 00 00-45 73 20 73 69 6e 64 20 |te?ÑI... Es sind |
0190 6b 65 69 6e 65 20 67 c3-bc 6c 74 69 67 65 6e 20 |keine gà ¼ltigen |
01a0 41 50 43 2d 57 65 72 74-65 20 69 6d 20 41 74 74 |APC-Wert e im Att|
01b0 72 69 62 75 74 20 28 42-4c 54 5f 41 50 43 5f 57 |ribut (B LT_APC_W|
01c0 45 52 54 29 20 68 69 6e-74 65 72 6c 65 67 74 20 |ERT) hin terlegt |
01d0 21 48 00 00 00 54 68 65-72 65 20 61 72 65 20 6e |!H...The re are n|
01e0 6f 20 76 61 6c 69 64 20-41 50 43 2d 76 61 6c 75 |o valid  APC-valu|
01f0 65 73 20 64 65 70 6f 73-69 74 65 64 20 69 6e 20 |es depos ited in |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 99 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 112
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (112 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 99
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (99 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 110 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 110
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (110 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 68 65 20 61 74 74 72 |........ the attr|
0010 69 62 75 74 65 20 28 42-4c 54 5f 41 50 43 5f 57 |ibute (B LT_APC_W|
0020 45 52 54 29 21 d1 3f 00-00 00 45 73 20 73 69 6e |ERT)!Ñ?. ..Es sin|
0030 64 20 6b 65 69 6e 65 20-67 c3 bc 6c 74 69 67 65 |d keine  gültige|
0040 6e 20 41 72 74 69 6b 65-6c 6e 75 6d 6d 65 72 20 |n Artike lnummer |
0050 69 6d 20 50 72 6f 74 6f-6b 6f 6c 6c 20 68 69 6e |im Proto koll hin|
0060 74 65 72 6c 65 67 74 20-21 33 00 00 00 4e 6f 20 |terlegt  !3...No |
0070 76 61 6c 69 64 20 61 72-74 69 63 6c 65 20 6e 75 |valid ar ticle nu|
0080 6d 62 65 72 20 72 65 67-69 73 74 65 72 65 64 20 |mber reg istered |
0090 69 6e 20 74 68 65 20 70-72 6f 74 6f 63 6f 6c 21 |in the p rotocol!|
00a0 d1 3f 00 00 00 45 73 20-73 69 6e 64 20 6b 65 69 |Ñ?...Es  sind kei|
00b0 6e 65 20 67 c3 bc 6c 74-69 67 65 6e 20 43 68 61 |ne gült igen Cha|
00c0 72 67 65 6e 6e 75 6d 6d-65 72 20 69 6d 20 50 72 |rgennumm er im Pr|
00d0 6f 74 6f 6b 6f 6c 6c 20-68 69 6e 74 65 72 6c 65 |otokoll  hinterle|
00e0 67 74 20 21 31 00 00 00-4e 6f 20 76 61 6c 69 64 |gt !1... No valid|
00f0 20 62 61 74 63 68 20 6e-75 6d 62 65 72 20 72 65 | batch n umber re|
0100 67 69 73 74 65 72 65 64-20 69 6e 20 74 68 65 20 |gistered  in the |
0110 70 72 6f 74 6f 63 6f 6c-21 d1 4d 00 00 00 45 73 |protocol !ÑM...Es|
0120 20 73 69 6e 64 20 6e 6f-63 68 20 6b 65 69 6e 65 | sind no ch keine|
0130 20 45 69 6e 67 61 62 65-6e 20 76 6f 72 68 61 6e | Eingabe n vorhan|
0140 64 65 6e 2e 20 57 6f 6c-6c 65 6e 20 53 69 65 20 |den. Wol len Sie |
0150 64 69 65 20 53 74 61 6e-64 61 72 64 77 65 72 74 |die Stan dardwert|
0160 65 20 61 6e 6c 65 67 65-6e 20 3f 32 00 00 00 54 |e anlege n ?2...T|
0170 68 65 72 65 20 61 72 65-20 73 74 69 6c 6c 20 65 |here are  still e|
0180 6e 74 72 69 65 73 2e 20-52 65 67 69 73 74 65 72 |ntries.  Register|
0190 20 73 74 61 6e 64 61 72-64 20 76 61 6c 75 65 73 | standar d values|
01a0 3f d1 38 00 00 00 45 73-20 77 75 72 64 65 20 65 |?Ñ8...Es  wurde e|
01b0 69 6e 65 20 54 65 73 74-2d 4c 69 7a 65 6e 7a 20 |ine Test -Lizenz |
01c0 66 c3 bc 72 20 64 61 73-20 4d 6f 64 75 6c 20 25 |für das  Modul %|
01d0 20 65 69 6e 67 65 74 72-61 67 65 6e 20 21 24 00 | eingetr agen !$.|
01e0 00 00 54 65 73 74 20 6c-69 63 65 6e 73 65 20 66 |..Test l icense f|
01f0 6f 72 20 6d 6f 64 75 6c-65 20 25 20 72 65 67 69 |or modul e % regi|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 74 65 72 65 64 d1 46 |........ steredÑF|
0010 00 00 00 45 73 20 77 75-72 64 65 20 6b 65 69 6e |...Es wu rde kein|
0020 20 4c 61 67 65 72 6f 72-74 20 66 c3 bc 72 20 41 | Lageror t für A|
0030 72 74 69 6b 65 6c 20 25-20 61 75 73 67 65 77 c3 |rtikel %  ausgewÃ|
0040 a4 68 6c 74 20 28 6b 65-69 6e 65 20 52 65 73 65 |¤hlt (ke ine Rese|
0050 72 76 69 65 72 75 6e 67-29 3b 00 00 00 4e 6f 20 |rvierung );...No |
0060 73 74 6f 72 61 67 65 20-6c 6f 63 61 74 69 6f 6e |storage  location|
0070 20 73 65 6c 65 63 74 65-64 20 66 6f 72 20 61 72 | selecte d for ar|
0080 74 69 63 6c 65 20 25 20-28 6e 6f 20 72 65 73 65 |ticle %  (no rese|
0090 72 76 61 74 69 6f 6e 29-d1 28 00 00 00 45 73 20 |rvation) Ñ(...Es |
00a0 77 75 72 64 65 20 6b 65-69 6e 65 20 70 61 73 73 |wurde ke ine pass|
00b0 65 6e 64 65 20 42 75 63-68 75 6e 67 20 67 65 66 |ende Buc hung gef|
00c0 75 6e 64 65 6e 18 00 00-00 4e 6f 20 66 69 74 74 |unden... .No fitt|
00d0 69 6e 67 20 70 6f 73 74-69 6e 67 20 66 6f 75 6e |ing post ing foun|
00e0 64 d1 4c 00 00 00 45 73-20 77 75 72 64 65 20 76 |dÑL...Es  wurde v|
00f0 65 72 67 65 62 6c 69 63-68 20 61 75 66 20 41 6e |ergeblic h auf An|
0100 74 77 6f 72 74 20 67 65-77 61 72 74 65 74 20 28 |twort ge wartet (|
0110 41 62 62 72 75 63 68 20-77 65 67 65 6e 20 5a 65 |Abbruch  wegen Ze|
0120 69 74 c3 bc 62 65 72 73-63 68 72 65 69 74 75 6e |itübers chreitun|
0130 67 29 2d 00 00 00 41 6e-73 77 65 72 20 61 77 61 |g)-...An swer awa|
0140 69 74 65 64 20 69 6e 20-76 61 69 6e 20 28 61 62 |ited in  vain (ab|
0150 6f 72 74 20 64 75 65 20-74 6f 20 74 69 6d 65 6f |ort due  to timeo|
0160 75 74 29 d1 2c 00 00 00-45 73 20 77 75 72 64 65 |ut)Ñ,... Es wurde|
0170 6e 20 25 20 44 61 74 65-6e 73 c3 a4 74 7a 65 20 |n % Date nsätze |
0180 69 6e 20 64 69 65 20 4d-61 73 6b 65 20 67 65 6c |in die M aske gel|
0190 61 64 65 6e 1f 00 00 00-25 20 64 61 74 61 20 72 |aden.... % data r|
01a0 65 63 6f 72 64 73 20 6c-6f 61 64 65 64 20 69 6e |ecords l oaded in|
01b0 74 6f 20 6d 61 73 6b d1-1e 00 00 00 45 73 20 77 |to maskÑ ....Es w|
01c0 75 72 64 65 6e 20 25 20-50 72 6f 62 6c 65 6d 65 |urden %  Probleme|
01d0 20 67 65 66 75 6e 64 65-6e 21 11 00 00 00 25 20 | gefunde n!....% |
01e0 70 72 6f 62 6c 65 6d 73-20 66 6f 75 6e 64 21 d1 |problems  found!Ñ|
01f0 26 00 00 00 45 73 20 77-75 72 64 65 6e 20 6b 65 |&...Es w urden ke|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 76 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 76
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (76 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6e 65 20 50 72 6f 62 |........ ine Prob|
0010 6c 65 6d 65 20 66 65 73-74 67 65 73 74 65 6c 6c |leme fes tgestell|
0020 74 21 0f 00 00 00 50 72-6f 62 6c 65 6d 73 20 66 |t!....Pr oblems f|
0030 6f 75 6e 64 21 d1 2c 00-00 00 45 73 20 77 75 72 |ound!Ñ,. ..Es wur|
0040 64 65 6e 20 6e 69 63 68-74 20 61 6c 6c 65 20 4d |den nich t alle M|
0050 75 73 73 66 65 6c 64 65-72 20 61 75 73 67 65 66 |ussfelde r ausgef|
0060 c3 bc 6c 6c 74 21 23 00-00 00 4e 6f 74 20 61 6c |üllt!#. ..Not al|
0070 6c 20 6d 61 6e 64 61 74-6f 72 79 20 66 69 65 6c |l mandat ory fiel|
0080 64 73 20 63 6f 6d 70 6c-65 74 65 64 21 d1 18 00 |ds compl eted!Ñ..|
0090 00 00 45 74 69 6b 65 74-74 4e 61 6d 65 20 75 6e |..Etiket tName un|
00a0 64 65 66 69 6e 69 65 72-74 21 14 00 00 00 4c 61 |definier t!....La|
00b0 62 65 6c 4e 61 6d 65 20-75 6e 64 65 66 69 6e 65 |belName  undefine|
00c0 64 21 d1 0b 00 00 00 45-76 61 6c 75 61 74 69 6f |d!Ñ....E valuatio|
00d0 6e 73 0b 00 00 00 45 76-61 6c 75 61 74 69 6f 6e |ns....Ev aluation|
00e0 73 d1 06 00 00 00 45 78-74 65 72 6e 08 00 00 00 |sÑ....Ex tern....|
00f0 45 78 74 65 72 6e 61 6c-d1 36 00 00 00 46 38 20 |External Ñ6...F8 |
0100 62 72 69 6e 67 74 20 53-69 65 20 69 6e 73 20 4d |bringt S ie ins M|
0110 61 69 6c 2d 46 6f 72 6d-75 6c 61 72 2c 20 52 65 |ail-Form ular, Re|
0120 74 75 72 6e 20 6b 65 68-72 74 20 7a 75 72 c3 bc |turn keh rt zurü|
0130 63 6b 2e 36 00 00 00 46-38 20 74 61 6b 65 73 20 |ck.6...F 8 takes |
0140 79 6f 75 20 74 6f 20 74-68 65 20 6d 61 69 6c 20 |you to t he mail |
0150 66 6f 72 6d 2c 20 72 65-74 75 72 6e 20 62 72 69 |form, re turn bri|
0160 6e 67 73 20 79 6f 75 20-62 61 63 6b 2e d1 3a 00 |ngs you  back.Ñ:.|
0170 00 00 46 45 48 4c 45 52-3a 20 44 69 65 20 41 75 |..FEHLER : Die Au|
0180 66 74 72 61 67 73 64 61-74 65 6e 20 6d c3 bc 73 |ftragsda ten müs|
0190 73 65 6e 20 61 6c 6c 65-20 65 69 6e 67 65 67 65 |sen alle  eingege|
01a0 62 65 6e 20 77 65 72 64-65 6e 20 21 2e 00 00 00 |ben werd en !....|
01b0 45 52 52 4f 52 3a 20 4f-72 64 65 72 20 64 61 74 |ERROR: O rder dat|
01c0 61 20 6d 75 73 74 20 62-65 20 65 6e 74 65 72 65 |a must b e entere|
01d0 64 20 63 6f 6d 70 6c 65-74 65 6c 79 20 21 d1 38 |d comple tely !Ñ8|
01e0 00 00 00 46 45 48 4c 45-52 3a 20 44 69 65 20 4b |...FEHLE R: Die K|
01f0 53 54 20 75 6e 64 20 4b-50 20 6d c3 bc 73 73 65 |ST und K P müsse|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6990, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6990, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6990, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6990, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1279e60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6990, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 20 62 65 69 64 65 20 |........ n beide |
0010 65 69 6e 67 65 67 65 62-65 6e 20 77 65 72 64 65 |eingegeb en werde|
0020 6e 20 21 26 00 00 00 45-52 52 4f 52 3a 20 43 43 |n !&...E RROR: CC|
0030 20 61 6e 64 20 43 50 20-6d 75 73 74 20 62 6f 74 | and CP  must bot|
0040 68 20 62 65 20 65 6e 74-65 72 65 64 21 d1 31 00 |h be ent ered!Ñ1.|
0050 00 00 46 45 48 4c 45 52-3a 20 44 69 65 20 4b 53 |..FEHLER : Die KS|
0060 54 2f 4b 50 20 6f 64 65-72 20 4b 54 2f 41 75 66 |T/KP ode r KT/Auf|
0070 74 72 61 67 73 64 61 74-65 6e 20 66 65 68 6c 65 |tragsdat en fehle|
0080 6e 20 21 2a 00 00 00 45-52 52 4f 52 3a 20 43 43 |n !*...E RROR: CC|
0090 2f 43 50 20 6f 72 20 43-55 2f 6f 72 64 65 72 20 |/CP or C U/order |
00a0 64 61 74 61 20 61 72 65-20 6d 69 73 73 69 6e 67 |data are  missing|
00b0 21 d1 30 00 00 00 46 45-48 4c 45 52 3a 20 45 73 |!Ñ0...FE HLER: Es|
00c0 20 67 69 62 74 20 64 61-73 20 4a 61 68 72 20 25 | gibt da s Jahr %|
00d0 20 69 6d 20 4b 6f 6e 74-6f 73 74 61 6d 6d 20 6e | im Kont ostamm n|
00e0 69 63 68 74 20 21 31 00-00 00 45 52 52 4f 52 3a |icht !1. ..ERROR:|
00f0 20 59 65 61 72 20 25 20-64 6f 65 73 20 6e 6f 74 | Year %  does not|
0100 20 65 78 69 73 74 20 69-6e 20 74 68 65 20 61 63 | exist i n the ac|
0110 63 6f 75 6e 74 20 62 61-73 65 21 d1 27 00 00 00 |count ba se!Ñ'...|
0120 46 45 48 4c 45 52 3a 20-45 73 20 67 69 62 74 20 |FEHLER:  Es gibt |
0130 64 69 65 20 50 65 72 69-6f 64 65 20 25 2f 25 20 |die Peri ode %/% |
0140 6e 69 63 68 74 20 21 21-00 00 00 45 52 52 4f 52 |nicht !! ...ERROR|
0150 3a 20 50 65 72 69 6f 64-20 25 2f 25 20 64 6f 65 |: Period  %/% doe|
0160 73 20 6e 6f 74 20 65 78-69 73 74 21 d1 41 00 00 |s not ex ist!ÑA..|
0170 00 46 45 48 4c 45 52 3a-20 45 73 20 69 73 74 20 |.FEHLER:  Es ist |
0180 6b 65 69 6e 20 45 69 6e-74 72 61 67 20 69 6e 20 |kein Ein trag in |
0190 56 61 72 69 61 62 6c 65-20 25 20 6f 64 65 72 20 |Variable  % oder |
01a0 41 52 43 2d 55 72 6c 20-76 6f 72 68 61 6e 64 65 |ARC-Url  vorhande|
01b0 6e 21 2c 00 00 00 45 52-52 4f 52 3a 20 4e 6f 20 |n!,...ER ROR: No |
01c0 65 6e 74 72 69 65 73 20-66 6f 72 20 76 61 72 69 |entries  for vari|
01d0 61 62 6c 65 20 25 20 6f-72 20 41 52 43 2d 55 72 |able % o r ARC-Ur|
01e0 6c 21 d1 3a 00 00 00 46-45 48 4c 45 52 3a 20 45 |l!Ñ:...F EHLER: E|
01f0 73 20 69 73 74 20 6b 65-69 6e 20 45 69 6e 74 72 |s ist ke in Eintr|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 67 20 69 6e 20 56 61 |........ ag in Va|
0010 72 69 61 62 6c 65 20 41-52 43 2d 55 72 6c 20 76 |riable A RC-Url v|
0020 6f 72 68 61 6e 64 65 6e-21 1e 00 00 00 45 52 52 |orhanden !....ERR|
0030 4f 52 3a 20 4e 6f 20 65-6e 74 72 69 65 73 20 66 |OR: No e ntries f|
0040 6f 72 20 41 52 43 2d 55-72 6c 21 d1 35 00 00 00 |or ARC-U rl!Ñ5...|
0050 46 45 48 4c 45 52 3a 20-48 61 62 65 6e 20 75 6e |FEHLER:  Haben un|
0060 64 20 53 6f 6c 6c 4b 6f-6e 74 6f 20 64 65 72 20 |d SollKo nto der |
0070 42 75 63 68 75 6e 67 20-73 69 6e 64 20 67 6c 65 |Buchung  sind gle|
0080 69 63 68 20 21 3d 00 00-00 45 52 52 4f 52 3a 20 |ich !=.. .ERROR: |
0090 43 72 65 64 69 74 20 61-6e 64 20 64 65 62 69 74 |Credit a nd debit|
00a0 20 61 63 63 6f 75 6e 74-20 6f 66 20 74 68 65 20 | account  of the |
00b0 62 6f 6f 6b 69 6e 67 20-61 72 65 20 69 64 65 6e |booking  are iden|
00c0 74 69 63 61 6c 21 d1 08-00 00 00 46 61 6c 6c 62 |tical!Ñ. ...Fallb|
00d0 61 63 6b 08 00 00 00 46-61 6c 6c 62 61 63 6b d1 |ack....F allbackÑ|
00e0 12 00 00 00 46 61 6c 73-63 68 65 73 20 50 61 73 |....Fals ches Pas|
00f0 73 77 6f 72 74 21 0f 00-00 00 57 72 6f 6e 67 20 |swort!.. ..Wrong |
0100 70 61 73 73 77 6f 72 64-21 d1 30 00 00 00 46 61 |password !Ñ0...Fa|
0110 78 6e 75 6d 6d 65 72 20-64 65 73 20 41 6e 73 70 |xnummer  des Ansp|
0120 72 65 63 68 70 61 72 74-6e 65 72 73 20 3e 41 64 |rechpart ners >Ad|
0130 72 4e 72 20 25 3c 20 66-65 68 6c 65 6e 21 2f 00 |rNr %< f ehlen!/.|
0140 00 00 46 61 78 20 6e 75-6d 62 65 72 20 6f 66 20 |..Fax nu mber of |
0150 63 6f 6e 74 61 63 74 20-70 65 72 73 6f 6e 20 3e |contact  person >|
0160 41 64 72 4e 6f 20 25 3c-20 6d 69 73 73 69 6e 67 |AdrNo %<  missing|
0170 21 d1 21 00 00 00 46 65-68 6c 65 6e 64 65 20 45 |!Ñ!...Fe hlende E|
0180 69 6e 74 72 c3 a4 67 65-20 28 25 29 20 65 72 67 |inträge  (%) erg|
0190 c3 a4 6e 7a 65 6e 3f 19-00 00 00 41 64 64 20 6d |änzen?. ...Add m|
01a0 69 73 73 69 6e 67 20 65-6e 74 72 69 65 73 20 28 |issing e ntries (|
01b0 25 29 20 3f d1 11 00 00-00 46 65 68 6c 65 6e 64 |%) ?Ñ... .Fehlend|
01c0 65 20 4e 75 6d 6d 65 72-6e 3a 10 00 00 00 4d 69 |e Nummer n:....Mi|
01d0 73 73 69 6e 67 20 6e 75-6d 62 65 72 73 3a d1 17 |ssing nu mbers:Ñ.|
01e0 00 00 00 46 65 68 6c 65-72 20 62 65 69 20 41 6b |...Fehle r bei Ak|
01f0 74 69 6f 6e 20 3c 25 2c-25 3e 1c 00 00 00 45 72 |tion <%, %>....Er|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6db0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280110, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280110, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x14a6f60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280110, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280430, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280430, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280430, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 6f 72 20 77 68 69 6c |........ ror whil|
0010 65 20 70 72 6f 63 65 73-73 69 6e 67 20 3c 25 2f |e proces sing <%/|
0020 25 3e d1 19 00 00 00 46-65 68 6c 65 72 20 62 65 |%>Ñ....F ehler be|
0030 69 20 64 65 72 20 55 6d-62 75 63 68 75 6e 67 21 |i der Um buchung!|
0040 1d 00 00 00 45 72 72 6f-72 20 77 68 69 6c 65 20 |....Erro r while |
0050 70 6f 73 74 69 6e 67 20-74 72 61 6e 73 66 65 72 |posting  transfer|
0060 21 d1 22 00 00 00 46 65-68 6c 65 72 20 62 65 69 |!Ñ"...Fe hler bei|
0070 6d 20 45 69 6e 66 c3 bc-67 65 6e 20 64 65 73 20 |m Einfü gen des |
0080 54 65 72 6d 69 6e 73 21-1f 00 00 00 45 72 72 6f |Termins! ....Erro|
0090 72 20 77 68 69 6c 65 20-69 6e 73 65 72 74 69 6e |r while  insertin|
00a0 67 20 74 68 65 20 64 61-74 65 21 d1 24 00 00 00 |g the da te!Ñ$...|
00b0 46 65 68 6c 65 72 20 69-6d 20 41 62 6c 61 75 66 |Fehler i m Ablauf|
00c0 20 28 4c 61 67 65 52 65-73 65 72 76 4c 61 75 74 | (LageRe servLaut|
00d0 50 4d 29 21 26 00 00 00-45 72 72 6f 72 20 69 6e |PM)!&... Error in|
00e0 20 70 72 6f 63 65 64 75-72 65 20 28 4c 61 67 65 | procedu re (Lage|
00f0 52 65 73 65 72 76 4c 61-75 74 50 4d 29 21 d1 1a |ReservLa utPM)!Ñ.|
0100 00 00 00 46 65 68 6c 65-72 20 69 6d 20 41 75 73 |...Fehle r im Aus|
0110 64 72 75 63 6b 20 3c 25-3e 2e 3c 25 3e 17 00 00 |druck <% >.<%>...|
0120 00 45 72 72 6f 72 73 20-69 6e 20 70 72 69 6e 74 |.Errors  in print|
0130 20 3c 25 3e 2e 3c 25 3e-d1 0c 00 00 00 46 65 68 | <%>.<%> Ñ....Feh|
0140 6c 65 72 3a 20 25 3a 20-25 0b 00 00 00 45 72 72 |ler: %:  %....Err|
0150 6f 72 3a 20 25 3a 20 25-d1 27 00 00 00 46 65 68 |or: %: % Ñ'...Feh|
0160 6c 65 72 3a 20 45 73 20-67 69 62 74 20 64 69 65 |ler: Es  gibt die|
0170 20 50 65 72 69 6f 64 65-20 25 2f 25 20 6e 69 63 | Periode  %/% nic|
0180 68 74 20 21 21 00 00 00-45 72 72 6f 72 3a 20 50 |ht !!... Error: P|
0190 65 72 69 6f 64 20 25 2f-25 20 64 6f 65 73 20 6e |eriod %/ % does n|
01a0 6f 74 20 65 78 69 73 74-21 d1 2c 00 00 00 46 65 |ot exist !Ñ,...Fe|
01b0 68 6c 65 72 3a 20 45 73-20 67 69 62 74 20 6b 65 |hler: Es  gibt ke|
01c0 69 6e 65 20 41 62 73 63-68 6c 75 73 73 70 65 72 |ine Absc hlussper|
01d0 69 6f 64 65 20 25 2f 25-20 21 2b 00 00 00 45 72 |iode %/%  !+...Er|
01e0 72 6f 72 3a 20 42 61 6c-61 6e 63 69 6e 67 20 70 |ror: Bal ancing p|
01f0 65 72 69 6f 64 20 25 2f-25 20 64 6f 65 73 20 6e |eriod %/ % does n|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280430, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6f 74 20 65 78 69 73 74 |........ ot exist|
0010 21 d1 06 00 00 00 46 65-6c 64 20 25 07 00 00 00 |!Ñ....Fe ld %....|
0020 46 69 65 6c 64 20 25 d1-0c 00 00 00 46 69 65 6c |Field %Ñ ....Fiel|
0030 64 20 3c 25 3e 3c 25 3e-0c 00 00 00 46 69 65 6c |d <%><%> ....Fiel|
0040 64 20 3c 25 3e 3c 25 3e-d1 13 00 00 00 46 69 65 |d <%><%> Ñ....Fie|
0050 6c 64 20 3c 25 3e 3c 25-3e 20 3c 25 3e 3c 25 3e |ld <%><% > <%><%>|
0060 13 00 00 00 46 69 65 6c-64 20 3c 25 3e 3c 25 3e |....Fiel d <%><%>|
0070 20 3c 25 3e 3c 25 3e d1-1d 00 00 00 46 69 6c 65 | <%><%>Ñ ....File|
0080 6e 61 6d 65 20 25 3a 20-44 65 73 63 72 69 70 74 |name %:  Descript|
0090 69 6f 6e 20 66 65 68 6c-74 1f 00 00 00 46 69 6c |ion fehl t....Fil|
00a0 65 6e 61 6d 65 20 25 3a-20 44 65 73 63 72 69 70 |ename %:  Descrip|
00b0 74 69 6f 6e 20 6d 69 73-73 69 6e 67 d1 19 00 00 |tion mis singÑ...|
00c0 00 46 69 6c 65 6e 61 6d-65 20 25 3a 20 45 69 6e |.Filenam e %: Ein|
00d0 68 65 69 74 20 66 65 68-6c 74 18 00 00 00 46 69 |heit feh lt....Fi|
00e0 6c 65 6e 61 6d 65 20 25-3a 20 55 6e 69 74 20 6d |lename % : Unit m|
00f0 69 73 73 69 6e 67 d1 21-00 00 00 46 69 6c 65 6e |issingÑ! ...Filen|
0100 61 6d 65 20 25 3a 20 45-69 6e 68 65 69 74 20 6e |ame %: E inheit n|
0110 69 63 68 74 20 67 c3 bc-6c 74 69 67 18 00 00 00 |icht gü ltig....|
0120 46 69 6c 65 6e 61 6d 65-20 25 3a 20 49 6e 76 61 |Filename  %: Inva|
0130 6c 69 64 20 75 6e 69 74-d1 16 00 00 00 46 69 6c |lid unit Ñ....Fil|
0140 65 6e 61 6d 65 20 25 3a-20 48 6f 73 74 20 66 65 |ename %:  Host fe|
0150 68 6c 74 18 00 00 00 46-69 6c 65 6e 61 6d 65 20 |hlt....F ilename |
0160 25 3a 20 48 6f 73 74 20-6d 69 73 73 69 6e 67 d1 |%: Host  missingÑ|
0170 16 00 00 00 46 69 6c 65-6e 61 6d 65 20 25 3a 20 |....File name %: |
0180 50 6f 72 74 20 66 65 68-6c 74 18 00 00 00 46 69 |Port feh lt....Fi|
0190 6c 65 6e 61 6d 65 20 25-3a 20 50 6f 72 74 20 6d |lename % : Port m|
01a0 69 73 73 69 6e 67 d1 1b-00 00 00 46 69 6e 64 65 |issingÑ. ...Finde|
01b0 20 41 49 20 25 20 6e 75-6d 53 20 25 20 2d 3e 20 | AI % nu mS % -> |
01c0 6e 75 6d 49 20 25 1a 00-00 00 46 69 6e 64 20 41 |numI %.. ..Find A|
01d0 49 20 25 20 6e 75 6d 53-20 25 20 2d 3e 20 6e 75 |I % numS  % -> nu|
01e0 6d 49 20 25 d1 26 00 00-00 46 69 6e 64 65 20 41 |mI %Ñ&.. .Finde A|
01f0 49 20 25 25 20 6e 75 6d-53 20 25 20 2d 3e 20 6e |I %% num S % -> n|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12810a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12810a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12810a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x12810a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280470, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-75 6d 49 20 25 20 2d 3e |........ umI % ->|
0010 20 6e 75 6d 46 20 25 25-00 00 00 46 69 6e 64 20 | numF %% ...Find |
0020 41 49 20 25 25 20 6e 75-6d 53 20 25 20 2d 3e 20 |AI %% nu mS % -> |
0030 6e 75 6d 49 20 25 20 2d-3e 20 6e 75 6d 46 20 25 |numI % - > numF %|
0040 d1 0d 00 00 00 46 69 6e-64 65 20 41 72 74 4e 72 |Ñ....Fin de ArtNr|
0050 20 25 0d 00 00 00 46 69-6e 64 65 20 41 72 74 4e | %....Fi nde ArtN|
0060 6f 20 25 d1 13 00 00 00-46 69 6e 64 65 20 45 41 |o %Ñ.... Finde EA|
0070 4e 31 33 20 25 20 62 65-69 20 25 12 00 00 00 46 |N13 % be i %....F|
0080 69 6e 64 20 45 41 4e 31-33 20 25 20 66 6f 72 20 |ind EAN1 3 % for |
0090 25 d1 19 00 00 00 46 69-6e 64 65 20 45 41 4e 31 |%Ñ....Fi nde EAN1|
00a0 33 20 25 20 62 65 69 20-25 20 56 50 45 20 25 17 |3 % bei  % VPE %.|
00b0 00 00 00 46 69 6e 64 20-45 41 4e 31 33 20 25 20 |...Find  EAN13 % |
00c0 66 6f 72 20 25 20 50 55-20 25 d1 0a 00 00 00 46 |for % PU  %Ñ....F|
00d0 69 6e 64 65 20 48 44 20-25 09 00 00 00 46 69 6e |inde HD  %....Fin|
00e0 64 20 50 44 20 25 d1 0b-00 00 00 46 69 6e 64 65 |d PD %Ñ. ...Finde|
00f0 20 4d 48 44 20 25 0a 00-00 00 46 69 6e 64 20 42 | MHD %.. ..Find B|
0100 42 44 20 25 d1 0a 00 00-00 46 69 6e 64 65 20 56 |BD %Ñ... .Finde V|
0110 44 20 25 09 00 00 00 46-69 6e 64 20 45 44 20 25 |D %....F ind ED %|
0120 d1 05 00 00 00 46 69 72-6d 61 07 00 00 00 43 6f |Ñ....Fir ma....Co|
0130 6d 70 61 6e 79 d1 10 00-00 00 46 69 72 6d 61 20 |mpanyÑ.. ..Firma |
0140 62 65 61 72 62 65 69 74-65 6e 0c 00 00 00 45 64 |bearbeit en....Ed|
0150 69 74 20 63 6f 6d 70 61-6e 79 d1 1a 00 00 00 46 |it compa nyÑ....F|
0160 69 72 6d 65 6e 2d 41 74-74 72 69 62 75 74 65 20 |irmen-At tribute |
0170 76 65 72 77 61 6c 74 65-6e 1f 00 00 00 41 64 6d |verwalte n....Adm|
0180 69 6e 69 73 74 72 61 74-65 20 63 6f 6d 70 61 6e |inistrat e compan|
0190 79 20 61 74 74 72 69 62-75 74 65 73 d1 20 00 00 |y attrib utesÑ ..|
01a0 00 46 69 72 6d 65 6e 2d-41 74 74 72 69 62 75 74 |.Firmen- Attribut|
01b0 65 77 65 72 74 65 20 62-65 61 72 62 65 69 74 65 |ewerte b earbeite|
01c0 6e 27 00 00 00 43 6f 6d-70 61 6e 79 20 61 74 74 |n'...Com pany att|
01d0 72 69 62 75 74 65 20 76-61 6c 75 65 73 20 61 64 |ribute v alues ad|
01e0 6d 69 6e 69 73 74 72 61-74 69 6f 6e d1 1f 00 00 |ministra tionÑ...|
01f0 00 46 69 72 6d 65 6e 2d-41 74 74 72 69 62 75 74 |.Firmen- Attribut|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-77 65 72 74 65 20 62 65 |........ werte be|
0010 61 72 62 65 69 74 65 6e-17 00 00 00 45 64 69 74 |arbeiten ....Edit|
0020 20 63 6f 6d 70 61 6e 79-20 61 74 74 72 69 62 75 | company  attribu|
0030 74 65 73 d1 1c 00 00 00-46 69 72 6d 65 6e 2d 4d |tesÑ.... Firmen-M|
0040 69 74 61 72 62 65 69 74-65 72 20 76 65 72 77 61 |itarbeit er verwa|
0050 6c 74 65 6e 20 00 00 00-43 6f 6d 70 61 6e 79 20 |lten ... Company |
0060 65 6d 70 6c 6f 79 65 65-73 20 61 64 6d 69 6e 69 |employee s admini|
0070 73 74 72 61 74 69 6f 6e-d1 0d 00 00 00 46 6f 6b |stration Ñ....Fok|
0080 75 73 3a 20 46 65 68 6c-65 72 0c 00 00 00 46 6f |us: Fehl er....Fo|
0090 63 75 73 3a 20 65 72 72-6f 72 d1 26 00 00 00 46 |cus: err orÑ&...F|
00a0 6f 6b 75 73 3a 20 49 6e-69 74 69 61 6c 69 73 69 |okus: In itialisi|
00b0 65 72 74 2c 20 6b 65 69-6e 20 45 69 6e 67 61 62 |ert, kei n Eingab|
00c0 65 66 65 6c 64 22 00 00-00 46 6f 63 75 73 3a 20 |efeld".. .Focus: |
00d0 49 6e 69 74 69 61 6c 69-73 65 64 2c 20 6e 6f 20 |Initiali sed, no |
00e0 69 6e 70 75 74 20 66 69-65 6c 64 d1 34 00 00 00 |input fi eldÑ4...|
00f0 46 6f 6b 75 73 3a 20 55-6e 67 c3 bc 6c 74 69 67 |Fokus: U ngültig|
0100 65 72 20 5a 69 65 6c 7a-75 73 74 61 6e 64 2c 20 |er Zielz ustand, |
0110 46 61 6c 6c 62 61 63 6b-20 61 75 66 20 64 65 66 |Fallback  auf def|
0120 61 75 6c 74 34 00 00 00-46 6f 63 75 73 3a 20 49 |ault4... Focus: I|
0130 6e 76 61 6c 69 64 20 74-61 72 67 65 74 20 63 6f |nvalid t arget co|
0140 6e 64 69 74 69 6f 6e 2c-20 66 61 6c 6c 62 61 63 |ndition,  fallbac|
0150 6b 20 74 6f 20 64 65 66-61 75 6c 74 d1 29 00 00 |k to def aultÑ)..|
0160 00 46 6f 6b 75 73 3a 20-55 6e 67 c3 bc 6c 74 69 |.Fokus:  Ungülti|
0170 67 65 72 20 5a 69 65 6c-7a 75 73 74 61 6e 64 2c |ger Ziel zustand,|
0180 20 69 67 6e 6f 72 69 65-72 74 28 00 00 00 46 6f | ignorie rt(...Fo|
0190 63 75 73 3a 20 49 6e 76-61 6c 69 64 20 74 61 72 |cus: Inv alid tar|
01a0 67 65 74 20 63 6f 6e 64-69 74 69 6f 6e 2c 20 69 |get cond ition, i|
01b0 67 6e 6f 72 65 64 d1 57-00 00 00 46 75 65 72 20 |gnoredÑW ...Fuer |
01c0 41 72 74 69 6b 65 6c 20-25 20 28 50 6f 73 20 25 |Artikel  % (Pos %|
01d0 2c 20 4f 72 64 20 25 29-20 77 75 72 64 65 20 6e |, Ord %)  wurde n|
01e0 6f 63 68 20 6b 65 69 6e-65 20 43 68 61 72 67 65 |och kein e Charge|
01f0 20 61 6e 67 65 6c 65 67-74 21 20 57 6f 6c 6c 65 | angeleg t! Wolle|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301cf0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1301d20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118ab30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118ab70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118ab30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118ab70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 20 53 69 65 20 64 61 |........ n Sie da|
0010 73 20 6e 75 6e 20 74 75-6e 3f 40 00 00 00 4e 6f |s nun tu n?@...No|
0020 20 62 61 74 63 68 20 72-65 67 69 73 74 65 72 65 | batch r egistere|
0030 64 20 66 6f 72 20 61 72-74 69 63 6c 65 20 25 20 |d for ar ticle % |
0040 28 49 74 65 6d 20 25 2c-20 4f 72 64 20 25 29 21 |(Item %,  Ord %)!|
0050 20 52 65 67 69 73 74 65-72 20 6e 6f 77 3f d1 50 | Registe r now?ÑP|
0060 00 00 00 46 c2 92 72 20-64 65 6e 20 4f 72 74 20 |...FÂ.r  den Ort |
0070 25 2d 25 20 25 20 73 69-6e 64 20 41 62 73 63 68 |%-% % si nd Absch|
0080 6e 69 74 74 65 20 65 72-66 61 73 73 74 2c 20 61 |nitte er fasst, a|
0090 62 65 72 20 25 20 6e 69-63 68 74 2e 20 42 69 74 |ber % ni cht. Bit|
00a0 74 65 20 6b 6f 72 72 69-67 69 65 72 65 6e 20 53 |te korri gieren S|
00b0 69 65 21 49 00 00 00 53-65 63 74 69 6f 6e 73 20 |ie!I...S ections |
00c0 68 61 76 65 20 62 65 65-6e 20 72 65 67 69 73 74 |have bee n regist|
00d0 65 72 65 64 20 66 6f 72-20 70 6c 61 63 65 20 25 |ered for  place %|
00e0 2d 25 20 25 2c 20 62 75-74 20 6e 6f 74 20 25 2e |-% %, bu t not %.|
00f0 20 50 6c 65 61 73 65 20-72 65 63 74 69 66 79 21 | Please  rectify!|
0100 d1 09 00 00 00 46 c3 bc-6c 6c 65 72 20 25 08 00 |Ñ....Fü ller %..|
0110 00 00 46 69 6c 6c 65 72-20 25 d1 31 00 00 00 46 |..Filler  %Ñ1...F|
0120 c3 bc 72 20 41 72 74 69-6b 65 6c 20 25 20 69 73 |ür Arti kel % is|
0130 74 20 6b 65 69 6e 65 20-52 65 66 65 72 65 6e 7a |t keine  Referenz|
0140 20 24 25 20 65 69 6e 67-65 74 72 61 67 65 6e 21 | $% eing etragen!|
0150 1f 00 00 00 41 72 74 69-63 6c 65 20 25 20 6c 61 |....Arti cle % la|
0160 63 6b 73 20 61 20 72 65-66 65 72 65 6e 63 65 20 |cks a re ference |
0170 24 25 21 d1 31 00 00 00-46 c3 bc 72 20 41 75 66 |$%!Ñ1... Für Auf|
0180 74 72 61 67 20 25 20 69-73 74 20 6b 65 69 6e 65 |trag % i st keine|
0190 20 52 65 66 65 72 65 6e-7a 20 24 25 20 65 69 6e | Referen z $% ein|
01a0 67 65 74 72 61 67 65 6e-21 1d 00 00 00 4f 72 64 |getragen !....Ord|
01b0 65 72 20 25 20 6c 61 63-6b 73 20 61 20 72 65 66 |er % lac ks a ref|
01c0 65 72 65 6e 63 65 20 24-25 21 d1 39 00 00 00 46 |erence $ %!Ñ9...F|
01d0 c3 bc 72 20 64 61 73 20-4c 61 6e 64 20 3c 25 3e |ür das  Land <%>|
01e0 20 66 65 68 6c 74 20 64-69 65 20 49 53 4f 2d 4c | fehlt d ie ISO-L|
01f0 c3 a4 6e 64 65 72 7a 75-6f 72 64 6e 75 6e 67 20 |änderzu ordnung |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118adc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118ae20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118adc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b010, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118adc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b010, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118adc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b010, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118adc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b010, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6e 20 63 61 73 79 2e |........ in casy.|
0010 31 00 00 00 63 61 73 79-20 6c 61 63 6b 73 20 49 |1...casy  lacks I|
0020 53 4f 20 63 6f 75 6e 74-72 79 20 61 73 73 69 67 |SO count ry assig|
0030 6e 6d 65 6e 74 20 66 6f-72 20 63 6f 75 6e 74 72 |nment fo r countr|
0040 79 20 3c 25 3e d1 80 00-00 00 46 c3 bc 72 20 64 |y <%>Ñ.. ..Für d|
0050 61 73 20 61 6e 67 65 67-65 62 65 6e 65 20 44 61 |as angeg ebene Da|
0060 74 75 6d 20 73 69 6e 64-20 6b 65 69 6e 65 20 61 |tum sind  keine a|
0070 75 73 67 2e 20 5a 61 68-6c 75 6e 67 65 6e 20 76 |usg. Zah lungen v|
0080 6f 72 68 61 6e 64 65 6e-20 28 55 6d 66 61 6e 67 |orhanden  (Umfang|
0090 20 25 29 21 20 57 6f 6c-6c 65 6e 20 53 69 65 20 | %)! Wol len Sie |
00a0 64 61 73 20 6c 65 74 7a-74 65 20 5a 61 68 6c 64 |das letz te Zahld|
00b0 61 74 75 6d 20 76 6f 72-20 64 65 6d 20 61 6e 67 |atum vor  dem ang|
00c0 65 67 65 62 65 6e 65 6e-20 3f 69 00 00 00 4e 6f |egebenen  ?i...No|
00d0 20 6f 75 74 67 6f 69 6e-67 20 70 61 79 6d 65 6e | outgoin g paymen|
00e0 74 73 20 66 6f 72 20 74-68 65 20 64 61 74 65 20 |ts for t he date |
00f0 69 6e 64 69 63 61 74 65-64 20 28 65 78 74 65 6e |indicate d (exten|
0100 74 20 25 29 21 20 56 69-65 77 20 6c 61 73 74 20 |t %)! Vi ew last |
0110 70 61 79 6d 65 6e 74 20-64 61 74 65 20 70 72 65 |payment  date pre|
0120 76 69 6f 75 73 20 74 6f-20 74 68 65 20 69 6e 64 |vious to  the ind|
0130 69 63 61 74 65 64 3f d1-50 00 00 00 46 c3 bc 72 |icated?Ñ P...Für|
0140 20 64 65 6e 20 4f 72 74-20 25 2d 25 20 25 20 73 | den Ort  %-% % s|
0150 69 6e 64 20 41 62 73 63-68 6e 69 74 74 65 20 65 |ind Absc hnitte e|
0160 72 66 61 73 73 74 2c 20-61 62 65 72 20 25 20 6e |rfasst,  aber % n|
0170 69 63 68 74 2e 20 42 69-74 74 65 20 6b 6f 72 72 |icht. Bi tte korr|
0180 69 67 69 65 72 65 6e 20-53 69 65 21 42 00 00 00 |igieren  Sie!B...|
0190 53 65 63 74 69 6f 6e 73-20 61 72 65 20 72 65 67 |Sections  are reg|
01a0 69 73 74 65 72 65 64 20-66 6f 72 20 74 68 65 20 |istered  for the |
01b0 63 69 74 79 20 25 2d 25-2d 25 2c 20 62 75 74 20 |city %-% -%, but |
01c0 6e 6f 74 20 25 2e 20 50-6c 65 61 73 65 20 66 69 |not %. P lease fi|
01d0 78 21 d1 37 00 00 00 46-c3 bc 72 20 64 69 65 20 |x!Ñ7...F ür die |
01e0 53 70 65 64 69 74 69 6f-6e 20 25 20 69 73 74 20 |Speditio n % ist |
01f0 62 69 73 68 65 72 20 6b-65 69 6e 65 20 55 52 4c |bisher k eine URL|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118adc0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 128 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 105 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 128
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (128 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 105
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b6e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (105 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 80 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 80
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (80 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b6e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 6b 6f 6e 66 69 67 75 |........  konfigu|
0010 72 69 65 72 74 21 21 00-00 00 4e 6f 20 55 52 4c |riert!!. ..No URL|
0020 20 63 6f 6e 66 69 67 75-72 65 64 20 66 6f 72 20 | configu red for |
0030 73 68 69 70 70 69 6e 67-20 25 21 d1 27 00 00 00 |shipping  %!Ñ'...|
0040 47 45 3a 20 4c 61 67 65-72 42 65 73 74 61 6e 64 |GE: Lage rBestand|
0050 20 3d 20 25 2c 20 4c 61-67 65 72 42 65 73 74 61 | = %, La gerBesta|
0060 6e 64 52 20 3d 20 25 27-00 00 00 42 55 3a 20 4c |ndR = %' ...BU: L|
0070 61 67 65 72 42 65 73 74-61 6e 64 20 3d 20 25 2c |agerBest and = %,|
0080 20 4c 61 67 65 72 42 65-73 74 61 6e 64 52 20 3d | LagerBe standR =|
0090 20 25 d1 3a 00 00 00 47-45 3a 20 4c 61 67 65 72 | %Ñ:...G E: Lager|
00a0 42 65 73 74 61 6e 64 20-3d 20 25 2c 20 4c 61 67 |Bestand  = %, Lag|
00b0 65 72 42 65 73 74 61 6e-64 55 20 3d 20 25 2c 20 |erBestan dU = %, |
00c0 4c 61 67 65 72 42 65 73-74 61 6e 64 52 20 3d 20 |LagerBes tandR = |
00d0 25 3a 00 00 00 42 55 3a-20 4c 61 67 65 72 42 65 |%:...BU:  LagerBe|
00e0 73 74 61 6e 64 20 3d 20-25 2c 20 4c 61 67 65 72 |stand =  %, Lager|
00f0 42 65 73 74 61 6e 64 55-20 3d 20 25 2c 20 4c 61 |BestandU  = %, La|
0100 67 65 72 42 65 73 74 61-6e 64 52 20 3d 20 25 d1 |gerBesta ndR = %Ñ|
0110 1b 00 00 00 47 65 62 65-6e 20 53 69 65 20 27 25 |....Gebe n Sie '%|
0120 27 20 6f 64 65 72 20 27-25 27 20 65 69 6e 21 11 |' oder ' %' ein!.|
0130 00 00 00 45 6e 74 65 72-20 27 25 27 20 6f 72 20 |...Enter  '%' or |
0140 27 25 27 21 d1 1b 00 00-00 47 65 62 65 6e 20 53 |'%'!Ñ... .Geben S|
0150 69 65 20 27 25 27 20 6f-64 65 72 20 27 25 27 20 |ie '%' o der '%' |
0160 65 69 6e 2e 11 00 00 00-45 6e 74 65 72 20 27 25 |ein..... Enter '%|
0170 27 20 6f 72 20 27 25 27-2e d1 20 00 00 00 47 65 |' or '%' .Ñ ...Ge|
0180 62 65 6e 20 53 69 65 20-27 25 27 2c 20 27 25 27 |ben Sie  '%', '%'|
0190 20 6f 64 65 72 20 27 25-27 20 65 69 6e 21 16 00 | oder '% ' ein!..|
01a0 00 00 45 6e 74 65 72 20-27 25 27 2c 20 27 25 27 |..Enter  '%', '%'|
01b0 20 6f 72 20 27 25 27 21-d1 20 00 00 00 47 65 62 | or '%'! Ñ ...Geb|
01c0 65 6e 20 53 69 65 20 27-25 27 2c 20 27 25 27 20 |en Sie ' %', '%' |
01d0 6f 64 65 72 20 27 25 27-20 65 69 6e 2e 16 00 00 |oder '%'  ein....|
01e0 00 45 6e 74 65 72 20 27-25 27 2c 20 27 25 27 20 |.Enter ' %', '%' |
01f0 6f 72 20 27 25 27 2e d1-18 00 00 00 47 65 62 65 |or '%'.Ñ ....Gebe|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b6e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b6e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 20 53 69 65 20 64 69 |........ n Sie di|
0010 65 20 41 6e 6c 61 67 65-20 61 6e 21 1c 00 00 00 |e Anlage  an!....|
0020 50 6c 65 61 73 65 20 65-6e 74 65 72 20 74 68 65 |Please e nter the|
0030 20 69 6e 76 65 73 74 6d-65 6e 74 21 d1 1c 00 00 | investm ent!Ñ...|
0040 00 47 65 62 65 6e 20 53-69 65 20 65 69 6e 20 42 |.Geben S ie ein B|
0050 61 6e 6b 6b 6f 6e 74 6f-20 65 69 6e 21 1c 00 00 |ankkonto  ein!...|
0060 00 50 6c 65 61 73 65 20-65 6e 74 65 72 20 61 20 |.Please  enter a |
0070 62 61 6e 6b 20 61 63 63-6f 75 6e 74 21 d1 1d 00 |bank acc ount!Ñ..|
0080 00 00 47 65 62 65 6e 20-53 69 65 20 65 69 6e 20 |..Geben  Sie ein |
0090 42 65 7a 75 67 73 64 61-74 75 6d 20 61 6e 21 22 |Bezugsda tum an!"|
00a0 00 00 00 50 6c 65 61 73-65 20 65 6e 74 65 72 20 |...Pleas e enter |
00b0 74 68 65 20 64 61 74 65-20 6f 66 20 70 75 72 63 |the date  of purc|
00c0 68 61 73 65 21 d1 21 00-00 00 47 65 62 65 6e 20 |hase!Ñ!. ..Geben |
00d0 53 69 65 20 65 69 6e 20-62 65 6b 61 6e 6e 74 65 |Sie ein  bekannte|
00e0 73 20 4c 61 6e 64 20 65-69 6e 21 1d 00 00 00 50 |s Land e in!....P|
00f0 6c 65 61 73 65 20 65 6e-74 65 72 20 61 20 6b 6e |lease en ter a kn|
0100 6f 77 6e 20 63 6f 75 6e-74 72 79 21 d1 20 00 00 |own coun try!Ñ ..|
0110 00 47 65 62 65 6e 20 53-69 65 20 65 69 6e 65 20 |.Geben S ie eine |
0120 41 6e 6c 61 67 65 67 72-75 70 70 65 20 65 69 6e |Anlagegr uppe ein|
0130 21 1c 00 00 00 50 6c 65-61 73 65 20 65 6e 74 65 |!....Ple ase ente|
0140 72 20 61 6e 20 61 73 73-65 74 20 67 72 6f 75 70 |r an ass et group|
0150 21 d1 18 00 00 00 47 65-62 65 6e 20 53 69 65 20 |!Ñ....Ge ben Sie |
0160 65 69 6e 65 20 42 61 6e-6b 20 65 69 6e 21 14 00 |eine Ban k ein!..|
0170 00 00 50 6c 65 61 73 65-20 65 6e 74 65 72 20 61 |..Please  enter a|
0180 20 62 61 6e 6b 21 d1 19-00 00 00 47 65 62 65 6e | bank!Ñ. ...Geben|
0190 20 53 69 65 20 65 69 6e-65 20 4b 6c 61 73 73 65 | Sie ein e Klasse|
01a0 20 61 6e 21 16 00 00 00-50 6c 65 61 73 65 65 20 | an!.... Pleasee |
01b0 65 6e 74 65 72 20 61 20-63 6c 61 73 73 21 d1 20 |enter a  class!Ñ |
01c0 00 00 00 47 65 62 65 6e-20 53 69 65 20 65 69 6e |...Geben  Sie ein|
01d0 65 20 4b 6f 73 74 65 6e-73 74 65 6c 6c 65 20 65 |e Kosten stelle e|
01e0 69 6e 21 1b 00 00 00 50-6c 65 61 73 65 20 65 6e |in!....P lease en|
01f0 74 65 72 20 61 20 63 6f-73 74 20 63 65 6e 74 65 |ter a co st cente|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 21 d1 1a 00 00 00 47 |........ r!Ñ....G|
0010 65 62 65 6e 20 53 69 65-20 65 69 6e 65 20 50 65 |eben Sie  eine Pe|
0020 72 73 6f 6e 20 65 69 6e-21 16 00 00 00 50 6c 65 |rson ein !....Ple|
0030 61 73 65 20 65 6e 74 65-72 20 61 20 70 65 72 73 |ase ente r a pers|
0040 6f 6e 21 d1 24 00 00 00-47 65 62 65 6e 20 53 69 |on!Ñ$... Geben Si|
0050 65 20 65 69 6e 65 20 5a-61 68 6c 75 6e 67 73 62 |e eine Z ahlungsb|
0060 65 64 69 6e 67 75 6e 67-20 61 6e 21 20 00 00 00 |edingung  an! ...|
0070 50 6c 65 61 73 65 20 65-6e 74 65 72 20 20 61 20 |Please e nter  a |
0080 74 65 72 6d 20 6f 66 20-70 61 79 6d 65 6e 74 21 |term of  payment!|
0090 d1 20 00 00 00 47 65 62-65 6e 20 53 69 65 20 65 |Ñ ...Geb en Sie e|
00a0 69 6e 65 20 62 65 6b 61-6e 6e 74 65 20 4b 53 54 |ine beka nnte KST|
00b0 20 65 69 6e 21 1d 00 00-00 50 6c 65 61 73 65 20 | ein!... .Please |
00c0 65 6e 74 65 72 20 61 20-72 65 67 69 73 74 65 72 |enter a  register|
00d0 65 64 20 43 43 21 d1 25-00 00 00 47 65 62 65 6e |ed CC!Ñ% ...Geben|
00e0 20 53 69 65 20 65 69 6e-65 20 62 65 6b 61 6e 6e | Sie ein e bekann|
00f0 74 65 20 57 c3 a4 68 72-75 6e 67 20 65 69 6e 21 |te Währ ung ein!|
0100 23 00 00 00 50 6c 65 61-73 65 20 65 6e 74 65 72 |#...Plea se enter|
0110 20 61 20 72 65 67 69 73-74 65 72 65 64 20 63 75 | a regis tered cu|
0120 72 72 65 6e 63 79 21 d1-1c 00 00 00 47 65 62 65 |rrency!Ñ ....Gebe|
0130 6e 20 53 69 65 20 65 69-6e 65 6e 20 44 65 62 69 |n Sie ei nen Debi|
0140 74 6f 72 20 65 69 6e 21-16 00 00 00 50 6c 65 61 |tor ein! ....Plea|
0150 73 65 20 65 6e 74 65 72-20 61 20 64 65 62 74 6f |se enter  a debto|
0160 72 21 d1 20 00 00 00 47-65 62 65 6e 20 53 69 65 |r!Ñ ...G eben Sie|
0170 20 65 69 6e 65 6e 20 4b-6f 73 74 65 6e 70 6c 61 | einen K ostenpla|
0180 74 7a 20 65 69 6e 21 1a-00 00 00 50 6c 65 61 73 |tz ein!. ...Pleas|
0190 65 20 65 6e 74 65 72 20-61 20 63 6f 73 74 20 70 |e enter  a cost p|
01a0 6c 61 63 65 21 d1 1d 00-00 00 47 65 62 65 6e 20 |lace!Ñ.. ..Geben |
01b0 53 69 65 20 65 69 6e 65-6e 20 4b 72 65 64 69 74 |Sie eine n Kredit|
01c0 6f 72 20 65 69 6e 21 18-00 00 00 50 6c 65 61 73 |or ein!. ...Pleas|
01d0 65 20 65 6e 74 65 72 20-61 20 63 72 65 64 69 74 |e enter  a credit|
01e0 6f 72 21 d1 1d 00 00 00-47 65 62 65 6e 20 53 69 |or!Ñ.... Geben Si|
01f0 65 20 65 69 6e 65 6e 20-53 74 61 6e 64 6f 72 74 |e einen  Standort|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 65 69 6e 21 18 00 00 |........  ein!...|
0010 00 50 6c 65 61 73 65 20-65 6e 74 65 72 20 61 20 |.Please  enter a |
0020 6c 6f 63 61 74 69 6f 6e-21 d1 19 00 00 00 47 65 |location !Ñ....Ge|
0030 62 65 6e 20 53 69 65 20-65 69 6e 65 6e 20 57 65 |ben Sie  einen We|
0040 72 74 20 65 69 6e 21 15-00 00 00 50 6c 65 61 73 |rt ein!. ...Pleas|
0050 65 20 65 6e 74 65 72 20-61 20 76 61 6c 75 65 21 |e enter  a value!|
0060 d1 29 00 00 00 47 65 62-65 6e 20 53 69 65 20 65 |Ñ)...Geb en Sie e|
0070 69 6e 65 6e 20 62 65 6b-61 6e 6e 74 65 6e 20 53 |inen bek annten S|
0080 70 72 61 63 68 63 6f 64-65 20 65 69 6e 21 28 00 |prachcod e ein!(.|
0090 00 00 50 6c 65 61 73 65-20 65 6e 74 65 72 20 61 |..Please  enter a|
00a0 20 72 65 67 69 73 74 65-72 65 64 20 6c 61 6e 67 | registe red lang|
00b0 75 61 67 65 20 63 6f 64-65 21 d1 0e 00 00 00 47 |uage cod e!Ñ....G|
00c0 65 6e 65 72 61 6c 20 6c-65 64 67 65 72 0e 00 00 |eneral l edger...|
00d0 00 47 65 6e 65 72 61 6c-20 6c 65 64 67 65 72 d1 |.General  ledgerÑ|
00e0 09 00 00 00 47 65 6e 65-72 61 6c 6c 79 09 00 00 |....Gene rally...|
00f0 00 47 65 6e 65 72 61 6c-6c 79 d1 15 00 00 00 47 |.General lyÑ....G|
0100 65 6f 6d 65 74 72 69 73-63 68 20 44 65 67 72 65 |eometris ch Degre|
0110 73 73 69 76 22 00 00 00-67 65 6f 6d 65 74 72 69 |ssiv"... geometri|
0120 63 20 64 65 63 6c 69 6e-69 6e 67 20 62 61 6c 61 |c declin ing bala|
0130 6e 63 65 20 6d 65 74 68-6f 64 d1 2e 00 00 00 47 |nce meth odÑ....G|
0140 65 6f 6d 65 74 72 69 73-63 68 20 44 65 67 72 65 |eometris ch Degre|
0150 73 73 69 76 20 2b 20 4c-69 6e 65 61 72 20 28 4c |ssiv + L inear (L|
0160 61 75 66 7a 65 69 74 20-66 65 73 74 29 33 00 00 |aufzeit  fest)3..|
0170 00 67 65 6f 6d 65 74 72-69 63 20 64 65 63 6c 69 |.geometr ic decli|
0180 6e 69 6e 67 20 62 61 6c-61 6e 63 65 20 6d 65 74 |ning bal ance met|
0190 68 6f 64 20 28 69 6e 74-61 6b 65 20 72 75 6e 74 |hod (int ake runt|
01a0 69 6d 65 29 d1 2e 00 00-00 47 65 6f 6d 65 74 72 |ime)Ñ... .Geometr|
01b0 69 73 63 68 20 44 65 67-72 65 73 73 69 76 20 2b |isch Deg ressiv +|
01c0 20 4c 69 6e 65 61 72 20-28 57 65 63 68 73 65 6c | Linear  (Wechsel|
01d0 25 20 66 65 73 74 29 22-00 00 00 67 65 6f 6d 65 |% fest)" ...geome|
01e0 74 72 69 63 20 64 65 63-6c 69 6e 69 6e 67 20 62 |tric dec lining b|
01f0 61 6c 61 6e 63 65 20 6d-65 74 68 6f 64 d1 16 00 |alance m ethodÑ..|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118d7f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118bd00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 47 65 6f 6d 65 74 |........ ..Geomet|
0010 72 69 73 63 68 20 50 72-6f 67 72 65 73 73 69 76 |risch Pr ogressiv|
0020 1a 00 00 00 70 72 6f 67-72 65 73 73 69 76 65 20 |....prog ressive |
0030 62 61 6c 61 6e 63 65 20-6d 65 74 68 6f 64 d1 14 |balance  methodÑ.|
0040 00 00 00 47 65 74 48 69-6c 66 65 3a 20 48 69 6c |...GetHi lfe: Hil|
0050 66 65 55 52 4c 20 25 14-00 00 00 47 65 74 48 69 |feURL %. ...GetHi|
0060 6c 66 65 3a 20 68 65 6c-70 20 55 52 4c 20 25 d1 |lfe: hel p URL %Ñ|
0070 14 00 00 00 47 65 74 48-69 6c 66 65 3a 20 54 79 |....GetH ilfe: Ty|
0080 70 20 25 20 49 44 20 25-15 00 00 00 47 65 74 48 |p % ID % ....GetH|
0090 69 6c 66 65 3a 20 74 79-70 65 20 25 20 49 44 20 |ilfe: ty pe % ID |
00a0 25 d1 37 00 00 00 47 65-74 48 69 6c 66 65 3a 20 |%Ñ7...Ge tHilfe: |
00b0 54 79 70 20 25 20 49 44-20 25 20 4d 6f 64 75 6c |Typ % ID  % Modul|
00c0 20 25 20 53 75 70 65 72-4d 6f 64 75 6c 20 25 20 | % Super Modul % |
00d0 48 69 6c 66 65 53 65 72-76 65 72 20 25 3a 00 00 |HilfeSer ver %:..|
00e0 00 47 65 74 48 69 6c 66-65 3a 20 74 79 70 65 20 |.GetHilf e: type |
00f0 25 20 49 44 20 25 20 4d-6f 64 75 6c 20 25 20 73 |% ID % M odul % s|
0100 75 70 65 72 20 6d 6f 64-75 6c 65 20 25 20 48 69 |uper mod ule % Hi|
0110 6c 66 65 53 65 72 76 65-72 20 25 d1 18 00 00 00 |lfeServe r %Ñ....|
0120 47 72 6f 75 70 20 45 6e-74 72 79 20 25 20 64 61 |Group En try % da|
0130 74 61 74 79 70 65 20 25-18 00 00 00 47 72 6f 75 |tatype % ....Grou|
0140 70 20 45 6e 74 72 79 20-25 20 64 61 74 61 74 79 |p Entry  % dataty|
0150 70 65 20 25 d1 06 00 00-00 47 72 75 70 70 65 05 |pe %Ñ... .Gruppe.|
0160 00 00 00 47 72 6f 75 70-d1 0f 00 00 00 48 69 6e |...Group Ñ....Hin|
0170 77 65 69 73 65 20 73 75-63 68 65 6e 0e 00 00 00 |weise su chen....|
0180 53 65 61 72 63 68 20 72-65 6d 61 72 6b 73 d1 07 |Search r emarksÑ.|
0190 00 00 00 48 6f 6e 6f 72-61 72 04 00 00 00 57 61 |...Honor ar....Wa|
01a0 67 65 d1 29 00 00 00 49-63 68 20 6b 61 6e 6e 20 |geÑ)...I ch kann |
01b0 6b 65 69 6e 20 70 61 73-73 65 6e 64 65 73 20 5a |kein pas sendes Z|
01c0 61 68 6c 64 61 74 75 6d-20 66 69 6e 64 65 6e 21 |ahldatum  finden!|
01d0 25 00 00 00 43 61 6e 27-74 20 66 69 6e 64 20 61 |%...Can' t find a|
01e0 20 63 6f 6d 70 61 74 69-62 6c 65 20 70 61 79 6d | compati ble paym|
01f0 65 6e 74 20 64 61 74 65-21 d1 17 00 00 00 49 63 |ent date !Ñ....Ic|

token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118dc20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e290, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-68 20 6b 61 6e 6e 20 6b |........ h kann k|
0010 65 69 6e 73 20 66 69 6e-64 65 6e 20 21 0f 00 00 |eins fin den !...|
0020 00 43 61 6e 27 74 20 66-69 6e 64 20 61 6e 79 21 |.Can't f ind any!|
0030 d1 0e 00 00 00 49 63 6f-6e 20 65 6e 74 66 65 72 |Ñ....Ico n entfer|
0040 6e 65 6e 0b 00 00 00 44-65 6c 65 74 65 20 69 63 |nen....D elete ic|
0050 6f 6e d1 05 00 00 00 49-64 65 61 73 05 00 00 00 |onÑ....I deas....|
0060 49 64 65 61 73 d1 16 00-00 00 49 67 6e 3a 20 24 |IdeasÑ.. ..Ign: $|
0070 63 75 72 66 6f 72 6d 3a-72 65 61 64 6f 6e 6c 79 |curform: readonly|
0080 16 00 00 00 49 67 6e 3a-20 24 63 75 72 66 6f 72 |....Ign:  $curfor|
0090 6d 3a 72 65 61 64 6f 6e-6c 79 d1 0f 00 00 00 49 |m:readon lyÑ....I|
00a0 67 6e 3a 20 6c 69 6e 65-20 65 6d 70 74 79 0f 00 |gn: line  empty..|
00b0 00 00 49 67 6e 3a 20 6c-69 6e 65 20 65 6d 70 74 |..Ign: l ine empt|
00c0 79 d1 0f 00 00 00 49 67-6e 3a 20 6e 6f 74 20 61 |yÑ....Ig n: not a|
00d0 74 20 65 6f 67 0f 00 00-00 49 67 6e 3a 20 6e 6f |t eog... .Ign: no|
00e0 74 20 61 74 20 65 6f 67-d1 11 00 00 00 49 67 6e |t at eog Ñ....Ign|
00f0 3a 20 6e 6f 74 20 69 6e-20 67 72 6f 75 70 11 00 |: not in  group..|
0100 00 00 49 67 6e 3a 20 6e-6f 74 20 69 6e 20 67 72 |..Ign: n ot in gr|
0110 6f 75 70 d1 15 00 00 00-49 67 6e 3a 20 6e 6f 74 |oupÑ.... Ign: not|
0120 20 6f 6e 20 6c 61 73 74-20 6c 69 6e 65 15 00 00 | on last  line...|
0130 00 49 67 6e 3a 20 6e 6f-74 20 6f 6e 20 6c 61 73 |.Ign: no t on las|
0140 74 20 6c 69 6e 65 d1 0d-00 00 00 49 67 6e 3a 20 |t lineÑ. ...Ign: |
0150 72 65 61 64 6f 6e 6c 79-0d 00 00 00 49 67 6e 3a |readonly ....Ign:|
0160 20 72 65 61 64 6f 6e 6c-79 d1 32 00 00 00 49 68 | readonl yÑ2...Ih|
0170 72 20 5a 75 67 72 69 66-66 20 61 75 66 20 64 69 |r Zugrif f auf di|
0180 65 73 65 6e 20 4d 61 6e-64 61 6e 74 65 6e 20 28 |esen Man danten (|
0190 25 29 20 69 73 74 20 67-65 73 70 65 72 72 74 21 |%) ist g esperrt!|
01a0 27 00 00 00 59 6f 75 72-20 61 63 63 65 73 73 20 |'...Your  access |
01b0 74 6f 20 6d 61 6e 64 61-74 6f 72 20 28 25 29 20 |to manda tor (%) |
01c0 69 73 20 62 6c 6f 63 6b-65 64 21 d1 54 00 00 00 |is block ed!ÑT...|
01d0 49 68 72 65 20 44 61 74-65 6e 62 61 6e 6b 20 69 |Ihre Dat enbank i|
01e0 73 74 20 7a 75 72 20 5a-65 69 74 20 6e 69 63 68 |st zur Z eit nich|
01f0 74 20 76 65 72 66 c3 bc-67 62 61 72 20 21 20 4c |t verfü gbar ! L|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118e750, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f190, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118b040, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6f 67 67 65 6e 20 53 69 |........ oggen Si|
0010 65 20 62 69 74 74 65 20-73 70 61 65 74 65 72 20 |e bitte  spaeter |
0020 77 69 65 64 65 72 20 65-69 6e 20 21 44 00 00 00 |wieder e in !D...|
0030 59 6f 75 72 20 64 61 74-61 62 61 73 65 20 69 73 |Your dat abase is|
0040 20 63 75 72 72 65 6e 74-6c 79 20 6e 6f 74 20 61 | current ly not a|
0050 76 61 69 6c 61 62 6c 65-21 20 50 6c 65 61 73 65 |vailable ! Please|
0060 20 6c 6f 67 20 69 6e 20-61 67 61 69 6e 20 6c 61 | log in  again la|
0070 74 65 72 21 d1 29 00 00-00 49 68 72 65 20 50 65 |ter!Ñ).. .Ihre Pe|
0080 72 73 6f 6e 20 66 65 68-6c 74 20 69 6e 20 64 65 |rson feh lt in de|
0090 6e 20 54 6f 44 6f 2d 53-74 61 6d 6d 64 61 74 65 |n ToDo-S tammdate|
00a0 6e 21 28 00 00 00 59 6f-75 20 61 72 65 20 6d 69 |n!(...Yo u are mi|
00b0 73 73 69 6e 67 20 69 6e-20 74 68 65 20 54 6f 44 |ssing in  the ToD|
00c0 6f 20 6d 61 73 74 65 72-20 64 61 74 61 21 d1 0d |o master  data!Ñ.|
00d0 00 00 00 49 6d 20 46 6f-72 6d 75 6c 61 72 20 3e |...Im Fo rmular >|
00e0 0d 00 00 00 49 6e 20 74-68 65 20 66 6f 72 6d 20 |....In t he form |
00f0 3e d1 1d 00 00 00 49 6d-20 46 6f 72 6d 75 6c 61 |>Ñ....Im  Formula|
0100 72 20 3e 20 25 20 3c 20-61 75 66 20 25 20 3e 20 |r > % <  auf % > |
0110 25 20 3c 18 00 00 00 49-6e 20 66 6f 72 6d 20 3e |% <....I n form >|
0120 20 25 20 3c 20 6f 6e 20-25 20 3e 20 25 20 3c d1 | % < on  % > % <Ñ|
0130 2d 00 00 00 49 6e 20 64-65 72 20 53 6f 7a 69 61 |-...In d er Sozia|
0140 6c 6b 61 73 73 65 20 3c-25 3e 20 66 65 68 6c 74 |lkasse < %> fehlt|
0150 20 64 69 65 20 4d 69 74-67 6c 69 65 64 2d 4e 72 | die Mit glied-Nr|
0160 21 2f 00 00 00 4d 65 6d-62 65 72 20 6e 6f 2e 20 |!/...Mem ber no. |
0170 6d 69 73 73 69 6e 67 20-69 6e 20 73 6f 63 69 61 |missing  in socia|
0180 6c 20 73 65 63 75 72 69-74 79 20 66 75 6e 64 20 |l securi ty fund |
0190 3c 25 3e 21 d1 30 00 00-00 49 6e 20 64 65 72 20 |<%>!Ñ0.. .In der |
01a0 53 6f 7a 69 61 6c 6b 61-73 73 65 20 3c 25 3e 20 |Sozialka sse <%> |
01b0 66 65 68 6c 74 20 64 69-65 20 56 65 72 74 72 61 |fehlt di e Vertra|
01c0 67 73 6e 75 6d 6d 65 72-21 31 00 00 00 43 6f 6e |gsnummer !1...Con|
01d0 74 72 61 63 74 20 6e 6f-2e 20 6d 69 73 73 69 6e |tract no . missin|
01e0 67 20 69 6e 20 73 6f 63-69 61 6c 20 73 65 63 75 |g in soc ial secu|
01f0 72 69 74 79 20 66 75 6e-64 20 3c 25 3e 21 d1 09 |rity fun d <%>!Ñ.|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f330, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f330, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f330, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f330, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f390, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 00 49 6e 63 69 64 |........ ...Incid|
0010 65 6e 74 73 09 00 00 00-49 6e 63 69 64 65 6e 74 |ents.... Incident|
0020 73 d1 16 00 00 00 49 6e-69 74 20 25 20 5a 65 72 |sÑ....In it % Zer|
0030 74 69 66 69 6b 61 74 2c-53 48 44 42 17 00 00 00 |tifikat, SHDB....|
0040 49 6e 69 74 20 25 20 63-65 72 74 69 66 69 63 61 |Init % c ertifica|
0050 74 65 2c 53 48 44 53 d1-0b 00 00 00 49 6e 73 65 |te,SHDSÑ ....Inse|
0060 72 74 53 65 71 20 25 0b-00 00 00 49 6e 73 65 72 |rtSeq %. ...Inser|
0070 74 53 65 71 20 25 d1 17-00 00 00 49 6e 73 74 45 |tSeq %Ñ. ...InstE|
0080 76 65 6e 74 53 75 62 73-74 28 3c 25 3e 2c 3c 25 |ventSubs t(<%>,<%|
0090 3e 29 17 00 00 00 49 6e-73 74 45 76 65 6e 74 53 |>)....In stEventS|
00a0 75 62 73 74 28 3c 25 3e-2c 3c 25 3e 29 d1 1b 00 |ubst(<%> ,<%>)Ñ..|
00b0 00 00 49 6e 73 74 45 76-65 6e 74 53 75 62 73 74 |..InstEv entSubst|
00c0 41 75 66 74 28 3c 25 3e-2c 3c 25 3e 29 1b 00 00 |Auft(<%> ,<%>)...|
00d0 00 49 6e 73 74 45 76 65-6e 74 53 75 62 73 74 41 |.InstEve ntSubstA|
00e0 75 66 74 28 3c 25 3e 2c-3c 25 3e 29 d1 09 00 00 |uft(<%>, <%>)Ñ...|
00f0 00 49 6e 74 65 72 66 61-63 65 09 00 00 00 49 6e |.Interfa ce....In|
0100 74 65 72 66 61 63 65 d1-06 00 00 00 49 6e 74 65 |terfaceÑ ....Inte|
0110 72 6e 08 00 00 00 49 6e-74 65 72 6e 61 6c d1 2e |rn....In ternalÑ.|
0120 00 00 00 49 6e 74 65 72-6e 3a 20 4d 6f 64 75 6c |...Inter n: Modul|
0130 20 27 25 27 20 77 75 72-64 65 20 62 65 72 65 69 | '%' wur de berei|
0140 74 73 20 69 6e 69 74 69-61 6c 69 73 69 65 72 74 |ts initi alisiert|
0150 21 32 00 00 00 49 6e 74-65 72 6e 61 6c 3a 20 4d |!2...Int ernal: M|
0160 6f 64 75 6c 65 20 27 25-27 20 68 61 73 20 61 6c |odule '% ' has al|
0170 72 65 61 64 79 20 62 65-65 6e 20 69 6e 69 74 69 |ready be en initi|
0180 61 6c 69 73 65 64 21 d1-3a 00 00 00 49 6e 74 65 |alised!Ñ :...Inte|
0190 72 6e 3a 20 50 61 72 61-6d 65 74 65 72 20 6c 65 |rn: Para meter le|
01a0 65 72 20 28 50 4c 3a 25-20 4c 57 3a 25 20 50 44 |er (PL:%  LW:% PD|
01b0 3a 25 20 41 4e 3a 25 20-56 50 45 3a 25 20 4d 3a |:% AN:%  VPE:% M:|
01c0 25 20 53 3a 25 29 3d 00-00 00 49 6e 74 65 72 6e |% S:%)=. ..Intern|
01d0 61 6c 3a 20 45 6d 70 74-79 20 70 61 72 61 6d 65 |al: Empt y parame|
01e0 74 65 72 20 28 50 4c 3a-25 20 4c 57 3a 25 20 50 |ter (PL: % LW:% P|
01f0 44 3a 25 20 41 4e 3a 25-20 56 50 45 3a 25 20 4d |D:% AN:%  VPE:% M|

token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8e0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f360, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f360, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f360, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f100, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190270, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11902b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-3a 25 20 53 3a 25 29 d1 |........ :% S:%)Ñ|
0010 17 00 00 00 49 6e 74 65-72 6e 3a 20 50 61 72 61 |....Inte rn: Para|
0020 6d 65 74 65 72 66 65 68-6c 65 72 19 00 00 00 49 |meterfeh ler....I|
0030 6e 74 65 72 6e 61 6c 3a-20 50 61 72 61 6d 65 74 |nternal:  Paramet|
0040 65 72 20 65 72 72 6f 72-d1 18 00 00 00 49 6e 74 |er error Ñ....Int|
0050 65 72 6e 3a 20 50 61 72-61 6d 65 74 65 72 66 65 |ern: Par ameterfe|
0060 68 6c 65 72 21 1a 00 00-00 49 6e 74 65 72 6e 61 |hler!... .Interna|
0070 6c 3a 20 50 61 72 61 6d-65 74 65 72 20 65 72 72 |l: Param eter err|
0080 6f 72 21 d1 2e 00 00 00-49 6e 74 65 72 6e 3a 20 |or!Ñ.... Intern: |
0090 53 74 61 74 75 73 62 61-72 20 77 75 72 64 65 20 |Statusba r wurde |
00a0 62 65 72 65 69 74 73 20-69 6e 69 74 69 61 6c 69 |bereits  initiali|
00b0 73 69 65 72 74 21 32 00-00 00 49 6e 74 65 72 6e |siert!2. ..Intern|
00c0 61 6c 3a 20 53 74 61 74-75 73 20 62 61 72 20 68 |al: Stat us bar h|
00d0 61 73 20 61 6c 72 65 61-64 79 20 62 65 65 6e 20 |as alrea dy been |
00e0 69 6e 69 74 69 61 6c 69-73 65 64 21 d1 29 00 00 |initiali sed!Ñ)..|
00f0 00 49 6e 74 65 72 6e 3a-20 55 6e 67 c3 bc 6c 74 |.Intern:  Ungült|
0100 69 67 65 72 20 55 72 73-70 72 75 6e 67 73 2d 53 |iger Urs prungs-S|
0110 74 61 74 75 73 20 28 25-29 21 26 00 00 00 49 6e |tatus (% )!&...In|
0120 74 65 72 6e 61 6c 3a 20-49 6e 76 61 6c 69 64 20 |ternal:  Invalid |
0130 6f 72 69 67 69 6e 61 6c-20 73 74 61 74 75 73 20 |original  status |
0140 28 25 29 21 d1 9c 00 00-00 49 6e 74 65 72 6e 3a |(%)!Ñ... .Intern:|
0150 20 64 6f 70 70 65 6c 74-65 20 43 6f 6c 6f 72 43 | doppelt e ColorC|
0160 6f 6e 64 69 74 69 6f 6e-28 29 20 61 75 66 20 53 |ondition () auf S|
0170 70 61 6c 74 65 20 3c 25-3e 20 69 67 6e 6f 72 69 |palte <% > ignori|
0180 65 72 74 20 28 62 65 72-65 69 74 73 20 64 65 66 |ert (ber eits def|
0190 69 6e 69 65 72 74 20 61-75 66 20 46 6f 72 6d 49 |iniert a uf FormI|
01a0 44 20 3c 25 3e 20 47 72-75 70 70 65 20 3c 25 3e |D <%> Gr uppe <%>|
01b0 20 53 70 61 6c 74 65 20-3c 25 3e 29 2e 20 5c 6e | Spalte  <%>). \n|
01c0 5c 6e 42 69 74 74 65 20-6b 6f 6e 74 61 6b 74 69 |\nBitte  kontakti|
01d0 65 72 65 6e 20 53 69 65-20 64 65 6e 20 53 75 70 |eren Sie  den Sup|
01e0 70 6f 72 74 2e 8b 00 00-00 49 6e 74 65 72 6e 61 |port.... .Interna|
01f0 6c 3a 20 44 6f 75 62 6c-65 64 20 43 6f 6c 6f 72 |l: Doubl ed Color|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11907f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190830, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11907f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190830, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 156 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 139 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-43 6f 6e 64 69 74 69 6f |........ Conditio|
0010 6e 28 29 20 69 67 6e 6f-72 65 64 20 69 6e 20 63 |n() igno red in c|
0020 6f 6c 75 6d 6e 20 3c 25-3e 20 28 61 6c 72 65 61 |olumn <% > (alrea|
0030 64 79 20 64 65 66 69 6e-65 64 20 69 6e 20 66 6f |dy defin ed in fo|
0040 72 6d 20 49 44 20 3c 25-3e 20 67 72 6f 75 70 20 |rm ID <% > group |
0050 3c 25 3e 20 63 6f 6c 75-6d 6e 20 3c 25 3e 29 2e |<%> colu mn <%>).|
0060 20 5c 6e 5c 6e 50 6c 65-61 73 65 20 63 6f 6e 74 | \n\nPle ase cont|
0070 61 63 74 20 73 75 70 70-6f 72 74 2e d1 27 00 00 |act supp ort.Ñ'..|
0080 00 49 6e 74 65 72 6e 3a-20 75 6e 67 c3 bc 6c 74 |.Intern:  ungült|
0090 69 67 65 72 20 56 6f 72-67 61 6e 67 20 28 25 2c |iger Vor gang (%,|
00a0 20 25 2c 25 2c 25 29 21-28 00 00 00 49 6e 74 65 | %,%,%)! (...Inte|
00b0 72 6e 61 6c 3a 20 49 6e-76 61 6c 69 64 20 70 72 |rnal: In valid pr|
00c0 6f 63 65 64 75 72 65 20-28 25 2c 20 25 2c 20 25 |ocedure  (%, %, %|
00d0 2c 25 29 21 d1 0f 00 00-00 49 6e 74 72 75 64 65 |,%)!Ñ... .Intrude|
00e0 72 20 41 6c 65 72 74 21-0f 00 00 00 49 6e 74 72 |r Alert! ....Intr|
00f0 75 64 65 72 20 41 6c 65-72 74 21 d1 19 00 00 00 |uder Ale rt!Ñ....|
0100 49 6e 76 61 6c 69 64 20-45 72 65 69 67 6e 69 73 |Invalid  Ereignis|
0110 49 44 20 28 4e 55 4c 4c-29 19 00 00 00 49 6e 76 |ID (NULL )....Inv|
0120 61 6c 69 64 20 53 79 73-45 76 65 6e 74 49 44 20 |alid Sys EventID |
0130 28 4e 55 4c 4c 29 d1 17-00 00 00 49 6e 76 61 6c |(NULL)Ñ. ...Inval|
0140 69 64 20 65 76 65 6e 74-5f 69 64 20 28 4e 55 4c |id event _id (NUL|
0150 4c 29 17 00 00 00 49 6e-76 61 6c 69 64 20 65 76 |L)....In valid ev|
0160 65 6e 74 5f 69 64 20 28-5a 45 52 4f 29 d1 10 00 |ent_id ( ZERO)Ñ..|
0170 00 00 49 6e 76 65 6e 74-6f 72 79 20 74 61 6b 69 |..Invent ory taki|
0180 6e 67 10 00 00 00 49 6e-76 65 6e 74 6f 72 79 20 |ng....In ventory |
0190 74 61 6b 69 6e 67 d1 49-00 00 00 49 6e 76 65 6e |takingÑI ...Inven|
01a0 74 75 72 20 41 72 74 69-6b 65 6c 20 25 20 43 68 |tur Arti kel % Ch|
01b0 61 72 67 65 20 25 20 77-69 72 64 20 67 65 72 61 |arge % w ird gera|
01c0 64 65 20 67 65 7a c3 a4-68 6c 74 20 2d 20 6b 65 |de gezä hlt - ke|
01d0 69 6e 65 20 42 75 63 68-75 6e 67 20 65 72 6c 61 |ine Buch ung erla|
01e0 75 62 74 21 42 00 00 00-49 6e 76 65 6e 74 6f 72 |ubt!B... Inventor|
01f0 79 20 61 72 74 69 63 6c-65 20 25 20 62 61 74 63 |y articl e % batc|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 156
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190ad0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (156 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 139
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (139 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190ad0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190ad0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190ad0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190ad0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190ad0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b80, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-68 20 25 20 69 73 20 62 |........ h % is b|
0010 65 69 6e 67 20 63 6f 75-6e 74 65 64 20 2d 20 6e |eing cou nted - n|
0020 6f 20 70 6f 73 74 69 6e-67 20 61 6c 6c 6f 77 65 |o postin g allowe|
0030 64 21 d1 16 00 00 00 49-6e 76 65 73 74 6d 65 6e |d!Ñ....I nvestmen|
0040 74 20 6d 61 69 6e 74 65-6e 61 6e 63 65 16 00 00 |t mainte nance...|
0050 00 49 6e 76 65 73 74 6d-65 6e 74 20 6d 61 69 6e |.Investm ent main|
0060 74 65 6e 61 6e 63 65 d1-0b 00 00 00 49 6e 76 65 |tenanceÑ ....Inve|
0070 73 74 6d 65 6e 74 73 0b-00 00 00 49 6e 76 65 73 |stments. ...Inves|
0080 74 6d 65 6e 74 73 d1 08-00 00 00 49 6e 76 6f 69 |tmentsÑ. ...Invoi|
0090 63 65 73 08 00 00 00 49-6e 76 6f 69 63 65 73 d1 |ces....I nvoicesÑ|
00a0 02 00 00 00 4a 61 03 00-00 00 59 65 73 d1 08 00 |....Ja.. ..YesÑ..|
00b0 00 00 4a 61 2c 20 41 6c-6c 65 08 00 00 00 59 65 |..Ja, Al le....Ye|
00c0 73 2c 20 61 6c 6c d1 18-00 00 00 4a 61 68 72 65 |s, allÑ. ...Jahre|
00d0 20 47 65 73 61 6d 74 61-62 73 63 68 72 65 69 62 | Gesamta bschreib|
00e0 75 6e 67 18 00 00 00 59-65 61 72 73 20 74 6f 74 |ung....Y ears tot|
00f0 61 6c 20 64 65 70 72 65-63 69 61 74 69 6f 6e d1 |al depre ciationÑ|
0100 1e 00 00 00 4a 61 68 72-65 20 62 69 73 20 61 75 |....Jahr e bis au|
0110 66 20 4c 69 71 75 69 64-61 74 69 6f 6e 73 77 65 |f Liquid ationswe|
0120 72 74 1d 00 00 00 59 65-61 72 73 20 75 6e 74 69 |rt....Ye ars unti|
0130 6c 20 6c 69 71 75 69 64-61 74 69 6f 6e 20 76 61 |l liquid ation va|
0140 6c 75 65 d1 1d 00 00 00-4a 61 68 72 65 20 6c 69 |lueÑ.... Jahre li|
0150 6e 65 61 72 20 62 69 73-20 61 75 66 20 52 65 73 |near bis  auf Res|
0160 74 77 65 72 74 21 00 00-00 4c 69 6e 65 61 72 20 |twert!.. .Linear |
0170 79 65 61 72 73 20 75 6e-74 69 6c 20 72 65 73 69 |years un til resi|
0180 64 75 61 6c 20 76 61 6c-75 65 d1 0e 00 00 00 4a |dual val ueÑ....J|
0190 61 68 72 65 2f 50 65 72-69 6f 64 65 6e 0b 00 00 |ahre/Per ioden...|
01a0 00 59 65 61 72 2f 70 65-72 69 6f 64 d1 2c 00 00 |.Year/pe riodÑ,..|
01b0 00 4b 49 53 42 75 64 42-65 61 72 45 72 6d 69 74 |.KISBudB earErmit|
01c0 74 6c 65 50 72 65 69 73-28 25 2c 25 2c 25 2c 20 |tlePreis (%,%,%, |
01d0 25 2c 25 2c 25 2c 20 25-29 20 3d 20 25 2c 00 00 |%,%,%, % ) = %,..|
01e0 00 4b 49 53 42 75 64 42-65 61 72 45 72 6d 69 74 |.KISBudB earErmit|
01f0 74 6c 65 50 72 65 69 73-28 25 2c 25 2c 25 2c 20 |tlePreis (%,%,%, |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191310, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191370, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f100, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191940, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f100, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191940, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f100, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191940, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-25 2c 25 2c 25 2c 20 25 |........ %,%,%, %|
0010 29 20 3d 20 25 d1 6e 00-00 00 4b 52 45 44 42 61 |) = %Ñn. ..KREDBa|
0020 6e 6b 42 65 61 72 49 6d-70 6f 72 74 3a 20 41 63 |nkBearIm port: Ac|
0030 68 74 75 6e 67 3a 20 75-6e 7a 75 6c 61 65 73 73 |htung: u nzulaess|
0040 69 67 65 20 5a 65 69 63-68 65 6e 20 69 6d 20 46 |ige Zeic hen im F|
0050 65 6c 64 69 6e 68 61 6c-74 20 3c 25 3e 20 61 75 |eldinhal t <%> au|
0060 66 20 50 6f 73 69 74 69-6f 6e 20 25 20 2d 20 46 |f Positi on % - F|
0070 65 6c 64 61 75 73 67 61-62 65 20 75 6e 74 65 72 |eldausga be unter|
0080 64 72 75 65 63 6b 74 21-6c 00 00 00 4b 52 45 44 |drueckt! l...KRED|
0090 42 61 6e 6b 42 65 61 72-49 6d 70 6f 72 74 3a 20 |BankBear Import: |
00a0 41 74 74 65 6e 74 69 6f-6e 3a 20 49 6e 76 61 6c |Attentio n: Inval|
00b0 69 64 20 63 68 61 72 61-63 74 65 72 73 20 69 6e |id chara cters in|
00c0 20 66 69 65 6c 64 20 63-6f 6e 74 65 6e 74 20 3c | field c ontent <|
00d0 25 3e 20 61 74 20 70 6f-73 69 74 69 6f 6e 20 25 |%> at po sition %|
00e0 20 2d 20 66 69 65 6c 64-20 6f 75 74 70 75 74 20 | - field  output |
00f0 61 62 6f 72 74 65 64 21-d1 22 00 00 00 4b 61 6e |aborted! Ñ"...Kan|
0100 6e 20 53 75 63 68 6b 6f-6e 74 65 78 74 20 6e 69 |n Suchko ntext ni|
0110 63 68 74 20 65 74 61 62-6c 69 65 72 65 6e 21 20 |cht etab lieren! |
0120 00 00 00 43 61 6e 6e 6f-74 20 65 73 74 61 62 6c |...Canno t establ|
0130 69 73 68 20 73 65 61 72-63 68 20 63 6f 6e 74 65 |ish sear ch conte|
0140 78 74 21 d1 26 00 00 00-4b 61 6e 74 6f 6e 73 65 |xt!Ñ&... Kantonse|
0150 72 6d 69 74 74 6c 75 6e-67 20 75 6e 69 6d 70 6c |rmittlun g unimpl|
0160 65 6d 65 6e 74 69 65 72-74 20 3c 25 3e 3f 29 00 |ementier t <%>?).|
0170 00 00 43 61 6e 74 6f 6e-20 64 65 74 65 72 6d 69 |..Canton  determi|
0180 6e 61 74 69 6f 6e 20 6e-6f 74 20 69 6d 70 6c 65 |nation n ot imple|
0190 6d 65 6e 74 65 64 20 3c-25 3e 3f d1 26 00 00 00 |mented < %>?Ñ&...|
01a0 4b 65 69 6e 20 44 72 75-63 6b 64 65 66 61 75 6c |Kein Dru ckdefaul|
01b0 74 20 66 c3 bc 72 20 25-20 28 25 29 20 76 6f 72 |t für %  (%) vor|
01c0 68 61 6e 64 65 6e 24 00-00 00 4e 6f 20 70 72 69 |handen$. ..No pri|
01d0 6e 74 20 64 65 66 61 75-6c 74 20 61 76 61 69 6c |nt defau lt avail|
01e0 61 62 6c 65 20 66 6f 72-20 25 20 28 25 29 d1 3a |able for  % (%)Ñ:|
01f0 00 00 00 4b 65 69 6e 20-45 69 6e 74 72 61 67 20 |...Kein  Eintrag |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191d20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191d60, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 110 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 108 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 110
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (110 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 108
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (108 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1190b00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 6e 20 41 6e 61 6c 79 |........ in Analy|
0010 73 65 52 65 66 65 72 65-6e 7a 20 66 c3 bc 72 20 |seRefere nz für |
0020 3e 25 3c 20 75 6e 64 20-53 70 72 61 63 68 65 20 |>%< und  Sprache |
0030 3e 2a 3c 20 21 38 00 00-00 4e 6f 20 65 6e 74 72 |>*< !8.. .No entr|
0040 79 20 69 6e 20 61 6e 61-6c 79 73 69 73 20 72 65 |y in ana lysis re|
0050 66 65 72 65 6e 63 65 20-66 6f 72 20 3e 25 3c 20 |ference  for >%< |
0060 61 6e 64 20 6c 61 6e 67-75 61 67 65 20 3e 2a 3c |and lang uage >*<|
0070 21 d1 3c 00 00 00 4b 65-69 6e 20 48 61 6e 64 6c |!Ñ<...Ke in Handl|
0080 65 72 20 66 c3 bc 72 20-4d 65 6c 64 75 6e 67 20 |er für  Meldung |
0090 3c 25 3e 20 69 6e 20 45-4c 4d 2d 56 65 72 73 69 |<%> in E LM-Versi|
00a0 6f 6e 20 3c 25 3e 20 76-65 72 66 c3 bc 67 62 61 |on <%> v erfügba|
00b0 72 2e 38 00 00 00 4e 6f-20 68 61 6e 64 6c 65 72 |r.8...No  handler|
00c0 20 61 76 61 69 6c 61 62-6c 65 20 66 6f 72 20 6d | availab le for m|
00d0 65 73 73 61 67 65 20 3c-25 3e 20 69 6e 20 45 4c |essage < %> in EL|
00e0 4d 20 76 65 72 73 69 6f-6e 20 3c 25 3e 2e d1 30 |M versio n <%>.Ñ0|
00f0 00 00 00 4b 65 69 6e 20-5a 75 67 72 69 66 66 72 |...Kein  Zugriffr|
0100 65 63 68 74 20 21 20 57-6f 6c 6c 65 6e 20 53 69 |echt ! W ollen Si|
0110 65 20 65 69 6e 73 20 65-69 6e 72 69 63 68 74 65 |e eins e inrichte|
0120 6e 20 3f 1f 00 00 00 4e-6f 20 61 63 63 65 73 73 |n ?....N o access|
0130 20 70 65 72 6d 69 73 73-69 6f 6e 21 20 52 65 67 | permiss ion! Reg|
0140 69 73 74 65 72 3f d1 38-00 00 00 4b 65 69 6e 65 |ister?Ñ8 ...Keine|
0150 20 41 75 73 67 61 62 65-65 69 6e 68 65 69 74 20 | Ausgabe einheit |
0160 67 65 77 c3 a4 68 6c 74-20 28 25 29 2e 20 4c 69 |gewählt  (%). Li|
0170 73 74 65 20 6e 69 63 68-74 20 67 65 64 72 75 63 |ste nich t gedruc|
0180 6b 74 21 2e 00 00 00 4e-6f 20 6f 75 74 70 75 74 |kt!....N o output|
0190 20 75 6e 69 74 20 73 65-6c 65 63 74 65 64 20 28 | unit se lected (|
01a0 25 29 2e 20 4c 69 73 74-20 6e 6f 74 20 70 72 69 |%). List  not pri|
01b0 6e 74 65 64 21 d1 34 00-00 00 4b 65 69 6e 65 20 |nted!Ñ4. ..Keine |
01c0 41 75 73 67 61 62 65 65-69 6e 68 65 69 74 20 67 |Ausgabee inheit g|
01d0 65 77 c3 a4 68 6c 74 2e-20 4c 69 73 74 65 20 6e |ewählt.  Liste n|
01e0 69 63 68 74 20 67 65 64-72 75 63 6b 74 21 2a 00 |icht ged ruckt!*.|
01f0 00 00 4e 6f 20 6f 75 74-70 75 74 20 75 6e 69 74 |..No out put unit|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 73 65 6c 65 63 74 65 |........  selecte|
0010 64 2e 20 4c 69 73 74 20-6e 6f 74 20 70 72 69 6e |d. List  not prin|
0020 74 65 64 21 d1 2e 00 00-00 4b 65 69 6e 65 20 48 |ted!Ñ... .Keine H|
0030 61 6e 64 6c 65 72 20 66-c3 bc 72 20 45 4c 4d 2d |andler f ür ELM-|
0040 56 65 72 73 69 6f 6e 20-3c 25 3e 20 76 65 72 66 |Version  <%> verf|
0050 c3 bc 67 62 61 72 2e 29-00 00 00 4e 6f 20 68 61 |ügbar.) ...No ha|
0060 6e 64 6c 65 72 20 61 76-61 69 6c 61 62 6c 65 20 |ndler av ailable |
0070 66 6f 72 20 45 4c 4d 20-76 65 72 73 69 6f 6e 20 |for ELM  version |
0080 3c 25 3e 2e d1 1c 00 00-00 4b 65 69 6e 65 20 48 |<%>.Ñ... .Keine H|
0090 69 6c 66 65 20 76 65 72-66 c3 bc 67 62 61 72 20 |ilfe ver fügbar |
00a0 28 25 20 25 29 17 00 00-00 4e 6f 20 68 65 6c 70 |(% %)... .No help|
00b0 20 61 76 61 69 6c 61 62-6c 65 20 28 25 20 25 29 | availab le (% %)|
00c0 d1 1a 00 00 00 4b 65 69-6e 65 20 4b 54 20 66 c3 |Ñ....Kei ne KT fÃ|
00d0 bc 72 20 25 20 67 65 66-75 6e 64 65 6e 20 21 12 |¼r % gef unden !.|
00e0 00 00 00 4e 6f 20 43 55-20 66 6f 72 20 25 20 66 |...No CU  for % f|
00f0 6f 75 6e 64 21 d1 1e 00-00 00 4b 65 69 6e 65 20 |ound!Ñ.. ..Keine |
0100 4d 61 69 6c 20 6d c3 b6-67 6c 69 63 68 20 28 73 |Mail mö glich (s|
0110 74 61 74 75 73 20 25 29-1c 00 00 00 4d 61 69 6c |tatus %) ....Mail|
0120 20 6e 6f 74 20 70 6f 73-73 69 62 6c 65 20 28 73 | not pos sible (s|
0130 74 61 74 75 73 20 25 29-d1 23 00 00 00 4b 65 69 |tatus %) Ñ#...Kei|
0140 6e 65 20 50 72 65 69 73-65 72 6d 69 74 74 6c 75 |ne Preis ermittlu|
0150 6e 67 20 6f 68 6e 65 20-41 72 74 69 6b 65 6c 21 |ng ohne  Artikel!|
0160 1c 00 00 00 4e 6f 20 70-72 69 63 69 6e 67 20 77 |....No p ricing w|
0170 69 74 68 6f 75 74 20 61-72 74 69 63 6c 65 20 21 |ithout a rticle !|
0180 d1 46 00 00 00 4b 65 69-6e 65 20 50 72 c3 bc 66 |ÑF...Kei ne Prüf|
0190 75 6e 67 20 64 65 72 20-55 53 54 2d 49 64 20 6d |ung der  UST-Id m|
01a0 c3 b6 67 6c 69 63 68 20-28 49 53 4f 2d 4c 61 6e |öglich  (ISO-Lan|
01b0 64 7a 75 6f 72 64 6e 75-6e 67 20 66 65 68 6c 74 |dzuordnu ng fehlt|
01c0 20 66 c3 bc 72 20 3c 25-3e 29 2e 44 00 00 00 56 | für <% >).D...V|
01d0 41 54 20 49 44 20 63 61-6e 6e 6f 74 20 62 65 20 |AT ID ca nnot be |
01e0 76 65 72 69 66 69 65 64-20 28 49 53 4f 20 63 6f |verified  (ISO co|
01f0 75 6e 74 72 79 20 61 74-74 72 69 62 75 74 69 6f |untry at tributio|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1192490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1191ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 20 6d 69 73 73 69 6e |........ n missin|
0010 67 20 66 6f 72 20 3c 25-3e 29 2e d1 39 00 00 00 |g for <% >).Ñ9...|
0020 4b 65 69 6e 65 20 50 72-c3 bc 66 75 6e 67 20 64 |Keine Pr üfung d|
0030 65 72 20 55 53 54 2d 49-64 20 6d c3 b6 67 6c 69 |er UST-I d mögli|
0040 63 68 20 28 6b 65 69 6e-65 20 44 65 66 69 6e 69 |ch (kein e Defini|
0050 74 69 6f 6e 20 64 61 29-2e 32 00 00 00 56 41 54 |tion da) .2...VAT|
0060 20 49 44 20 63 61 6e 6e-6f 74 20 62 65 20 76 65 | ID cann ot be ve|
0070 72 69 66 69 65 64 20 28-6e 6f 20 64 65 66 69 6e |rified ( no defin|
0080 69 74 69 6f 6e 20 70 72-65 73 65 6e 74 29 2e d1 |ition pr esent).Ñ|
0090 40 00 00 00 4b 65 69 6e-65 20 50 72 c3 bc 66 75 |@...Kein e Prüfu|
00a0 6e 67 20 64 65 72 20 55-53 54 2d 49 64 20 6d c3 |ng der U ST-Id mÃ|
00b0 b6 67 6c 69 63 68 20 77-65 67 65 6e 20 66 65 68 |¶glich w egen feh|
00c0 6c 65 6e 64 65 72 20 4c-61 6e 64 65 73 61 6e 67 |lender L andesang|
00d0 61 62 65 2e 3b 00 00 00-56 41 54 20 49 44 20 63 |abe.;... VAT ID c|
00e0 61 6e 6e 6f 74 20 62 65-20 64 65 66 69 6e 65 64 |annot be  defined|
00f0 20 64 75 65 20 74 6f 20-6d 69 73 73 69 6e 67 20 | due to  missing |
0100 63 6f 75 6e 74 72 79 20-69 6e 64 69 63 61 74 69 |country  indicati|
0110 6f 6e 2e d1 25 00 00 00-4b 65 69 6e 65 20 52 65 |on.Ñ%... Keine Re|
0120 73 65 72 76 61 74 69 6f-6e 20 2d 3e 20 6b 65 69 |servatio n -> kei|
0130 6e 65 20 41 75 73 62 75-63 68 75 6e 67 1e 00 00 |ne Ausbu chung...|
0140 00 4e 6f 20 72 65 73 65-72 76 61 74 69 6f 6e 20 |.No rese rvation |
0150 2d 3e 20 6e 6f 20 63 68-65 63 6b 2d 6f 75 74 d1 |-> no ch eck-outÑ|
0160 2c 00 00 00 4b 65 69 6e-65 20 55 6d 62 75 63 68 |,...Kein e Umbuch|
0170 75 6e 67 20 77 65 67 65-6e 20 66 65 68 6c 65 6e |ung wege n fehlen|
0180 64 65 6d 20 5a 69 65 6c-6c 61 67 65 72 6f 72 74 |dem Ziel lagerort|
0190 32 00 00 00 4e 6f 20 74-72 61 6e 73 66 65 72 20 |2...No t ransfer |
01a0 64 75 65 20 74 6f 20 6d-69 73 73 69 6e 67 20 74 |due to m issing t|
01b0 61 72 67 65 74 20 73 74-6f 72 61 67 65 20 6c 6f |arget st orage lo|
01c0 63 61 74 69 6f 6e d1 2a-00 00 00 4b 65 69 6e 65 |cationÑ* ...Keine|
01d0 20 55 6d 62 75 63 68 75-6e 67 20 77 65 67 65 6e | Umbuchu ng wegen|
01e0 20 75 6e 67 c3 bc 6c 74-69 67 65 6d 20 4c 61 67 | ungült igem Lag|
01f0 65 72 6f 72 74 2b 00 00-00 4e 6f 20 74 72 61 6e |erort+.. .No tran|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-73 66 65 72 20 64 75 65 |........ sfer due|
0010 20 74 6f 20 69 6e 76 61-6c 69 64 20 73 74 6f 72 | to inva lid stor|
0020 61 67 65 20 6c 6f 63 61-74 69 6f 6e d1 30 00 00 |age loca tionÑ0..|
0030 00 4b 65 69 6e 65 20 61-75 74 2e 20 41 75 73 62 |.Keine a ut. Ausb|
0040 75 63 68 75 6e 67 20 77-65 67 65 6e 20 75 6e 67 |uchung w egen ung|
0050 c3 bc 6c 74 69 67 65 6d-20 4c 61 67 65 72 6f 72 |ültigem  Lageror|
0060 74 36 00 00 00 4e 6f 20-61 75 74 6f 6d 61 74 69 |t6...No  automati|
0070 63 20 63 68 65 63 6b 2d-6f 75 74 20 64 75 65 20 |c check- out due |
0080 74 6f 20 69 6e 76 61 6c-69 64 20 73 74 6f 72 61 |to inval id stora|
0090 67 65 20 6c 6f 63 61 74-69 6f 6e d1 31 00 00 00 |ge locat ionÑ1...|
00a0 4b 65 69 6e 65 20 61 75-74 2e 20 42 75 63 68 75 |Keine au t. Buchu|
00b0 6e 67 20 77 65 67 65 6e-20 75 6e 67 c3 bc 6c 74 |ng wegen  ungült|
00c0 69 67 65 6d 20 57 65 72-74 46 6c 61 67 20 28 25 |igem Wer tFlag (%|
00d0 29 31 00 00 00 4e 6f 20-61 75 74 6f 6d 61 74 69 |)1...No  automati|
00e0 63 20 70 6f 73 74 69 6e-67 20 64 75 65 20 74 6f |c postin g due to|
00f0 20 69 6e 76 61 6c 69 64-20 56 61 6c 75 65 46 6c | invalid  ValueFl|
0100 61 67 20 28 25 29 d1 30-00 00 00 4b 65 69 6e 65 |ag (%)Ñ0 ...Keine|
0110 20 61 75 74 2e 20 45 69-6e 62 75 63 68 75 6e 67 | aut. Ei nbuchung|
0120 20 77 65 67 65 6e 20 75-6e 67 c3 bc 6c 74 69 67 | wegen u ngültig|
0130 65 6d 20 4c 61 67 65 72-6f 72 74 35 00 00 00 4e |em Lager ort5...N|
0140 6f 20 61 75 74 6f 6d 61-74 69 63 20 63 68 65 63 |o automa tic chec|
0150 6b 2d 69 6e 20 64 75 65-20 74 6f 20 69 6e 76 61 |k-in due  to inva|
0160 6c 69 64 20 73 74 6f 72-61 67 65 20 6c 6f 63 61 |lid stor age loca|
0170 74 69 6f 6e d1 1a 00 00-00 4b 65 69 6e 65 20 66 |tionÑ... .Keine f|
0180 65 68 6c 65 6e 64 65 6e-20 45 69 6e 74 72 c3 a4 |ehlenden  Einträ|
0190 67 65 2e 13 00 00 00 4e-6f 20 6d 69 73 73 69 6e |ge.....N o missin|
01a0 67 20 65 6e 74 72 69 65-73 2e d1 20 00 00 00 4b |g entrie s.Ñ ...K|
01b0 65 69 6e 65 20 c3 bc 62-65 72 66 6c c3 bc 73 73 |eine üb erflüss|
01c0 69 67 65 6e 20 45 69 6e-74 72 c3 a4 67 65 2e 14 |igen Ein träge..|
01d0 00 00 00 4e 6f 20 72 65-64 75 6e 64 61 6e 74 20 |...No re dundant |
01e0 65 6e 74 72 69 65 73 d1-27 00 00 00 4b 6f 6d 6d |entriesÑ '...Komm|
01f0 61 6e 64 6f 20 6b 61 6e-6e 20 6e 69 63 68 74 20 |ando kan n nicht |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-7a 65 72 6c 65 67 74 20 |........ zerlegt |
0010 77 65 72 64 65 6e 21 20-28 25 29 19 00 00 00 43 |werden!  (%)....C|
0020 61 6e 6e 6f 74 20 70 61-72 73 65 20 63 6f 6d 6d |annot pa rse comm|
0030 61 6e 64 21 20 28 25 29-d1 23 00 00 00 4b 6f 6d |and! (%) Ñ#...Kom|
0040 6d 69 73 73 69 6f 6e 69-65 72 75 6e 67 20 76 6f |missioni erung vo|
0050 6e 20 25 2e 25 20 65 72-6c 65 64 69 67 74 20 3f |n %.% er ledigt ?|
0060 1a 00 00 00 43 6f 6d 6d-69 73 73 69 6f 6e 69 6e |....Comm issionin|
0070 67 20 6f 66 20 25 2e 25-20 64 6f 6e 65 3f d1 0e |g of %.%  done?Ñ.|
0080 00 00 00 4b 6f 6e 73 6f-6c 69 64 69 65 72 75 6e |...Konso lidierun|
0090 67 0d 00 00 00 43 6f 6e-73 6f 6c 69 64 61 74 69 |g....Con solidati|
00a0 6f 6e d1 54 00 00 00 4b-6f 6e 74 65 6e 20 64 69 |onÑT...K onten di|
00b0 65 73 65 72 20 41 72 74-20 73 69 6e 64 20 68 69 |eser Art  sind hi|
00c0 65 72 20 6e 69 63 68 74-20 73 69 6e 6e 76 6f 6c |er nicht  sinnvol|
00d0 6c 20 21 20 57 6f 6c 6c-65 6e 20 53 69 65 20 65 |l ! Woll en Sie e|
00e0 69 6e 65 20 61 6e 64 65-72 65 20 4b 6c 61 73 73 |ine ande re Klass|
00f0 65 20 77 c3 a4 68 6c 65-6e 20 3f 52 00 00 00 41 |e wähle n ?R...A|
0100 63 63 6f 75 6e 74 73 20-6f 66 20 74 68 69 73 20 |ccounts  of this |
0110 74 79 70 65 20 64 6f 20-6e 6f 74 20 6d 61 6b 65 |type do  not make|
0120 20 61 6e 79 20 73 65 6e-73 65 21 20 20 44 6f 20 | any sen se!  Do |
0130 79 6f 75 20 77 69 73 68-20 74 6f 20 73 65 6c 65 |you wish  to sele|
0140 63 74 20 61 6e 6f 74 68-65 72 20 63 6c 61 73 73 |ct anoth er class|
0150 3f d1 1c 00 00 00 4b 6f-6e 74 72 6f 6c 6c 6d 65 |?Ñ....Ko ntrollme|
0160 6c 64 75 6e 67 20 25 20-73 74 61 72 74 65 6e 2e |ldung %  starten.|
0170 2e 2e 1b 00 00 00 53 74-61 72 74 20 63 6f 6e 74 |......St art cont|
0180 72 6f 6c 20 6d 65 73 73-61 67 65 20 25 20 2e 2e |rol mess age % ..|
0190 2e d1 1c 00 00 00 4b 6f-6e 74 72 6f 6c 6c 6d 65 |.Ñ....Ko ntrollme|
01a0 6c 64 75 6e 67 20 45 20-25 20 2b 20 25 20 2d 3e |ldung E  % + % ->|
01b0 20 25 1c 00 00 00 43 6f-6e 74 72 6f 6c 20 6d 65 | %....Co ntrol me|
01c0 73 73 61 67 65 20 45 20-25 20 2b 20 25 20 2d 3e |ssage E  % + % ->|
01d0 20 25 d1 15 00 00 00 4b-6f 6e 74 72 6f 6c 6c 6d | %Ñ....K ontrollm|
01e0 65 6c 64 75 6e 67 20 55-20 25 20 25 15 00 00 00 |eldung U  % %....|
01f0 43 6f 6e 74 72 6f 6c 20-6d 65 73 73 61 67 65 20 |Control  message |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193130, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 84 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 82 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 84
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11943f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (84 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 82
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (82 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11943f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11943f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-55 20 25 20 25 d1 05 00 |........ U % %Ñ..|
0010 00 00 4b 75 6e 64 65 08-00 00 00 43 75 73 74 6f |..Kunde. ...Custo|
0020 6d 65 72 d1 10 00 00 00-4b 75 6e 64 65 20 62 65 |merÑ.... Kunde be|
0030 61 72 62 65 69 74 65 6e-0d 00 00 00 45 64 69 74 |arbeiten ....Edit|
0040 20 63 75 73 74 6f 6d 65-72 d1 19 00 00 00 4b 75 | custome rÑ....Ku|
0050 6e 64 65 6e 2d 41 72 74-69 6b 65 6c 20 62 65 61 |nden-Art ikel bea|
0060 72 62 65 69 74 65 6e 15-00 00 00 45 64 69 74 20 |rbeiten. ...Edit |
0070 63 75 73 74 6f 6d 65 72-20 61 72 74 69 63 6c 65 |customer  article|
0080 d1 19 00 00 00 4b 75 6e-64 65 6e 2d 44 6f 6b 75 |Ñ....Kun den-Doku|
0090 6d 65 6e 74 65 20 61 6e-7a 65 69 67 65 6e 17 00 |mente an zeigen..|
00a0 00 00 56 69 65 77 20 63-75 73 74 6f 6d 65 72 20 |..View c ustomer |
00b0 64 6f 63 75 6d 65 6e 74-73 d1 17 00 00 00 4b 75 |document sÑ....Ku|
00c0 6e 64 65 6e 2d 48 69 73-74 6f 72 79 20 61 6e 7a |nden-His tory anz|
00d0 65 69 67 65 6e 15 00 00-00 56 69 65 77 20 63 75 |eigen... .View cu|
00e0 73 74 6f 6d 65 72 20 68-69 73 74 6f 72 79 d1 18 |stomer h istoryÑ.|
00f0 00 00 00 4b 75 6e 64 65-6e 2d 4f 50 20 4c 69 73 |...Kunde n-OP Lis|
0100 74 65 20 61 6e 7a 65 69-67 65 6e 15 00 00 00 56 |te anzei gen....V|
0110 69 65 77 20 63 75 73 74-6f 6d 65 72 20 4f 49 20 |iew cust omer OI |
0120 6c 69 73 74 d1 07 00 00-00 4c 20 25 20 53 20 25 |listÑ... .L % S %|
0130 07 00 00 00 4c 20 25 20-53 20 25 d1 06 00 00 00 |....L %  S %Ñ....|
0140 4c 61 62 65 6c 73 06 00-00 00 4c 61 62 65 6c 73 |Labels.. ..Labels|
0150 d1 41 00 00 00 4c 61 64-65 6e 20 64 65 73 20 52 |ÑA...Lad en des R|
0160 65 70 6f 72 74 65 73 20-25 20 6d 69 73 73 6c 75 |eportes  % misslu|
0170 6e 67 65 6e 2e 20 42 69-74 74 65 20 6b 6f 6e 74 |ngen. Bi tte kont|
0180 61 6b 74 65 6e 20 53 69-65 20 64 65 6e 20 53 75 |akten Si e den Su|
0190 70 70 6f 72 74 2e 33 00-00 00 4c 6f 61 64 69 6e |pport.3. ..Loadin|
01a0 67 20 6f 66 20 72 65 70-6f 72 74 20 25 20 66 61 |g of rep ort % fa|
01b0 69 6c 65 64 2e 20 50 6c-65 61 73 65 20 63 6f 6e |iled. Pl ease con|
01c0 74 61 63 74 20 73 75 70-70 6f 72 74 2e d1 1a 00 |tact sup port.Ñ..|
01d0 00 00 4c 61 67 65 42 50-6f 73 45 72 66 46 49 53 |..LageBP osErfFIS|
01e0 41 6e 7a 28 41 72 74 4e-72 20 25 29 1b 00 00 00 |Anz(ArtN r %)....|
01f0 4c 61 67 65 42 50 6f 73-45 72 66 46 49 53 41 6e |LageBPos ErfFISAn|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11943f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11943f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11943f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1193180, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11951c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-7a 28 41 72 74 20 6e 6f |........ z(Art no|
0010 20 25 29 d1 1d 00 00 00-4c 61 67 65 42 65 73 74 | %)Ñ.... LageBest|
0020 45 72 66 46 49 53 41 6e-7a 28 46 69 72 6d 65 6e |ErfFISAn z(Firmen|
0030 49 44 20 25 29 1f 00 00-00 4c 61 67 65 42 65 73 |ID %)... .LageBes|
0040 74 45 72 66 46 49 53 41-6e 7a 28 63 6f 6d 70 61 |tErfFISA nz(compa|
0050 6e 79 20 49 44 20 25 29-d1 10 00 00 00 4c 61 67 |ny ID %) Ñ....Lag|
0060 65 45 69 6e 43 68 61 72-67 65 4e 65 75 10 00 00 |eEinChar geNeu...|
0070 00 4c 61 67 65 45 69 6e-43 68 61 72 67 65 4e 65 |.LageEin ChargeNe|
0080 75 d1 13 00 00 00 4c 61-67 65 45 69 6e 43 68 61 |uÑ....La geEinCha|
0090 72 67 65 4e 65 75 3a 20-25 13 00 00 00 4c 61 67 |rgeNeu:  %....Lag|
00a0 65 45 69 6e 43 68 61 72-67 65 4e 65 75 3a 20 25 |eEinChar geNeu: %|
00b0 d1 27 00 00 00 4c 61 67-65 45 69 6e 4e 50 43 68 |Ñ'...Lag eEinNPCh|
00c0 65 63 6b 3a 20 55 6e 62-65 6b 61 6e 6e 74 65 20 |eck: Unb ekannte |
00d0 4f 70 65 72 61 74 69 6f-6e 3a 20 25 24 00 00 00 |Operatio n: %$...|
00e0 4c 61 67 65 45 69 6e 4e-50 43 68 65 63 6b 3a 20 |LageEinN PCheck: |
00f0 55 6e 6b 6e 6f 77 6e 20-6f 70 65 72 61 74 69 6f |Unknown  operatio|
0100 6e 3a 20 25 d1 15 00 00-00 4c 61 67 65 4d 41 75 |n: %Ñ... .LageMAu|
0110 73 45 74 69 6b 65 74 74-65 28 25 2c 25 29 15 00 |sEtikett e(%,%)..|
0120 00 00 4c 61 67 65 4d 41-75 73 45 74 69 6b 65 74 |..LageMA usEtiket|
0130 74 65 28 25 2c 25 29 d1-25 00 00 00 4c 61 67 65 |te(%,%)Ñ %...Lage|
0140 52 65 73 65 72 76 41 75-66 74 54 79 70 3a 20 28 |ReservAu ftTyp: (|
0150 45 50 2c 55 50 29 20 56-61 72 69 61 62 6c 65 20 |EP,UP) V ariable |
0160 25 25 00 00 00 4c 61 67-65 52 65 73 65 72 76 41 |%%...Lag eReservA|
0170 75 66 74 54 79 70 3a 20-28 50 50 2c 55 50 29 20 |uftTyp:  (PP,UP) |
0180 56 61 72 69 61 62 6c 65-20 25 d1 15 00 00 00 4c |Variable  %Ñ....L|
0190 61 67 65 52 65 73 65 72-76 41 75 66 74 54 79 70 |ageReser vAuftTyp|
01a0 3a 20 49 50 15 00 00 00-4c 61 67 65 52 65 73 65 |: IP.... LageRese|
01b0 72 76 41 75 66 74 54 79-70 3a 20 49 50 d1 28 00 |rvAuftTy p: IPÑ(.|
01c0 00 00 4c 61 67 65 52 65-73 65 72 76 41 75 66 74 |..LageRe servAuft|
01d0 54 79 70 3a 20 53 74 61-6f 4e 72 48 20 25 20 4c |Typ: Sta oNrH % L|
01e0 61 67 65 72 4f 72 74 48-20 25 28 00 00 00 4c 61 |agerOrtH  %(...La|
01f0 67 65 52 65 73 65 72 76-41 75 66 74 54 79 70 3a |geReserv AuftTyp:|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11951c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11951c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11951c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11951c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 53 74 61 6f 4e 72 48 |........  StaoNrH|
0010 20 25 20 4c 61 67 65 72-4f 72 74 48 20 25 d1 1d | % Lager OrtH %Ñ.|
0020 00 00 00 4c 61 67 65 52-65 73 65 72 76 4c 61 75 |...LageR eservLau|
0030 74 50 4d 3a 20 41 6e 7a-61 68 6c 20 50 4d 20 25 |tPM: Anz ahl PM %|
0040 21 00 00 00 4c 61 67 65-52 65 73 65 72 76 4c 61 |!...Lage ReservLa|
0050 75 74 50 4d 3a 20 4e 75-6d 62 65 72 20 6f 66 20 |utPM: Nu mber of |
0060 4d 50 73 20 25 d1 25 00-00 00 4c 61 67 65 52 65 |MPs %Ñ%. ..LageRe|
0070 73 65 72 76 4c 61 75 74-50 4d 3a 20 41 72 74 69 |servLaut PM: Arti|
0080 6b 65 6c 20 25 20 56 65-72 73 69 6f 6e 20 25 25 |kel % Ve rsion %%|
0090 00 00 00 4c 61 67 65 52-65 73 65 72 76 4c 61 75 |...LageR eservLau|
00a0 74 50 4d 3a 20 41 72 74-69 63 6c 65 20 25 20 76 |tPM: Art icle % v|
00b0 65 72 73 69 6f 6e 20 25-d1 14 00 00 00 4c 61 67 |ersion % Ñ....Lag|
00c0 65 52 65 73 65 72 76 4c-61 75 74 50 4d 3a 20 49 |eReservL autPM: I|
00d0 50 14 00 00 00 4c 61 67-65 52 65 73 65 72 76 4c |P....Lag eReservL|
00e0 61 75 74 50 4d 3a 20 49-50 d1 27 00 00 00 4c 61 |autPM: I PÑ'...La|
00f0 67 65 52 65 73 65 72 76-4c 61 75 74 50 4d 3a 20 |geReserv LautPM: |
0100 53 74 61 6f 4e 72 48 20-25 20 4c 61 67 65 72 4f |StaoNrH  % LagerO|
0110 72 74 48 20 25 27 00 00-00 4c 61 67 65 52 65 73 |rtH %'.. .LageRes|
0120 65 72 76 4c 61 75 74 50-4d 3a 20 53 74 61 6f 4e |ervLautP M: StaoN|
0130 72 48 20 25 20 4c 61 67-65 72 4f 72 74 48 20 25 |rH % Lag erOrtH %|
0140 d1 11 00 00 00 4c 61 67-65 52 65 73 65 72 76 69 |Ñ....Lag eReservi|
0150 65 72 65 3a 20 32 11 00-00 00 4c 61 67 65 52 65 |ere: 2.. ..LageRe|
0160 73 65 72 76 69 65 72 65-3a 20 32 d1 11 00 00 00 |serviere : 2Ñ....|
0170 4c 61 67 65 52 65 73 65-72 76 69 65 72 65 3a 20 |LageRese rviere: |
0180 33 11 00 00 00 4c 61 67-65 52 65 73 65 72 76 69 |3....Lag eReservi|
0190 65 72 65 3a 20 33 d1 1b-00 00 00 4c 61 67 65 52 |ere: 3Ñ. ...LageR|
01a0 65 73 65 72 76 69 65 72-65 3a 20 3e 25 3c 20 3e |eservier e: >%< >|
01b0 25 3c 20 3e 25 3c 1b 00-00 00 4c 61 67 65 52 65 |%< >%<.. ..LageRe|
01c0 73 65 72 76 69 65 72 65-3a 20 3e 25 3c 20 3e 25 |serviere : >%< >%|
01d0 3c 20 3e 25 3c d1 05 00-00 00 4c 61 67 65 72 05 |< >%<Ñ.. ..Lager.|
01e0 00 00 00 53 74 6f 63 6b-d1 0b 00 00 00 4c 61 67 |...Stock Ñ....Lag|
01f0 65 72 4f 72 74 48 20 25-0b 00 00 00 4c 61 67 65 |erOrtH % ....Lage|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 4f 72 74 48 20 25 d1 |........ rOrtH %Ñ|
0010 30 00 00 00 4c 61 67 65-72 52 65 73 65 72 76 69 |0...Lage rReservi|
0020 65 72 75 6e 67 41 6c 67-6f 3a 20 25 2c 20 4c 61 |erungAlg o: %, La|
0030 67 65 72 52 65 73 65 72-76 69 65 72 75 6e 67 45 |gerReser vierungE|
0040 50 3a 20 25 2e 00 00 00-53 74 6f 63 6b 52 65 73 |P: %.... StockRes|
0050 65 72 76 61 74 69 6f 6e-41 6c 67 6f 3a 20 25 2c |ervation Algo: %,|
0060 20 53 74 6f 63 6b 52 65-73 65 72 76 61 74 69 6f | StockRe servatio|
0070 6e 50 50 3a 20 25 d1 15-00 00 00 4c 61 67 65 72 |nPP: %Ñ. ...Lager|
0080 52 65 73 65 72 76 69 65-72 75 6e 67 49 49 5f 25 |Reservie rungII_%|
0090 15 00 00 00 4c 61 67 65-72 52 65 73 65 72 76 69 |....Lage rReservi|
00a0 65 72 75 6e 67 49 49 5f-25 d1 04 00 00 00 4c 61 |erungII_ %Ñ....La|
00b0 6e 64 07 00 00 00 43 6f-75 6e 74 72 79 d1 14 00 |nd....Co untryÑ..|
00c0 00 00 4c 61 73 74 73 63-68 72 69 66 74 76 65 72 |..Lastsc hriftver|
00d0 66 61 68 72 65 6e 0c 00-00 00 44 69 72 65 63 74 |fahren.. ..Direct|
00e0 20 64 65 62 69 74 d1 58-00 00 00 4c 65 69 64 65 | debitÑX ...Leide|
00f0 72 20 66 65 68 6c 74 20-49 68 6e 65 6e 20 66 c3 |r fehlt  Ihnen fÃ|
0100 bc 72 20 64 69 65 73 65-20 4f 70 65 72 61 74 69 |¼r diese  Operati|
0110 6f 6e 20 64 61 73 20 4d-75 74 61 74 69 6f 6e 73 |on das M utations|
0120 72 65 63 68 74 20 66 c3-bc 72 20 64 65 6e 20 42 |recht fà ¼r den B|
0130 65 73 74 65 6c 6c 75 6e-67 73 74 79 70 20 27 25 |estellun gstyp '%|
0140 27 20 21 44 00 00 00 55-6e 66 6f 72 74 75 6e 61 |' !D...U nfortuna|
0150 74 65 6c 79 2c 20 79 6f-75 20 64 6f 20 6e 6f 74 |tely, yo u do not|
0160 20 68 61 76 65 20 65 64-69 74 69 6e 67 20 72 69 | have ed iting ri|
0170 67 68 74 20 66 6f 72 20-70 75 72 63 68 61 73 65 |ght for  purchase|
0180 20 74 79 70 65 20 27 25-27 20 21 d1 25 00 00 00 | type '% ' !Ñ%...|
0190 4c 65 69 64 65 72 20 68-61 62 65 6e 20 53 69 65 |Leider h aben Sie|
01a0 20 68 69 65 72 66 c3 bc-72 20 6b 65 69 6e 20 52 | hierfü r kein R|
01b0 65 63 68 74 21 2e 00 00-00 55 6e 66 6f 72 74 75 |echt!... .Unfortu|
01c0 6e 61 74 65 6c 79 2c 20-79 6f 75 20 64 6f 20 6e |nately,  you do n|
01d0 6f 74 20 68 61 76 65 20-61 75 74 68 6f 72 69 7a |ot have  authoriz|
01e0 61 74 69 6f 6e 73 21 d1-38 00 00 00 4c 65 69 64 |ations!Ñ 8...Leid|
01f0 65 72 20 68 61 62 65 6e-20 53 69 65 20 6b 65 69 |er haben  Sie kei|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1195170, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1194450, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196660, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196660, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196660, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1196660, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 88 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 88
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1524d30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (88 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1524d90, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1524d30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1524d90, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 20 52 65 63 68 74 20 |........ n Recht |
0010 64 65 6e 20 53 74 61 74-75 73 20 61 75 66 20 25 |den Stat us auf %|
0020 20 7a 75 20 c3 a4 6e 64-65 72 6e 21 43 00 00 00 | zu änd ern!C...|
0030 55 6e 66 6f 72 74 75 6e-61 74 65 6c 79 2c 20 79 |Unfortun ately, y|
0040 6f 75 20 64 6f 20 6e 6f-74 20 68 61 76 65 20 74 |ou do no t have t|
0050 68 65 20 72 69 67 68 74-20 74 6f 20 73 77 69 74 |he right  to swit|
0060 63 68 20 74 68 65 20 73-74 61 74 75 73 20 74 6f |ch the s tatus to|
0070 20 25 21 d1 6c 00 00 00-4c 65 69 64 65 72 20 68 | %!Ñl... Leider h|
0080 61 62 65 6e 20 53 69 65-20 6b 65 69 6e 20 5a 75 |aben Sie  kein Zu|
0090 67 72 69 66 66 72 65 63-68 74 20 61 75 66 20 3e |griffrec ht auf >|
00a0 25 3c 21 20 42 69 74 74-65 20 73 65 74 7a 65 6e |%<! Bitt e setzen|
00b0 20 53 69 65 20 73 69 63-68 20 6d 69 74 20 64 65 | Sie sic h mit de|
00c0 6d 20 53 79 73 74 65 6d-61 64 6d 69 6e 69 73 74 |m System administ|
00d0 72 61 74 6f 72 20 69 6e-20 56 65 72 62 69 6e 64 |rator in  Verbind|
00e0 75 6e 67 2e 60 00 00 00-55 6e 66 6f 72 74 75 6e |ung.`... Unfortun|
00f0 61 74 65 6c 79 2c 20 79-6f 75 20 64 6f 20 6e 6f |ately, y ou do no|
0100 74 20 68 61 76 65 20 74-68 65 20 72 69 67 68 74 |t have t he right|
0110 20 74 6f 20 61 63 63 65-73 73 20 3e 25 3c 21 20 | to acce ss >%<! |
0120 50 6c 65 61 73 65 20 63-6f 6e 74 61 63 74 20 74 |Please c ontact t|
0130 68 65 20 73 79 73 74 65-6d 20 61 64 6d 69 6e 69 |he syste m admini|
0140 73 74 72 61 74 6f 72 2e-d1 3a 00 00 00 4c 65 69 |strator. Ñ:...Lei|
0150 64 65 72 20 68 61 62 65-6e 20 53 69 65 20 6b 65 |der habe n Sie ke|
0160 69 6e 65 20 42 65 72 65-63 68 74 69 67 75 6e 67 |ine Bere chtigung|
0170 20 64 61 73 20 46 6f 72-6d 20 25 20 61 75 66 7a | das For m % aufz|
0180 75 72 75 66 65 6e 21 3a-00 00 00 55 6e 66 6f 72 |urufen!: ...Unfor|
0190 74 75 6e 61 74 65 6c 79-2c 20 79 6f 75 20 64 6f |tunately , you do|
01a0 20 6e 6f 74 20 68 61 76-65 20 74 68 65 20 72 69 | not hav e the ri|
01b0 67 68 74 20 74 6f 20 61-63 63 65 73 73 20 66 6f |ght to a ccess fo|
01c0 72 6d 20 25 21 d1 3d 00-00 00 4c 65 69 64 65 72 |rm %!Ñ=. ..Leider|
01d0 20 68 61 62 65 6e 20 53-69 65 20 6b 65 69 6e 65 | haben S ie keine|
01e0 6e 20 5a 75 67 72 69 66-66 20 61 75 66 20 47 65 |n Zugrif f auf Ge|
01f0 68 61 6c 74 73 61 62 72-65 63 68 6e 75 6e 67 73 |haltsabr echnungs|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1524d30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1524d90, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 108 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 96 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 108
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (108 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 96
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (96 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6b 72 65 69 73 65 21 3c |........ kreise!<|
0010 00 00 00 55 6e 66 6f 72-74 75 6e 61 74 65 6c 79 |...Unfor tunately|
0020 2c 20 79 6f 75 20 64 6f-20 6e 6f 74 20 68 61 76 |, you do  not hav|
0030 65 20 61 63 63 65 73 73-20 74 6f 20 73 61 6c 61 |e access  to sala|
0040 72 79 20 73 75 62 2d 6c-65 64 67 65 72 73 21 d1 |ry sub-l edgers!Ñ|
0050 3d 00 00 00 4c 65 69 64-65 72 20 68 61 62 65 6e |=...Leid er haben|
0060 20 53 69 65 20 6b 65 69-6e 65 6e 20 5a 75 67 72 | Sie kei nen Zugr|
0070 69 66 66 20 61 75 66 20-48 6f 6e 6f 72 61 72 61 |iff auf  Honorara|
0080 62 72 65 63 68 6e 75 6e-67 73 6b 72 65 69 73 65 |brechnun gskreise|
0090 21 3a 00 00 00 55 6e 66-6f 72 74 75 6e 61 74 65 |!:...Unf ortunate|
00a0 6c 79 2c 20 79 6f 75 20-64 6f 20 6e 6f 74 20 68 |ly, you  do not h|
00b0 61 76 65 20 61 63 63 65-73 73 20 74 6f 20 77 61 |ave acce ss to wa|
00c0 67 65 20 73 75 62 2d 6c-65 64 67 65 72 73 21 d1 |ge sub-l edgers!Ñ|
00d0 3a 00 00 00 4c 65 69 64-65 72 20 68 61 62 65 6e |:...Leid er haben|
00e0 20 53 69 65 20 6b 65 69-6e 65 6e 20 5a 75 67 72 | Sie kei nen Zugr|
00f0 69 66 66 20 61 75 66 20-4c 6f 68 6e 61 62 72 65 |iff auf  Lohnabre|
0100 63 68 6e 75 6e 67 73 6b-72 65 69 73 65 21 3c 00 |chnungsk reise!<.|
0110 00 00 55 6e 66 6f 72 74-75 6e 61 74 65 6c 79 2c |..Unfort unately,|
0120 20 79 6f 75 20 64 6f 20-6e 6f 74 20 68 61 76 65 | you do  not have|
0130 20 61 63 63 65 73 73 20-74 6f 20 73 61 6c 61 72 | access  to salar|
0140 79 20 73 75 62 2d 6c 65-64 67 65 72 73 21 d1 3c |y sub-le dgers!Ñ<|
0150 00 00 00 4c 65 69 64 65-72 20 68 61 62 65 6e 20 |...Leide r haben |
0160 53 69 65 20 6b 65 69 6e-65 6e 20 5a 75 67 72 69 |Sie kein en Zugri|
0170 66 66 20 61 75 66 20 52-65 6e 74 65 6e 61 62 72 |ff auf R entenabr|
0180 65 63 68 6e 75 6e 67 73-6b 72 65 69 73 65 21 3d |echnungs kreise!=|
0190 00 00 00 55 6e 66 6f 72-74 75 6e 61 74 65 6c 79 |...Unfor tunately|
01a0 2c 20 79 6f 75 20 64 6f-20 6e 6f 74 20 68 61 76 |, you do  not hav|
01b0 65 20 61 63 63 65 73 73-20 74 6f 20 70 65 6e 73 |e access  to pens|
01c0 69 6f 6e 20 73 75 62 2d-6c 65 64 67 65 72 73 21 |ion sub- ledgers!|
01d0 d1 3c 00 00 00 4c 65 69-64 65 72 20 68 61 62 65 |Ñ<...Lei der habe|
01e0 6e 20 53 69 65 20 6b 65-69 6e 65 6e 20 5a 75 67 |n Sie ke inen Zug|
01f0 72 69 66 66 20 61 75 66-20 64 69 65 73 65 6e 20 |riff auf  diesen |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-41 62 72 65 63 68 6e 75 |........ Abrechnu|
0010 6e 67 73 6b 72 65 69 73-21 3c 00 00 00 55 6e 66 |ngskreis !<...Unf|
0020 6f 72 74 75 6e 61 74 65-6c 79 2c 20 79 6f 75 20 |ortunate ly, you |
0030 64 6f 20 6e 6f 74 20 68-61 76 65 20 61 6e 20 61 |do not h ave an a|
0040 63 63 65 73 73 20 74 6f-20 74 68 69 73 20 73 75 |ccess to  this su|
0050 62 2d 6c 65 64 67 65 72-21 d1 38 00 00 00 4c 65 |b-ledger !Ñ8...Le|
0060 69 64 65 72 20 68 61 62-65 6e 20 53 69 65 20 6b |ider hab en Sie k|
0070 65 69 6e 65 6e 20 5a 75-67 72 69 66 66 20 64 69 |einen Zu griff di|
0080 65 73 65 6e 20 41 62 72-65 63 68 6e 75 6e 67 73 |esen Abr echnungs|
0090 6b 72 65 69 73 21 3c 00-00 00 55 6e 66 6f 72 74 |kreis!<. ..Unfort|
00a0 75 6e 61 74 65 6c 79 2c-20 79 6f 75 20 64 6f 20 |unately,  you do |
00b0 6e 6f 74 20 68 61 76 65-20 61 6e 20 61 63 63 65 |not have  an acce|
00c0 73 73 20 74 6f 20 74 68-69 73 20 73 75 62 2d 6c |ss to th is sub-l|
00d0 65 64 67 65 72 21 d1 0e-00 00 00 4c 65 74 7a 74 |edger!Ñ. ...Letzt|
00e0 65 20 53 75 6d 6d 65 6e-3a 0a 00 00 00 4c 61 73 |e Summen :....Las|
00f0 74 20 73 75 6d 73 3a d1-22 00 00 00 4c 65 74 7a |t sums:Ñ "...Letz|
0100 74 65 20 67 65 6c 61 64-65 6e 65 20 43 75 73 74 |te gelad ene Cust|
0110 6f 6d 69 7a 69 6e 67 2d-47 72 75 70 70 65 1d 00 |omizing- Gruppe..|
0120 00 00 4c 61 73 74 20 63-75 73 74 6f 6d 69 7a 69 |..Last c ustomizi|
0130 6e 67 20 67 72 6f 75 70-20 6c 6f 61 64 65 64 d1 |ng group  loadedÑ|
0140 16 00 00 00 4c 65 74 7a-74 65 72 20 4c 6f 67 69 |....Letz ter Logi|
0150 6e 2d 55 73 65 72 6e 61-6d 65 14 00 00 00 4c 61 |n-Userna me....La|
0160 73 74 20 6c 6f 67 69 6e-20 75 73 65 72 20 6e 61 |st login  user na|
0170 6d 65 d1 1e 00 00 00 4c-65 74 7a 74 65 73 20 67 |meÑ....L etztes g|
0180 65 6c 61 64 65 6e 65 73-20 52 65 63 68 74 65 70 |eladenes  Rechtep|
0190 72 6f 66 69 6c 19 00 00-00 4c 61 73 74 20 72 69 |rofil... .Last ri|
01a0 67 68 74 20 70 72 6f 66-69 6c 65 20 6c 6f 61 64 |ght prof ile load|
01b0 65 64 d1 09 00 00 00 4c-69 65 66 65 72 61 6e 74 |edÑ....L ieferant|
01c0 08 00 00 00 53 75 70 70-6c 69 65 72 d1 14 00 00 |....Supp lierÑ...|
01d0 00 4c 69 65 66 65 72 61-6e 74 20 62 65 61 72 62 |.Liefera nt bearb|
01e0 65 69 74 65 6e 0d 00 00-00 45 64 69 74 20 73 75 |eiten... .Edit su|
01f0 70 70 6c 69 65 72 d1 1e-00 00 00 4c 69 65 66 65 |pplierÑ. ...Liefe|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 61 6e 74 65 6e 2d 41 |........ ranten-A|
0010 72 74 69 6b 65 6c 20 62-65 61 72 62 65 69 74 65 |rtikel b earbeite|
0020 6e 15 00 00 00 45 64 69-74 20 73 75 70 70 6c 69 |n....Edi t suppli|
0030 65 72 20 61 72 74 69 63-6c 65 d1 1e 00 00 00 4c |er artic leÑ....L|
0040 69 65 66 65 72 61 6e 74-65 6e 2d 44 6f 6b 75 6d |ieferant en-Dokum|
0050 65 6e 74 65 20 61 6e 7a-65 69 67 65 6e 1b 00 00 |ente anz eigen...|
0060 00 56 69 65 77 20 73 75-70 70 6c 69 65 72 20 64 |.View su pplier d|
0070 6f 63 75 6d 65 6e 74 61-74 69 6f 6e d1 19 00 00 |ocumenta tionÑ...|
0080 00 4c 69 6e 65 61 72 20-28 45 69 6e 67 61 62 65 |.Linear  (Eingabe|
0090 20 4c 61 75 66 7a 65 69-74 29 25 00 00 00 73 74 | Laufzei t)%...st|
00a0 72 61 69 67 68 74 2d 6c-69 6e 65 20 6d 65 74 68 |raight-l ine meth|
00b0 6f 64 20 28 69 6e 74 61-6b 65 20 72 75 6e 74 69 |od (inta ke runti|
00c0 6d 65 29 d1 1c 00 00 00-4c 69 6e 65 61 72 20 28 |me)Ñ.... Linear (|
00d0 45 69 6e 67 61 62 65 20-50 72 6f 7a 65 6e 74 73 |Eingabe  Prozents|
00e0 61 74 7a 29 28 00 00 00-73 74 72 61 69 67 68 74 |atz)(... straight|
00f0 2d 6c 69 6e 65 20 6d 65-74 68 6f 64 20 28 69 6e |-line me thod (in|
0100 74 61 6b 65 20 70 65 72-63 65 6e 74 61 67 65 29 |take per centage)|
0110 d1 09 00 00 00 4c 69 71-75 69 64 69 74 79 09 00 |Ñ....Liq uidity..|
0120 00 00 4c 69 71 75 69 64-69 74 79 d1 0b 00 00 00 |..Liquid ityÑ....|
0130 4c 69 71 75 69 64 69 74-c3 a4 74 09 00 00 00 4c |Liquidit ät....L|
0140 69 71 75 69 64 69 74 79-d1 24 00 00 00 4c 69 73 |iquidity Ñ$...Lis|
0150 74 65 20 77 69 72 64 20-69 6e 20 44 61 74 65 69 |te wird  in Datei|
0160 20 27 25 27 20 67 65 73-63 68 72 69 65 62 65 6e | '%' ges chrieben|
0170 21 21 00 00 00 4c 69 73-74 20 77 69 6c 6c 20 62 |!!...Lis t will b|
0180 65 20 77 72 69 74 74 65-6e 20 74 6f 20 66 69 6c |e writte n to fil|
0190 65 20 27 25 27 21 d1 25-00 00 00 4c 69 73 74 65 |e '%'!Ñ% ...Liste|
01a0 20 77 75 72 64 65 20 69-6e 20 44 61 74 65 69 20 | wurde i n Datei |
01b0 27 25 27 20 67 65 73 63-68 72 69 65 62 65 6e 21 |'%' gesc hrieben!|
01c0 19 00 00 00 4c 69 73 74-20 77 72 69 74 74 65 6e |....List  written|
01d0 20 74 6f 20 66 69 6c 65-20 27 25 27 21 d1 15 00 | to file  '%'!Ñ..|
01e0 00 00 4c 69 7a 65 6e 7a-c3 bc 62 65 72 73 63 68 |..Lizenz übersch|
01f0 72 65 69 74 75 6e 67 11-00 00 00 4c 69 63 65 6e |reitung. ...Licen|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-63 65 20 76 69 6f 6c 61 |........ ce viola|
0010 74 69 6f 6e d1 14 00 00-00 4c 6f 67 69 6e 20 64 |tionÑ... .Login d|
0020 65 61 6b 74 69 76 69 65-72 65 6e 20 3f 11 00 00 |eaktivie ren ?...|
0030 00 44 65 61 63 74 69 76-61 74 65 20 6c 6f 67 69 |.Deactiv ate logi|
0040 6e 3f d1 26 00 00 00 4c-6f 68 6e 45 4c 4d 34 30 |n?Ñ&...L ohnELM40|
0050 3a 20 47 65 6e 65 72 69-65 72 75 6e 67 20 66 65 |: Generi erung fe|
0060 68 6c 67 65 73 63 68 6c-61 67 65 6e 2e 1d 00 00 |hlgeschl agen....|
0070 00 4c 6f 68 6e 45 4c 4d-34 30 3a 20 47 65 6e 65 |.LohnELM 40: Gene|
0080 72 61 74 69 6e 67 20 66-61 69 6c 65 64 2e d1 13 |rating f ailed.Ñ.|
0090 00 00 00 4c 6f 68 6e 61-72 74 65 6e 65 72 6d 69 |...Lohna rtenermi|
00a0 74 74 6c 75 6e 67 17 00-00 00 57 61 67 65 20 74 |ttlung.. ..Wage t|
00b0 79 70 65 20 64 65 74 65-72 6d 69 6e 61 74 69 6f |ype dete rminatio|
00c0 6e d1 06 00 00 00 4d 61-69 6c 65 72 06 00 00 00 |nÑ....Ma iler....|
00d0 4d 61 69 6c 65 72 d1 13-00 00 00 4d 61 6e 64 61 |MailerÑ. ...Manda|
00e0 6e 74 65 6e 76 65 72 77-61 6c 74 75 6e 67 17 00 |ntenverw altung..|
00f0 00 00 4d 61 6e 64 61 74-6f 72 20 61 64 6d 69 6e |..Mandat or admin|
0100 69 73 74 72 61 74 69 6f-6e d1 07 00 00 00 4d 61 |istratio nÑ....Ma|
0110 6e 75 65 6c 6c 08 00 00-00 4d 61 6e 75 61 6c 6c |nuell... .Manuall|
0120 79 d1 06 00 00 00 4d 61-73 74 65 72 06 00 00 00 |yÑ....Ma ster....|
0130 4d 61 73 74 65 72 d1 0b-00 00 00 4d 61 73 74 65 |MasterÑ. ...Maste|
0140 72 20 64 61 74 61 0b 00-00 00 4d 61 73 74 65 72 |r data.. ..Master|
0150 20 64 61 74 61 d1 0a 00-00 00 4d 61 74 63 68 20 | dataÑ.. ..Match |
0160 3c 25 3e 2e 0a 00 00 00-4d 61 74 63 68 20 3c 25 |<%>..... Match <%|
0170 3e 2e d1 0f 00 00 00 4d-65 68 72 65 72 65 20 53 |>.Ñ....M ehrere S|
0180 70 61 6c 74 65 6e 0f 00-00 00 53 65 76 65 72 61 |palten.. ..Severa|
0190 6c 20 63 6f 6c 75 6d 6e-73 d1 1e 00 00 00 4d 65 |l column sÑ....Me|
01a0 6e 67 65 20 6e 61 63 68-66 c3 bc 68 72 65 6e 20 |nge nach führen |
01b0 28 25 20 73 74 61 74 74-20 25 29 3f 21 00 00 00 |(% statt  %)?!...|
01c0 41 64 6a 75 73 74 20 71-75 61 6e 74 69 74 79 20 |Adjust q uantity |
01d0 28 25 20 69 6e 73 74 65-61 64 20 6f 66 20 25 29 |(% inste ad of %)|
01e0 3f d1 0e 00 00 00 4d 6f-62 69 6c 65 20 73 74 6f |?Ñ....Mo bile sto|
01f0 72 61 67 65 0e 00 00 00-4d 6f 62 69 6c 65 20 73 |rage.... Mobile s|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 6f 72 61 67 65 d1 0d |........ torageÑ.|
0010 00 00 00 4d 6f 62 69 6c-65 73 20 4c 61 67 65 72 |...Mobil es Lager|
0020 0e 00 00 00 4d 6f 62 69-6c 65 20 73 74 6f 72 61 |....Mobi le stora|
0030 67 65 d1 0c 00 00 00 4d-6f 64 69 66 69 63 61 74 |geÑ....M odificat|
0040 69 6f 6e 0c 00 00 00 4d-6f 64 69 66 69 63 61 74 |ion....M odificat|
0050 69 6f 6e d1 2e 00 00 00-4d 6f 64 75 6c 45 69 6e |ionÑ.... ModulEin|
0060 68 65 69 74 20 6b 61 6e-6e 20 6e 69 63 68 74 20 |heit kan n nicht |
0070 65 72 6d 69 74 74 65 6c-74 20 77 65 72 64 65 6e |ermittel t werden|
0080 20 28 25 20 25 29 22 00-00 00 43 61 6e 6e 6f 74 | (% %)". ..Cannot|
0090 20 64 65 74 65 72 6d 69-6e 65 20 6d 6f 64 75 6c | determi ne modul|
00a0 65 20 75 6e 69 74 20 28-25 20 25 29 d1 08 00 00 |e unit ( % %)Ñ...|
00b0 00 4d 75 74 69 65 72 65-6e 06 00 00 00 4d 6f 64 |.Mutiere n....Mod|
00c0 69 66 79 d1 41 00 00 00-4d c3 b6 63 68 74 65 6e |ifyÑA... Möchten|
00d0 20 53 69 65 20 44 65 66-61 75 6c 74 77 65 72 74 | Sie Def aultwert|
00e0 65 20 66 c3 bc 72 20 64-69 65 20 41 64 72 65 73 |e für d ie Adres|
00f0 73 2d 5a 75 73 61 74 7a-64 61 74 65 6e 20 67 65 |s-Zusatz daten ge|
0100 6e 65 72 69 65 72 65 6e-3f 3b 00 00 00 47 65 6e |nerieren ?;...Gen|
0110 65 72 61 74 65 20 64 65-66 61 75 6c 74 20 76 61 |erate de fault va|
0120 6c 75 65 73 20 66 6f 72-20 74 68 65 20 73 75 70 |lues for  the sup|
0130 70 6c 65 6d 65 6e 74 61-72 79 20 61 64 64 72 65 |plementa ry addre|
0140 73 73 20 64 61 74 61 3f-d1 46 00 00 00 4d c3 b6 |ss data? ÑF...Mö|
0150 63 68 74 65 6e 20 53 69-65 20 44 65 66 61 75 6c |chten Si e Defaul|
0160 74 77 65 72 74 65 20 66-c3 bc 72 20 64 69 65 20 |twerte f ür die |
0170 42 65 73 74 65 6c 6c 75-6e 67 73 2d 5a 75 73 61 |Bestellu ngs-Zusa|
0180 74 7a 64 61 74 65 6e 20-67 65 6e 65 72 69 65 72 |tzdaten  generier|
0190 65 6e 3f 3c 00 00 00 47-65 6e 65 72 61 74 65 20 |en?<...G enerate |
01a0 64 65 66 61 75 6c 74 20-76 61 6c 75 65 73 20 66 |default  values f|
01b0 6f 72 20 74 68 65 20 73-75 70 70 6c 65 6d 65 6e |or the s upplemen|
01c0 74 61 72 79 20 70 75 72-63 68 61 73 65 20 64 61 |tary pur chase da|
01d0 74 61 3f d1 42 00 00 00-4d c3 b6 63 68 74 65 6e |ta?ÑB... Möchten|
01e0 20 53 69 65 20 44 65 66-61 75 6c 74 77 65 72 74 | Sie Def aultwert|
01f0 65 20 66 c3 bc 72 20 64-69 65 20 46 61 6b 74 75 |e für d ie Faktu|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1525250, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527b60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527b60, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15252d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 70 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 70
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (70 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-72 61 2d 5a 75 73 61 74 |........ ra-Zusat|
0010 7a 64 61 74 65 6e 20 67-65 6e 65 72 69 65 72 65 |zdaten g eneriere|
0020 6e 3f 3b 00 00 00 47 65-6e 65 72 61 74 65 20 64 |n?;...Ge nerate d|
0030 65 66 61 75 6c 74 20 76-61 6c 75 65 73 20 66 6f |efault v alues fo|
0040 72 20 74 68 65 20 73 75-70 70 6c 65 6d 65 6e 74 |r the su pplement|
0050 61 72 79 20 69 6e 76 6f-69 63 65 20 64 61 74 61 |ary invo ice data|
0060 3f d1 40 00 00 00 4d c3-b6 63 68 74 65 6e 20 53 |?Ñ@...MÃ ¶chten S|
0070 69 65 20 64 65 6e 20 54-61 62 65 6c 6c 65 6e 69 |ie den T abelleni|
0080 6e 68 61 6c 74 20 69 6e-20 65 69 6e 65 20 45 78 |nhalt in  eine Ex|
0090 63 65 6c 2d 44 61 74 65-69 20 65 78 70 6f 72 74 |cel-Date i export|
00a0 69 65 72 65 6e 3f 21 00-00 00 43 6f 70 79 20 74 |ieren?!. ..Copy t|
00b0 61 62 6c 65 20 63 6f 6e-74 65 6e 74 20 74 6f 20 |able con tent to |
00c0 45 78 63 65 6c 20 66 69-6c 65 3f d1 26 00 00 00 |Excel fi le?Ñ&...|
00d0 4d c3 b6 63 68 74 65 6e-20 53 69 65 20 64 69 65 |Möchten  Sie die|
00e0 20 41 6e 77 65 6e 64 75-6e 67 20 73 63 68 6c 69 | Anwendu ng schli|
00f0 65 73 73 65 6e 3f 12 00-00 00 43 6c 6f 73 65 20 |essen?.. ..Close |
0100 61 70 70 6c 69 63 61 74-69 6f 6e 3f d1 34 00 00 |applicat ion?Ñ4..|
0110 00 4d c3 b6 63 68 74 65-6e 20 53 69 65 20 64 69 |.Möchte n Sie di|
0120 65 20 43 68 61 72 67 65-6e 2f 4b 75 6e 64 65 6e |e Charge n/Kunden|
0130 7a 75 6f 72 64 6e 75 6e-67 20 62 65 61 72 62 65 |zuordnun g bearbe|
0140 69 74 65 6e 3f 25 00 00-00 4d 6f 64 69 66 79 20 |iten?%.. .Modify |
0150 61 6c 6c 6f 63 61 74 69-6f 6e 73 20 62 61 74 63 |allocati ons batc|
0160 68 65 73 2f 63 75 73 74-6f 6d 65 72 73 3f d1 1c |hes/cust omers?Ñ.|
0170 00 00 00 4d c3 b6 63 68-74 65 6e 20 53 69 65 20 |...Möch ten Sie |
0180 64 69 65 73 20 6a 65 74-7a 74 20 74 75 6e 3f 0c |dies jet zt tun?.|
0190 00 00 00 44 6f 20 74 68-69 73 20 6e 6f 77 3f d1 |...Do th is now?Ñ|
01a0 39 00 00 00 4d c3 b6 63-68 74 65 6e 20 53 69 65 |9...Möc hten Sie|
01b0 20 65 69 6e 20 4e 65 62-65 6e 70 72 6f 64 75 6b | ein Neb enproduk|
01c0 74 20 7a 75 6d 20 41 75-66 74 72 61 67 20 25 2f |t zum Au ftrag %/|
01d0 25 20 65 69 6e 62 75 63-68 65 6e 20 3f 23 00 00 |% einbuc hen ?#..|
01e0 00 43 68 65 63 6b 20 69-6e 20 61 20 62 79 70 72 |.Check i n a bypr|
01f0 6f 64 75 63 74 20 66 6f-72 20 6f 72 64 65 72 20 |oduct fo r order |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-25 2f 25 3f d1 10 00 00 |........ %/%?Ñ...|
0010 00 4e 61 63 68 66 61 73-73 6b 6f 6e 74 61 6b 74 |.Nachfas skontakt|
0020 65 12 00 00 00 46 6f 6c-6c 6f 77 20 75 70 20 63 |e....Fol low up c|
0030 6f 6e 74 61 63 74 73 d1-2e 00 00 00 4e 61 63 68 |ontactsÑ ....Nach|
0040 66 c3 bc 68 72 65 6e 20-64 65 72 20 42 65 73 74 |führen  der Best|
0050 65 6c 6c 75 6e 67 20 69-73 74 20 6e 69 63 68 74 |ellung i st nicht|
0060 20 6d c3 b6 67 6c 69 63-68 21 20 00 00 00 55 70 | möglic h! ...Up|
0070 64 61 74 65 20 6f 66 20-6f 72 64 65 72 20 69 73 |date of  order is|
0080 20 6e 6f 74 20 70 6f 73-73 69 62 6c 65 21 d1 15 | not pos sible!Ñ.|
0090 00 00 00 4e 61 6d 65 20-64 65 72 20 45 78 70 6f |...Name  der Expo|
00a0 72 74 64 61 74 65 69 3f-14 00 00 00 4e 61 6d 65 |rtdatei? ....Name|
00b0 20 6f 66 20 65 78 70 6f-72 74 20 66 69 6c 65 3f | of expo rt file?|
00c0 d1 14 00 00 00 4e 61 6d-65 20 64 65 72 20 49 6d |Ñ....Nam e der Im|
00d0 70 6f 72 74 64 61 74 65-69 13 00 00 00 4e 61 6d |portdate i....Nam|
00e0 65 20 6f 66 20 69 6d 70-6f 72 74 20 66 69 6c 65 |e of imp ort file|
00f0 d1 15 00 00 00 4e 61 6d-65 20 64 65 72 20 49 6d |Ñ....Nam e der Im|
0100 70 6f 72 74 64 61 74 65-69 3f 14 00 00 00 4e 61 |portdate i?....Na|
0110 6d 65 20 6f 66 20 69 6d-70 6f 72 74 20 66 69 6c |me of im port fil|
0120 65 3f d1 13 00 00 00 4e-61 6d 65 20 64 65 72 20 |e?Ñ....N ame der |
0130 53 45 50 41 2d 44 61 74-65 69 11 00 00 00 4e 61 |SEPA-Dat ei....Na|
0140 6d 65 20 6f 66 20 53 45-50 41 20 66 69 6c 65 d1 |me of SE PA fileÑ|
0150 2b 00 00 00 4e 61 6d 65-20 64 65 73 20 41 6e 73 |+...Name  des Ans|
0160 70 72 65 63 68 70 61 72-74 6e 65 72 73 20 3e 41 |prechpar tners >A|
0170 64 72 4e 72 20 25 3c 20-66 65 68 6c 65 6e 21 29 |drNr %<  fehlen!)|
0180 00 00 00 4e 61 6d 65 20-6f 66 20 63 6f 6e 74 61 |...Name  of conta|
0190 63 74 20 70 65 72 73 6f-6e 20 3e 41 64 72 4e 6f |ct perso n >AdrNo|
01a0 20 25 3c 20 6d 69 73 73-69 6e 67 21 d1 04 00 00 | %< miss ing!Ñ...|
01b0 00 4e 65 69 6e 02 00 00-00 4e 6f d1 11 00 00 00 |.Nein... .NoÑ....|
01c0 4e 65 75 65 20 53 74 61-6d 6d 61 64 72 65 73 73 |Neue Sta mmadress|
01d0 65 12 00 00 00 4e 65 77-20 6d 61 73 74 65 72 20 |e....New  master |
01e0 61 64 64 72 65 73 73 d1-0c 00 00 00 4e 65 75 65 |addressÑ ....Neue|
01f0 20 61 6e 6c 65 67 65 6e-0a 00 00 00 43 72 65 61 | anlegen ....Crea|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527dd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1527e20, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 65 20 6e 65 77 d1 0f |........ te newÑ.|
0010 00 00 00 4e 69 63 68 74-20 67 65 66 75 6e 64 65 |...Nicht  gefunde|
0020 6e 21 0a 00 00 00 4e 6f-74 20 66 6f 75 6e 64 21 |n!....No t found!|
0030 d1 4d 00 00 00 4e 69 63-68 74 20 75 6e 74 65 72 |ÑM...Nic ht unter|
0040 73 74 c3 bc 74 7a 74 65-72 20 54 79 70 20 64 65 |stützte r Typ de|
0050 73 20 53 63 68 6c c3 bc-73 73 65 6c 73 20 28 25 |s Schlü ssels (%|
0060 29 20 2d 20 6b 65 69 6e-65 20 c3 9c 62 65 72 70 |) - kein e Ã.berp|
0070 72 c3 bc 66 75 6e 67 20-6d c3 b6 67 6c 69 63 68 |rüfung  möglich|
0080 20 21 33 00 00 00 4b 65-79 20 74 79 70 65 20 28 | !3...Ke y type (|
0090 25 29 20 6e 6f 74 20 73-75 70 70 6f 72 74 65 64 |%) not s upported|
00a0 20 2d 20 63 68 65 63 6b-69 6e 67 20 6e 6f 74 20 | - check ing not |
00b0 70 6f 73 73 69 62 6c 65-21 d1 09 00 00 00 4e 6f |possible !Ñ....No|
00c0 20 4d 61 74 63 68 2e 08-00 00 00 4e 6f 20 6d 61 | Match.. ...No ma|
00d0 74 63 68 d1 3c 00 00 00-4e 75 6d 6d 65 72 6e 6b |tchÑ<... Nummernk|
00e0 72 65 69 73 20 6c c3 a4-75 66 74 20 c3 bc 62 65 |reis lä uft übe|
00f0 72 2c 20 6e 75 72 20 6e-6f 63 68 20 77 65 6e 69 |r, nur n och weni|
0100 67 65 20 4e 75 6d 6d 65-72 6e 20 c3 bc 62 72 69 |ge Numme rn übri|
0110 67 21 20 28 44 00 00 00-53 65 74 20 6f 66 20 6e |g! (D... Set of n|
0120 75 6d 62 65 72 73 20 61-62 6f 75 74 20 74 6f 20 |umbers a bout to |
0130 65 78 68 61 75 73 74 2c-20 6f 6e 6c 79 20 66 65 |exhaust,  only fe|
0140 77 20 6e 75 6d 62 65 72-73 20 73 74 69 6c 6c 20 |w number s still |
0150 61 76 61 69 6c 61 62 6c-65 21 20 28 d1 5b 00 00 |availabl e! (Ñ[..|
0160 00 4e 75 72 20 41 6b 74-69 76 61 2d 20 75 6e 64 |.Nur Akt iva- und|
0170 20 50 61 73 73 69 76 61-2d 4b 6f 6e 74 65 6e 20 | Passiva -Konten |
0180 73 69 6e 64 20 68 69 65-72 20 73 69 6e 6e 76 6f |sind hie r sinnvo|
0190 6c 6c 20 21 20 57 6f 6c-6c 65 6e 20 53 69 65 20 |ll ! Wol len Sie |
01a0 65 69 6e 65 20 61 6e 64-65 72 65 20 4b 6c 61 73 |eine and ere Klas|
01b0 73 65 20 77 c3 a4 68 6c-65 6e 20 3f 4b 00 00 00 |se wähl en ?K...|
01c0 4f 6e 6c 79 20 61 63 74-69 76 65 20 61 6e 64 20 |Only act ive and |
01d0 6c 69 61 62 69 6c 69 74-69 65 73 20 61 63 63 6f |liabilit ies acco|
01e0 75 6e 74 73 20 6d 61 6b-65 20 73 65 6e 73 65 20 |unts mak e sense |
01f0 68 65 72 65 21 20 53 65-6c 65 63 74 20 61 6e 6f |here! Se lect ano|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529090, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 77 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 77
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (77 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 91 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 68 65 72 20 63 6c 61 |........ ther cla|
0010 73 73 3f d1 24 00 00 00-4e 75 72 20 49 68 72 20 |ss?Ñ$... Nur Ihr |
0020 65 69 67 65 6e 65 73 20-4b 75 72 7a 7a 65 69 63 |eigenes  Kurzzeic|
0030 68 65 6e 20 65 72 6c 61-75 62 74 21 26 00 00 00 |hen erla ubt!&...|
0040 4f 6e 6c 79 20 79 6f 75-72 20 6f 77 6e 20 61 62 |Only you r own ab|
0050 62 72 65 76 69 61 74 69-6f 6e 20 69 73 20 61 6c |breviati on is al|
0060 6c 6f 77 65 64 21 d1 17-00 00 00 4e 75 74 7a 75 |lowed!Ñ. ...Nutzu|
0070 6e 67 73 64 61 75 65 72-20 69 6e 20 4a 61 68 72 |ngsdauer  in Jahr|
0080 65 6e 14 00 00 00 55 73-65 66 75 6c 20 6c 69 66 |en....Us eful lif|
0090 65 20 69 6e 20 79 65 61-72 73 d1 1b 00 00 00 4f |e in yea rsÑ....O|
00a0 50 47 20 4b 6f 6e 66 69-67 75 72 61 74 69 6f 6e |PG Konfi guration|
00b0 73 2d 50 61 73 73 77 6f-72 74 1a 00 00 00 4f 50 |s-Passwo rt....OP|
00c0 47 20 63 6f 6e 66 69 67-75 72 61 74 69 6f 6e 20 |G config uration |
00d0 70 61 73 73 77 6f 72 64-d1 0c 00 00 00 4f 68 6e |password Ñ....Ohn|
00e0 65 20 56 6f 72 6c 61 67-65 0e 00 00 00 57 69 74 |e Vorlag e....Wit|
00f0 68 6f 75 74 20 6d 61 73-74 65 72 d1 16 00 00 00 |hout mas terÑ....|
0100 4f 70 65 72 61 74 69 6f-6e 61 6c 20 61 63 63 6f |Operatio nal acco|
0110 75 6e 74 69 6e 67 16 00-00 00 4f 70 65 72 61 74 |unting.. ..Operat|
0120 69 6f 6e 61 6c 20 61 63-63 6f 75 6e 74 69 6e 67 |ional ac counting|
0130 d1 10 00 00 00 4f 70 65-72 61 74 69 6f 6e 61 6c |Ñ....Ope rational|
0140 20 64 61 74 61 10 00 00-00 4f 70 65 72 61 74 69 | data... .Operati|
0150 6f 6e 61 6c 20 64 61 74-61 d1 0e 00 00 00 4f 72 |onal dat aÑ....Or|
0160 64 65 72 20 64 65 61 64-6c 69 6e 65 0e 00 00 00 |der dead line....|
0170 4f 72 64 65 72 20 64 65-61 64 6c 69 6e 65 d1 06 |Order de adlineÑ.|
0180 00 00 00 4f 72 64 65 72-73 06 00 00 00 4f 72 64 |...Order s....Ord|
0190 65 72 73 d1 6e 00 00 00-50 49 53 4b 72 69 74 42 |ersÑn... PISKritB|
01a0 65 61 72 32 49 6d 70 6f-72 74 3a 20 41 63 68 74 |ear2Impo rt: Acht|
01b0 75 6e 67 3a 20 75 6e 7a-75 6c 61 65 73 73 69 67 |ung: unz ulaessig|
01c0 65 20 5a 65 69 63 68 65-6e 20 69 6d 20 46 65 6c |e Zeiche n im Fel|
01d0 64 69 6e 68 61 6c 74 20-3c 25 3e 20 61 75 66 20 |dinhalt  <%> auf |
01e0 50 6f 73 69 74 69 6f 6e-20 25 20 2d 20 46 65 6c |Position  % - Fel|
01f0 64 61 75 73 67 61 62 65-20 75 6e 74 65 72 64 72 |dausgabe  unterdr|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 91
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (91 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529b20, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1529620, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 110 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-75 65 63 6b 74 21 6c 00 |........ ueckt!l.|
0010 00 00 50 49 53 4b 72 69-74 42 65 61 72 32 49 6d |..PISKri tBear2Im|
0020 70 6f 72 74 3a 20 41 74-74 65 6e 74 69 6f 6e 3a |port: At tention:|
0030 20 69 6e 76 61 6c 69 64-20 63 68 61 72 61 63 74 | invalid  charact|
0040 65 72 73 20 69 6e 20 66-69 65 6c 64 20 63 6f 6e |ers in f ield con|
0050 74 65 6e 74 20 3c 25 3e-20 61 74 20 70 6f 73 69 |tent <%>  at posi|
0060 74 69 6f 6e 20 25 20 2d-20 66 69 65 6c 64 20 6f |tion % -  field o|
0070 75 74 70 75 74 20 61 62-6f 72 74 65 64 21 d1 1a |utput ab orted!Ñ.|
0080 00 00 00 50 61 6e 69 6b-20 66 72 6f 6d 20 57 6f |...Panik  from Wo|
0090 6e 64 65 72 20 57 61 72-74 68 6f 67 21 1a 00 00 |nder War thog!...|
00a0 00 50 61 6e 69 63 20 66-72 6f 6d 20 57 6f 6e 64 |.Panic f rom Wond|
00b0 65 72 20 57 61 72 74 68-6f 67 21 d1 10 00 00 00 |er Warth og!Ñ....|
00c0 50 61 73 73 77 6f 72 74-20 66 61 6c 73 63 68 2e |Passwort  falsch.|
00d0 0e 00 00 00 57 72 6f 6e-67 20 70 61 73 73 77 6f |....Wron g passwo|
00e0 72 64 d1 14 00 00 00 50-61 79 6d 65 6e 74 20 74 |rdÑ....P ayment t|
00f0 72 61 6e 73 61 63 74 69-6f 6e 73 14 00 00 00 50 |ransacti ons....P|
0100 61 79 6d 65 6e 74 20 74-72 61 6e 73 61 63 74 69 |ayment t ransacti|
0110 6f 6e 73 d1 08 00 00 00-50 61 79 6d 65 6e 74 73 |onsÑ.... Payments|
0120 08 00 00 00 50 61 79 6d-65 6e 74 73 d1 28 00 00 |....Paym entsÑ(..|
0130 00 50 65 72 73 6f 6e 20-61 75 73 20 45 72 65 69 |.Person  aus Erei|
0140 67 6e 69 73 2d 52 65 61-6b 74 69 6f 6e 20 65 6e |gnis-Rea ktion en|
0150 74 66 65 72 6e 65 6e 20-3f 26 00 00 00 44 65 6c |tfernen  ?&...Del|
0160 65 74 65 20 70 65 72 73-6f 6e 20 66 72 6f 6d 20 |ete pers on from |
0170 73 79 73 2d 65 76 65 6e-74 20 72 65 61 63 74 69 |sys-even t reacti|
0180 6f 6e 3f d1 17 00 00 00-50 65 72 73 6f 6e 20 69 |on?Ñ.... Person i|
0190 6e 61 6b 74 69 76 20 73-65 74 7a 65 6e 20 3f 12 |naktiv s etzen ?.|
01a0 00 00 00 49 6e 61 63 74-69 76 61 74 65 20 70 65 |...Inact ivate pe|
01b0 72 73 6f 6e 3f d1 1c 00-00 00 50 65 72 73 6f 6e |rson?Ñ.. ..Person|
01c0 61 6c 2d 41 74 74 72 69-62 75 74 65 20 76 65 72 |al-Attri bute ver|
01d0 77 61 6c 74 65 6e 1d 00-00 00 41 64 6d 69 6e 69 |walten.. ..Admini|
01e0 73 74 72 61 74 65 20 73-74 61 66 66 20 61 74 74 |strate s taff att|
01f0 72 69 62 75 74 65 73 d1-22 00 00 00 50 65 72 73 |ributesÑ "...Pers|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 108 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 110
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a420, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (110 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 108
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a4a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (108 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a420, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a4a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a420, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a4a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a420, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a4a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a420, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a4a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6f 6e 61 6c 2d 41 74 74 |........ onal-Att|
0010 72 69 62 75 74 65 77 65-72 74 65 20 62 65 61 72 |ributewe rte bear|
0020 62 65 69 74 65 6e 1b 00-00 00 45 64 69 74 20 73 |beiten.. ..Edit s|
0030 74 61 66 66 20 61 74 74-72 69 62 75 74 65 20 76 |taff att ribute v|
0040 61 6c 75 65 73 d1 0f 00-00 00 50 65 72 73 6f 6e |aluesÑ.. ..Person|
0050 61 6c 70 6c 61 6e 75 6e-67 12 00 00 00 50 65 72 |alplanun g....Per|
0060 73 6f 6e 6e 65 6c 20 70-6c 61 6e 6e 69 6e 67 d1 |sonnel p lanningÑ|
0070 1a 00 00 00 50 65 72 73-6f 6e 61 6c 73 74 61 6d |....Pers onalstam|
0080 6d 20 62 65 61 72 62 65-69 74 65 6e 20 3f 16 00 |m bearbe iten ?..|
0090 00 00 4d 6f 64 69 66 79-20 70 65 72 73 6f 6e 6e |..Modify  personn|
00a0 65 6c 20 62 61 73 65 3f-d1 09 00 00 00 50 65 72 |el base? Ñ....Per|
00b0 73 6f 6e 6e 65 6c 09 00-00 00 50 65 72 73 6f 6e |sonnel.. ..Person|
00c0 6e 65 6c d1 12 00 00 00-50 65 72 73 6f 6e 6e 65 |nelÑ.... Personne|
00d0 6c 20 70 6c 61 6e 6e 69-6e 67 12 00 00 00 50 65 |l planni ng....Pe|
00e0 72 73 6f 6e 6e 65 6c 20-70 6c 61 6e 6e 69 6e 67 |rsonnel  planning|
00f0 d1 08 00 00 00 50 66 61-64 20 3d 20 7b 08 00 00 |Ñ....Pfa d = {...|
0100 00 50 61 74 68 20 3d 20-7b d1 06 00 00 00 50 66 |.Path =  {Ñ....Pf|
0110 61 64 20 3e 06 00 00 00-50 61 74 68 20 3e d1 08 |ad >.... Path >Ñ.|
0120 00 00 00 50 6c 61 6e 6e-69 6e 67 08 00 00 00 50 |...Plann ing....P|
0130 6c 61 6e 6e 69 6e 67 d1-23 00 00 00 50 6f 73 41 |lanningÑ #...PosA|
0140 72 74 4e 72 20 25 20 50-72 6f 64 41 72 74 4e 72 |rtNr % P rodArtNr|
0150 20 25 20 50 72 6f 64 41-72 74 43 4e 72 20 25 23 | % ProdA rtCNr %#|
0160 00 00 00 50 6f 73 41 72-74 4e 72 20 25 20 50 72 |...PosAr tNr % Pr|
0170 6f 64 41 72 74 4e 72 20-25 20 50 72 6f 64 41 72 |odArtNr  % ProdAr|
0180 74 43 4e 72 20 25 d1 2b-00 00 00 50 6f 73 69 74 |tCNr %Ñ+ ...Posit|
0190 69 6f 6e 20 6b 6f 6e 6e-74 65 20 6e 69 63 68 74 |ion konn te nicht|
01a0 20 61 62 67 65 73 63 68-6c 6f 73 73 65 6e 20 77 | abgesch lossen w|
01b0 65 72 64 65 6e 21 1d 00-00 00 54 68 65 20 69 74 |erden!.. ..The it|
01c0 65 6d 20 63 6f 75 6c 64-20 6e 6f 74 20 62 65 20 |em could  not be |
01d0 63 6c 6f 73 65 64 21 d1-1f 00 00 00 50 6f 73 69 |closed!Ñ ....Posi|
01e0 74 69 6f 6e 2f 42 6c 6f-63 6b 20 6e 69 63 68 74 |tion/Blo ck nicht|
01f0 20 67 65 66 75 6e 64 65-6e 20 21 15 00 00 00 49 | gefunde n !....I|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a390, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152b720, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 65 6d 2f 62 6c 6f 63 |........ tem/bloc|
0010 6b 20 6e 6f 74 20 66 6f-75 6e 64 21 d1 13 00 00 |k not fo und!Ñ...|
0020 00 50 72 65 69 73 6c 69-73 74 65 6e 6c 65 69 63 |.Preisli stenleic|
0030 68 65 6e 3a 15 00 00 00-4f 62 73 6f 6c 65 74 65 |hen:.... Obsolete|
0040 20 70 72 69 63 65 20 6c-69 73 74 73 3a d1 07 00 | price l ists:Ñ..|
0050 00 00 50 72 65 70 61 72-65 07 00 00 00 50 72 65 |..Prepar e....Pre|
0060 70 61 72 65 d1 0b 00 00-00 50 72 69 63 65 20 6c |pareÑ... .Price l|
0070 69 73 74 73 0b 00 00 00-50 72 69 63 65 20 6c 69 |ists.... Price li|
0080 73 74 73 d1 1f 00 00 00-50 72 69 6d 20 47 72 70 |stsÑ.... Prim Grp|
0090 20 25 20 53 65 6b 20 47-72 70 20 25 20 57 61 6e | % Sek G rp % Wan|
00a0 74 65 64 20 3e 25 3c 1f-00 00 00 50 72 69 6d 20 |ted >%<. ...Prim |
00b0 47 72 70 20 25 20 53 65-6b 20 47 72 70 20 25 20 |Grp % Se k Grp % |
00c0 57 61 6e 74 65 64 20 3e-25 3c d1 07 00 00 00 50 |Wanted > %<Ñ....P|
00d0 72 69 6e 74 65 72 07 00-00 00 50 72 69 6e 74 65 |rinter.. ..Printe|
00e0 72 d1 5b 00 00 00 50 72-6f 62 6c 65 6d 65 20 62 |rÑ[...Pr obleme b|
00f0 65 69 20 45 69 6e 74 72-61 67 20 69 6e 20 41 75 |ei Eintr ag in Au|
0100 66 74 7a 65 69 74 4a 6f-75 72 6e 61 6c 2e 20 42 |ftzeitJo urnal. B|
0110 69 74 74 65 20 77 65 6e-64 65 6e 20 53 69 65 20 |itte wen den Sie |
0120 73 69 63 68 20 61 6e 20-64 65 6e 20 53 79 73 74 |sich an  den Syst|
0130 65 6d 61 64 6d 69 6e 69-73 74 72 61 74 6f 72 20 |emadmini strator |
0140 21 57 00 00 00 50 72 6f-62 6c 65 6d 73 20 77 69 |!W...Pro blems wi|
0150 74 68 20 72 65 67 69 73-74 65 72 69 6e 67 20 74 |th regis tering t|
0160 6f 20 41 75 66 74 7a 65-69 74 6a 6f 75 72 6e 61 |o Auftze itjourna|
0170 6c 2e 20 50 6c 65 61 73-65 20 63 6f 6e 74 61 63 |l. Pleas e contac|
0180 74 20 79 6f 75 72 20 73-79 73 74 65 6d 2d 61 64 |t your s ystem-ad|
0190 6d 69 6e 69 73 74 72 61-74 6f 72 21 d1 45 00 00 |ministra tor!ÑE..|
01a0 00 50 72 6f 62 6c 65 6d-65 20 62 65 69 6d 20 56 |.Problem e beim V|
01b0 65 72 73 65 6e 64 65 6e-20 64 65 72 20 42 65 73 |ersenden  der Bes|
01c0 74 65 6c 6c 75 6e 67 21-20 4b 6f 6e 74 72 6f 6c |tellung!  Kontrol|
01d0 6c 69 65 72 65 6e 20 53-69 65 20 64 65 6e 20 53 |lieren S ie den S|
01e0 74 61 74 75 73 21 3d 00-00 00 50 72 6f 62 6c 65 |tatus!=. ..Proble|
01f0 6d 73 20 77 68 69 6c 65-20 64 69 73 70 61 74 63 |ms while  dispatc|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152b720, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152b720, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152b720, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152b720, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bc00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bc00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152a9f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 91 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 91
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (91 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 69 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-68 69 6e 67 20 70 75 72 |........ hing pur|
0010 63 68 61 73 65 21 20 50-6c 65 61 73 65 20 63 68 |chase! P lease ch|
0020 65 63 6b 20 74 68 65 20-73 74 61 74 75 73 21 d1 |eck the  status!Ñ|
0030 09 00 00 00 50 72 6f 63-65 73 73 65 73 09 00 00 |....Proc esses...|
0040 00 50 72 6f 63 65 73 73-65 73 d1 1a 00 00 00 50 |.Process esÑ....P|
0050 72 6f 63 65 73 73 69 6e-67 20 3c 25 3e 20 41 6e |rocessin g <%> An|
0060 7a 4b 6f 70 69 65 6e 20-25 1a 00 00 00 50 72 6f |zKopien  %....Pro|
0070 63 65 73 73 69 6e 67 20-3c 25 3e 20 4e 6f 20 63 |cessing  <%> No c|
0080 6f 70 69 65 73 20 25 d1-21 00 00 00 50 72 6f 64 |opies %Ñ !...Prod|
0090 41 72 74 4e 72 20 25 20-50 72 6f 64 41 72 74 43 |ArtNr %  ProdArtC|
00a0 4e 72 20 25 20 72 65 74-76 61 6c 20 25 21 00 00 |Nr % ret val %!..|
00b0 00 50 72 6f 64 41 72 74-4e 72 20 25 20 50 72 6f |.ProdArt Nr % Pro|
00c0 64 41 72 74 43 4e 72 20-25 20 72 65 74 76 61 6c |dArtCNr  % retval|
00d0 20 25 d1 0a 00 00 00 50-72 6f 64 75 63 74 69 6f | %Ñ....P roductio|
00e0 6e 0a 00 00 00 50 72 6f-64 75 63 74 69 6f 6e d1 |n....Pro ductionÑ|
00f0 0a 00 00 00 50 72 6f 64-75 6b 74 69 6f 6e 0a 00 |....Prod uktion..|
0100 00 00 50 72 6f 64 75 63-74 69 6f 6e d1 27 00 00 |..Produc tionÑ'..|
0110 00 50 72 6f 67 72 61 6d-6d 61 75 66 72 75 66 20 |.Program maufruf |
0120 6e 69 63 68 74 20 6d c3-b6 67 6c 69 63 68 3a 20 |nicht mà ¶glich: |
0130 28 25 2c 25 29 3a 20 25-22 00 00 00 50 72 6f 67 |(%,%): % "...Prog|
0140 72 61 6d 6d 20 63 61 6c-6c 20 69 6d 70 6f 73 73 |ramm cal l imposs|
0150 69 62 6c 65 3a 20 28 25-2c 25 29 3a 20 25 d1 07 |ible: (% ,%): %Ñ.|
0160 00 00 00 50 72 6f 6a 65-63 74 07 00 00 00 50 72 |...Proje ct....Pr|
0170 6f 6a 65 63 74 d1 0e 00-00 00 50 72 c3 a4 73 65 |ojectÑ.. ..Präse|
0180 6e 7a 7a 65 69 74 65 6e-10 00 00 00 41 74 74 65 |nzzeiten ....Atte|
0190 6e 64 61 6e 63 65 20 74-69 6d 65 73 d1 1c 00 00 |ndance t imesÑ...|
01a0 00 50 72 c3 bc 66 65 20-42 65 73 74 61 6e 64 74 |.Prüfe  Bestandt|
01b0 65 69 6c 20 25 20 4d 65-6e 67 65 20 25 1c 00 00 |eil % Me nge %...|
01c0 00 43 68 65 63 6b 20 63-6f 6d 70 6f 6e 65 6e 74 |.Check c omponent|
01d0 20 25 20 71 75 61 6e 74-69 74 79 20 25 d1 08 00 | % quant ity %Ñ..|
01e0 00 00 50 75 72 63 68 61-73 65 08 00 00 00 50 75 |..Purcha se....Pu|
01f0 72 63 68 61 73 65 d1 11-00 00 00 50 75 72 63 68 |rchaseÑ. ...Purch|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 69
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (69 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 73 65 20 70 72 6f 70 |........ ase prop|
0010 6f 73 61 6c 11 00 00 00-50 75 72 63 68 61 73 65 |osal.... Purchase|
0020 20 70 72 6f 70 6f 73 61-6c d1 09 00 00 00 50 75 | proposa lÑ....Pu|
0030 72 63 68 61 73 65 73 09-00 00 00 50 75 72 63 68 |rchases. ...Purch|
0040 61 73 65 73 d1 2e 00 00-00 51 2d 5a 65 69 6c 65 |asesÑ... .Q-Zeile|
0050 6e 20 6b c3 b6 6e 6e 65-6e 20 68 69 65 72 20 6e |n könne n hier n|
0060 69 63 68 74 20 62 65 61-72 62 65 69 74 65 74 20 |icht bea rbeitet |
0070 77 65 72 64 65 6e 21 1e-00 00 00 51 20 6c 69 6e |werden!. ...Q lin|
0080 65 73 20 63 61 6e 6e 6f-74 20 62 65 20 65 64 69 |es canno t be edi|
0090 74 65 64 20 68 65 72 65-21 d1 0d 00 00 00 52 65 |ted here !Ñ....Re|
00a0 61 6c 6c 6f 63 61 74 69-6f 6e 73 0d 00 00 00 52 |allocati ons....R|
00b0 65 61 6c 6c 6f 63 61 74-69 6f 6e 73 d1 0b 00 00 |eallocat ionsÑ...|
00c0 00 52 65 63 68 6e 75 6e-67 65 6e 3a 09 00 00 00 |.Rechnun gen:....|
00d0 49 6e 76 6f 69 63 65 73-3a d1 11 00 00 00 52 65 |Invoices :Ñ....Re|
00e0 63 68 6e 75 6e 67 73 6e-75 6d 6d 65 72 6e 3a 10 |chnungsn ummern:.|
00f0 00 00 00 49 6e 76 6f 69-63 65 20 6e 75 6d 62 65 |...Invoi ce numbe|
0100 72 73 3a d1 0b 00 00 00-52 65 63 68 74 73 6b 6c |rs:Ñ.... Rechtskl|
0110 69 63 6b 0b 00 00 00 72-69 67 68 74 20 63 6c 69 |ick....r ight cli|
0120 63 6b d1 17 00 00 00 52-65 6d 69 6e 64 65 72 20 |ckÑ....R eminder |
0130 61 64 6d 69 6e 69 73 74-72 61 74 69 6f 6e 17 00 |administ ration..|
0140 00 00 52 65 6d 69 6e 64-65 72 20 61 64 6d 69 6e |..Remind er admin|
0150 69 73 74 72 61 74 69 6f-6e d1 09 00 00 00 52 65 |istratio nÑ....Re|
0160 6d 69 6e 64 65 72 73 09-00 00 00 52 65 6d 69 6e |minders. ...Remin|
0170 64 65 72 73 d1 0e 00 00-00 52 65 70 72 65 73 65 |dersÑ... .Represe|
0180 6e 74 61 74 69 76 65 0e-00 00 00 52 65 70 72 65 |ntative. ...Repre|
0190 73 65 6e 74 61 74 69 76-65 d1 19 00 00 00 52 65 |sentativ eÑ....Re|
01a0 73 75 6c 74 61 74 20 4c-45 56 3d 25 20 4d 45 47 |sultat L EV=% MEG|
01b0 3d 25 20 4d 45 3d 25 17-00 00 00 52 65 73 75 6c |=% ME=%. ...Resul|
01c0 74 20 4c 45 56 3d 25 20-4d 45 47 3d 25 20 4d 45 |t LEV=%  MEG=% ME|
01d0 3d 25 d1 2a 00 00 00 52-c3 bc 63 6b 77 c3 a4 72 |=%Ñ*...R ückwär|
01e0 74 73 2d 53 75 63 68 65-20 6e 6f 63 68 20 6e 69 |ts-Suche  noch ni|
01f0 63 68 74 20 75 6e 74 65-72 73 74 c3 bc 74 7a 74 |cht unte rstützt|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152be90, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152cd50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-21 24 00 00 00 52 65 76 |........ !$...Rev|
0010 65 72 73 65 20 73 65 61-72 63 68 20 69 73 20 6e |erse sea rch is n|
0020 6f 74 20 79 65 74 20 73-75 70 70 6f 72 74 65 64 |ot yet s upported|
0030 21 d1 2e 00 00 00 53 3a-20 6b 65 69 6e 65 20 41 |!Ñ....S:  keine A|
0040 72 74 69 6b 65 6c 76 6f-72 73 63 68 72 69 66 74 |rtikelvo rschrift|
0050 20 66 c3 bc 72 20 25 2c-20 66 61 6c 6c 74 68 72 | für %,  fallthr|
0060 6f 75 67 68 2b 00 00 00-53 3a 20 4e 6f 20 61 72 |ough+... S: No ar|
0070 74 69 63 6c 65 20 72 65-67 75 6c 61 74 69 6f 6e |ticle re gulation|
0080 20 66 6f 72 20 25 2c 20-66 61 6c 6c 74 68 72 6f | for %,  fallthro|
0090 75 67 68 d1 29 00 00 00-53 48 44 42 2d 54 65 6d |ughÑ)... SHDB-Tem|
00a0 70 6c 61 74 65 20 3c 25-3e 3a 20 44 61 74 65 69 |plate <% >: Datei|
00b0 20 65 78 69 73 74 69 65-72 74 20 6e 69 63 68 74 | existie rt nicht|
00c0 2e 26 00 00 00 53 48 44-42 20 74 65 6d 70 6c 61 |.&...SHD B templa|
00d0 74 65 20 3c 25 3e 3a 20-46 69 6c 65 20 64 6f 65 |te <%>:  File doe|
00e0 73 20 6e 6f 74 20 65 78-69 73 74 d1 33 00 00 00 |s not ex istÑ3...|
00f0 53 48 44 42 2d 54 65 6d-70 6c 61 74 65 20 3c 25 |SHDB-Tem plate <%|
0100 3e 3a 20 44 61 74 65 69-20 6b 61 6e 6e 20 6e 69 |>: Datei  kann ni|
0110 63 68 74 20 67 65 6c 65-73 65 6e 20 77 65 72 64 |cht gele sen werd|
0120 65 6e 2e 24 00 00 00 53-48 44 42 20 74 65 6d 70 |en.$...S HDB temp|
0130 6c 61 74 65 20 3c 25 3e-3a 20 43 61 6e 6e 6f 74 |late <%> : Cannot|
0140 20 72 65 61 64 20 66 69-6c 65 2e d1 0f 00 00 00 | read fi le.Ñ....|
0150 53 51 4c 20 41 75 73 66-c3 bc 68 72 75 6e 67 0d |SQL Ausf ührung.|
0160 00 00 00 53 51 4c 20 65-78 65 63 75 74 69 6f 6e |...SQL e xecution|
0170 d1 05 00 00 00 53 61 6c-65 73 05 00 00 00 53 61 |Ñ....Sal es....Sa|
0180 6c 65 73 d1 0c 00 00 00-53 61 6d 6d 65 6c 70 72 |lesÑ.... Sammelpr|
0190 6f 66 69 6c 11 00 00 00-43 6f 6d 70 6f 73 69 74 |ofil.... Composit|
01a0 65 20 70 72 6f 66 69 6c-65 d1 14 00 00 00 53 63 |e profil eÑ....Sc|
01b0 68 65 6d 61 56 65 72 73-69 6f 6e 49 73 74 20 3d |hemaVers ionIst =|
01c0 20 25 17 00 00 00 41 63-74 75 61 6c 53 63 68 65 | %....Ac tualSche|
01d0 6d 61 56 65 72 73 69 6f-6e 20 3d 20 25 d1 0e 00 |maVersio n = %Ñ..|
01e0 00 00 53 63 68 6e 69 74-74 73 74 65 6c 6c 65 6e |..Schnit tstellen|
01f0 09 00 00 00 49 6e 74 65-72 66 61 63 65 d1 08 00 |....Inte rfaceÑ..|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152bf00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 53 65 6d 69 6e 61 |........ ..Semina|
0010 72 73 08 00 00 00 53 65-6d 69 6e 61 72 73 d1 0b |rs....Se minarsÑ.|
0020 00 00 00 53 65 6e 64 20-54 20 74 6f 20 25 0b 00 |...Send  T to %..|
0030 00 00 53 65 6e 64 20 54-20 74 6f 20 25 d1 09 00 |..Send T  to %Ñ..|
0040 00 00 53 65 6e 64 65 20-53 51 4c 08 00 00 00 53 |..Sende  SQL....S|
0050 65 6e 64 20 53 51 4c d1-06 00 00 00 53 68 69 66 |end SQLÑ ....Shif|
0060 74 73 06 00 00 00 53 68-69 66 74 73 d1 08 00 00 |ts....Sh iftsÑ...|
0070 00 53 68 69 70 70 69 6e-67 08 00 00 00 53 68 69 |.Shippin g....Shi|
0080 70 70 69 6e 67 d1 23 00-00 00 53 68 6f 72 74 63 |ppingÑ#. ..Shortc|
0090 75 74 73 20 66 75 6e 6b-74 69 6f 6e 69 65 72 65 |uts funk tioniere|
00a0 6e 20 68 69 65 72 20 6e-69 63 68 74 21 1a 00 00 |n hier n icht!...|
00b0 00 53 68 6f 72 74 63 75-74 73 20 64 6f 6e 27 74 |.Shortcu ts don't|
00c0 20 77 6f 72 6b 20 68 65-72 65 21 d1 20 00 00 00 | work he re!Ñ ...|
00d0 53 69 63 68 65 72 68 65-69 74 73 64 61 74 65 6e |Sicherhe itsdaten|
00e0 62 6c 61 74 74 20 73 70-65 69 63 68 65 72 6e 3a |blatt sp eichern:|
00f0 19 00 00 00 53 61 76 65-20 73 65 63 75 72 69 74 |....Save  securit|
0100 79 20 64 61 74 61 20 73-68 65 65 74 3a d1 36 00 |y data s heet:Ñ6.|
0110 00 00 53 69 65 20 28 25-29 20 68 61 62 65 6e 20 |..Sie (% ) haben |
0120 6b 65 69 6e 65 6e 20 5a-75 67 72 69 66 66 20 61 |keinen Z ugriff a|
0130 75 66 20 44 61 74 65 6e-20 64 65 73 20 41 72 74 |uf Daten  des Art|
0140 69 6b 65 6c 73 20 25 21-35 00 00 00 59 6f 75 20 |ikels %! 5...You |
0150 28 25 29 20 64 6f 20 6e-6f 74 20 68 61 76 65 20 |(%) do n ot have |
0160 61 63 63 65 73 73 20 74-6f 20 74 68 65 20 64 61 |access t o the da|
0170 74 61 20 66 6f 72 20 61-72 74 69 63 6c 65 20 25 |ta for a rticle %|
0180 21 d1 62 00 00 00 53 69-65 20 64 c3 bc 72 66 65 |!Ñb...Si e dürfe|
0190 6e 20 6d 69 74 20 4b 6f-6e 74 6f 20 25 20 6e 69 |n mit Ko nto % ni|
01a0 63 68 74 20 61 75 66 20-65 69 6e 65 6e 20 41 75 |cht auf  einen Au|
01b0 66 74 72 61 67 20 62 75-63 68 65 6e 2e 20 4f 72 |ftrag bu chen. Or|
01c0 64 6e 65 6e 20 53 69 65-20 65 72 73 74 20 65 69 |dnen Sie  erst ei|
01d0 6e 65 20 4b 61 6c 6b 75-6c 61 74 69 6f 6e 73 7a |ne Kalku lationsz|
01e0 65 69 6c 65 20 7a 75 21-57 00 00 00 59 6f 75 20 |eile zu! W...You |
01f0 63 61 6e 6e 6f 74 20 75-73 65 20 61 63 63 6f 75 |cannot u se accou|

token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d6b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152d840, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152e4e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152e570, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152e4e0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152e570, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152e850, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152e890, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 98 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 87 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 74 20 25 20 74 6f 20 |........ nt % to |
0010 62 6f 6f 6b 20 6f 6e 20-61 6e 20 6f 72 64 65 72 |book on  an order|
0020 2e 20 50 6c 65 61 73 65-20 61 6c 6c 6f 63 61 74 |. Please  allocat|
0030 65 20 61 20 63 61 6c 63-75 6c 61 74 69 6f 6e 20 |e a calc ulation |
0040 6c 69 6e 65 20 66 69 72-73 74 21 d1 6d 00 00 00 |line fir st!Ñm...|
0050 53 69 65 20 67 65 62 65-6e 20 65 69 6e 65 6e 20 |Sie gebe n einen |
0060 4c 65 69 74 77 c3 a4 68-72 75 6e 67 73 62 65 74 |Leitwäh rungsbet|
0070 72 61 67 20 61 6e 2c 20-64 65 72 20 6e 69 63 68 |rag an,  der nich|
0080 74 20 64 65 72 20 6b 6c-65 69 6e 73 74 65 6e 20 |t der kl einsten |
0090 45 69 6e 68 65 69 74 20-65 6e 74 73 70 72 69 63 |Einheit  entspric|
00a0 68 74 2e 20 53 6f 6c 6c-20 65 72 20 67 65 72 75 |ht. Soll  er geru|
00b0 6e 64 65 74 20 77 65 72-64 65 6e 20 3f 48 00 00 |ndet wer den ?H..|
00c0 00 54 68 65 20 6b 65 79-20 63 75 72 72 65 6e 63 |.The key  currenc|
00d0 79 20 61 6d 6f 75 6e 74-20 69 6e 64 69 63 61 74 |y amount  indicat|
00e0 65 64 20 64 6f 65 73 20-6e 6f 74 20 66 69 74 20 |ed does  not fit |
00f0 74 68 65 20 73 6d 61 6c-6c 65 73 74 20 75 6e 69 |the smal lest uni|
0100 74 2e 20 52 6f 75 6e 64-3f d1 27 00 00 00 53 69 |t. Round ?Ñ'...Si|
0110 65 20 68 61 62 65 6e 20-6b 65 69 6e 20 52 65 63 |e haben  kein Rec|
0120 68 74 20 66 c3 bc 72 20-64 65 6e 20 4c 61 67 65 |ht für  den Lage|
0130 72 6f 72 74 21 34 00 00-00 59 6f 75 20 64 6f 20 |rort!4.. .You do |
0140 6e 6f 74 20 68 61 76 65-20 74 68 65 20 72 69 67 |not have  the rig|
0150 68 74 20 66 6f 72 20 74-68 69 73 20 73 74 6f 72 |ht for t his stor|
0160 61 67 65 20 6c 6f 63 61-74 69 6f 6e 21 d1 33 00 |age loca tion!Ñ3.|
0170 00 00 53 69 65 20 68 61-62 65 6e 20 6b 65 69 6e |..Sie ha ben kein|
0180 20 52 65 63 68 74 2c 20-57 65 72 74 65 20 64 65 | Recht,  Werte de|
0190 72 20 53 74 75 66 65 20-25 20 7a 75 20 c3 a4 6e |r Stufe  % zu än|
01a0 64 65 72 6e 21 37 00 00-00 59 6f 75 20 64 6f 20 |dern!7.. .You do |
01b0 6e 6f 74 20 68 61 76 65-20 61 75 74 68 6f 72 69 |not have  authori|
01c0 73 61 74 69 6f 6e 20 74-6f 20 6d 6f 64 69 66 79 |sation t o modify|
01d0 20 73 74 61 67 65 20 25-20 76 61 6c 75 65 73 21 | stage %  values!|
01e0 d1 36 00 00 00 53 69 65-20 68 61 62 65 6e 20 6b |Ñ6...Sie  haben k|
01f0 65 69 6e 65 20 42 65 72-65 63 68 74 69 6e 67 75 |eine Ber echtingu|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 98
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ea40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (98 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 87
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (87 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 109 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 109
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (109 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 67 20 28 61 6c 6c 65 |........ ng (alle|
0010 20 41 62 72 65 63 68 6e-75 6e 67 73 6b 72 65 69 | Abrechn ungskrei|
0020 73 65 29 2b 00 00 00 59-6f 75 20 68 61 76 65 20 |se)+...Y ou have |
0030 6e 6f 20 61 75 74 68 6f-72 69 7a 61 74 69 6f 6e |no autho rization|
0040 20 28 61 6c 6c 20 73 75-62 2d 6c 65 64 67 65 72 | (all su b-ledger|
0050 73 29 d1 1f 00 00 00 53-69 65 20 6d c3 bc 73 73 |s)Ñ....S ie müss|
0060 65 6e 20 64 61 73 20 46-65 6c 64 20 25 20 65 69 |en das F eld % ei|
0070 6e 67 65 62 65 6e 12 00-00 00 4d 75 73 74 20 65 |ngeben.. ..Must e|
0080 6e 74 65 72 20 66 69 65-6c 64 20 25 d1 2d 00 00 |nter fie ld %Ñ-..|
0090 00 53 69 6e 64 20 53 69-65 20 73 69 63 68 65 72 |.Sind Si e sicher|
00a0 2c 20 64 61 73 73 20 53-69 65 20 25 20 4b 6f 70 |, dass S ie % Kop|
00b0 69 65 6e 20 6d c3 b6 63-68 74 65 6e 20 3f 1f 00 |ien möc hten ?..|
00c0 00 00 41 72 65 20 79 6f-75 20 73 75 72 65 20 79 |..Are yo u sure y|
00d0 6f 75 20 77 61 6e 74 20-25 20 63 6f 70 69 65 73 |ou want  % copies|
00e0 3f d1 0e 00 00 00 53 6f-4d 6f 44 69 4d 69 44 6f |?Ñ....So MoDiMiDo|
00f0 46 72 53 61 0e 00 00 00-53 75 4d 6f 54 75 57 65 |FrSa.... SuMoTuWe|
0100 54 68 46 72 53 61 d1 16-00 00 00 53 6f 66 6f 72 |ThFrSaÑ. ...Sofor|
0110 74 61 62 73 63 68 72 65-69 62 75 6e 67 20 47 57 |tabschre ibung GW|
0120 47 17 00 00 00 49 6d 6d-65 64 69 61 74 65 20 77 |G....Imm ediate w|
0130 72 69 74 65 2d 6f 66 66-20 47 57 47 d1 49 00 00 |rite-off  GWGÑI..|
0140 00 53 6f 6c 6c 20 64 69-65 20 53 74 61 6e 64 61 |.Soll di e Standa|
0150 72 64 2d 41 75 73 67 61-62 65 65 69 6e 68 65 69 |rd-Ausga beeinhei|
0160 74 20 6f 68 6e 65 20 52-c3 bc 63 6b 66 72 61 67 |t ohne R ückfrag|
0170 65 20 64 69 72 65 6b 74-20 76 65 72 77 65 6e 64 |e direkt  verwend|
0180 65 74 20 77 65 72 64 65-6e 3f 3a 00 00 00 55 73 |et werde n?:...Us|
0190 65 20 73 74 61 6e 64 61-72 64 20 6f 75 74 70 75 |e standa rd outpu|
01a0 74 20 75 6e 69 74 20 64-69 72 65 63 74 6c 79 20 |t unit d irectly |
01b0 77 69 74 68 6f 75 74 20-66 75 72 74 68 65 72 20 |without  further |
01c0 69 6e 71 75 69 72 79 3f-d1 06 00 00 00 53 6f 7a |inquiry? Ñ....Soz|
01d0 69 61 6c 06 00 00 00 53-6f 63 69 61 6c d1 15 00 |ial....S ocialÑ..|
01e0 00 00 53 70 61 6c 74 65-20 22 25 22 20 61 75 73 |..Spalte  "%" aus|
01f0 62 6c 65 6e 64 65 6e 0f-00 00 00 48 69 64 65 20 |blenden. ...Hide |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152ecd0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152eab0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 73 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 73
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (73 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-63 6f 6c 75 6d 6e 20 22 |........ column "|
0010 25 22 d1 15 00 00 00 53-70 61 6c 74 65 20 22 25 |%"Ñ....S palte "%|
0020 22 20 65 69 6e 62 6c 65-6e 64 65 6e 0f 00 00 00 |" einble nden....|
0030 53 68 6f 77 20 63 6f 6c-75 6d 6e 20 22 25 22 d1 |Show col umn "%"Ñ|
0040 1c 00 00 00 53 70 61 6c-74 65 20 22 25 22 20 77 |....Spal te "%" w|
0050 69 65 64 65 72 20 61 75-73 62 6c 65 6e 64 65 6e |ieder au sblenden|
0060 15 00 00 00 48 69 64 65-20 63 6f 6c 75 6d 6e 20 |....Hide  column |
0070 22 25 22 20 61 67 61 69-6e d1 1c 00 00 00 53 70 |"%" agai nÑ....Sp|
0080 61 6c 74 65 20 22 25 22-20 77 69 65 64 65 72 20 |alte "%"  wieder |
0090 65 69 6e 62 6c 65 6e 64-65 6e 15 00 00 00 53 68 |einblend en....Sh|
00a0 6f 77 20 63 6f 6c 75 6d-6e 20 22 25 22 20 61 67 |ow colum n "%" ag|
00b0 61 69 6e d1 07 00 00 00-53 70 61 77 6e 20 25 07 |ainÑ.... Spawn %.|
00c0 00 00 00 53 70 61 77 6e-20 25 d1 13 00 00 00 53 |...Spawn  %Ñ....S|
00d0 74 61 62 69 6c 69 74 79-20 64 61 74 61 20 62 61 |tability  data ba|
00e0 73 65 13 00 00 00 53 74-61 62 69 6c 69 74 79 20 |se....St ability |
00f0 64 61 74 61 20 62 61 73-65 d1 15 00 00 00 53 74 |data bas eÑ....St|
0100 61 62 69 6c 69 74 c3 a4-74 73 64 61 74 65 6e 62 |abilitä tsdatenb|
0110 61 6e 6b 13 00 00 00 53-74 61 62 69 6c 69 74 79 |ank....S tability|
0120 20 64 61 74 61 20 62 61-73 65 d1 26 00 00 00 53 | data ba seÑ&...S|
0130 74 61 6e 64 61 72 64 2d-41 75 73 67 61 62 65 65 |tandard- Ausgabee|
0140 69 6e 68 65 69 74 20 3c-25 3e 20 75 6e 62 65 6b |inheit < %> unbek|
0150 61 6e 6e 74 21 21 00 00-00 53 74 61 6e 64 61 72 |annt!!.. .Standar|
0160 64 20 6f 75 74 70 75 74-20 75 6e 69 74 20 3c 25 |d output  unit <%|
0170 3e 20 75 6e 6b 6e 6f 77-6e 21 d1 38 00 00 00 53 |> unknow n!Ñ8...S|
0180 74 61 6e 64 61 72 64 2d-41 75 73 67 61 62 65 65 |tandard- Ausgabee|
0190 69 6e 68 65 69 74 20 66-c3 bc 72 20 25 2f 25 2f |inheit f ür %/%/|
01a0 25 20 77 75 72 64 65 20-76 6f 72 65 69 6e 67 65 |% wurde  voreinge|
01b0 73 74 65 6c 6c 74 2e 26-00 00 00 53 74 61 6e 64 |stellt.& ...Stand|
01c0 61 72 64 20 6f 75 74 70-75 74 20 75 6e 69 74 20 |ard outp ut unit |
01d0 66 6f 72 20 25 2f 25 2f-25 20 70 72 65 73 65 74 |for %/%/ % preset|
01e0 2e d1 27 00 00 00 53 74-61 6e 64 61 72 64 45 69 |.Ñ'...St andardEi|
01f0 6e 73 74 65 6c 6c 75 6e-67 3a 20 46 65 6c 64 20 |nstellun g: Feld |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152f6d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152fe40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x152fe40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-3c 25 3e 20 75 6e 62 65 |........ <%> unbe|
0010 6b 61 6e 6e 74 29 00 00-00 53 74 61 6e 64 61 72 |kannt).. .Standar|
0020 64 20 63 6f 6e 66 69 67-75 72 61 74 69 6f 6e 3a |d config uration:|
0030 20 46 69 65 6c 64 20 3c-25 3e 20 75 6e 6b 6e 6f | Field < %> unkno|
0040 77 6e d1 10 00 00 00 53-74 61 6e 64 69 6e 67 20 |wnÑ....S tanding |
0050 65 6e 74 72 69 65 73 10-00 00 00 53 74 61 6e 64 |entries. ...Stand|
0060 69 6e 67 20 65 6e 74 72-69 65 73 d1 3e 00 00 00 |ing entr iesÑ>...|
0070 53 74 61 6e 64 6f 72 74-20 25 3a 20 20 75 6e 67 |Standort  %:  ung|
0080 c3 bc 6c 74 69 67 65 20-41 6e 67 61 62 65 6e 20 |ültige  Angaben |
0090 66 c3 bc 72 20 64 69 65-20 41 72 62 65 69 74 73 |für die  Arbeits|
00a0 7a 65 69 74 2f 4c 65 6b-74 69 6f 6e 65 6e 35 00 |zeit/Lek tionen5.|
00b0 00 00 4c 6f 63 61 74 69-6f 6e 20 25 3a 20 49 6e |..Locati on %: In|
00c0 76 61 6c 69 64 20 69 6e-64 69 63 61 74 69 6f 6e |valid in dication|
00d0 73 20 66 6f 72 20 77 6f-72 6b 20 74 69 6d 65 2f |s for wo rk time/|
00e0 6c 65 73 73 6f 6e 73 d1-24 00 00 00 53 74 61 6e |lessonsÑ $...Stan|
00f0 64 6f 72 74 20 6b 61 6e-6e 20 6e 69 63 68 74 20 |dort kan n nicht |
0100 65 72 6d 69 74 74 65 6c-74 20 77 65 72 64 65 6e |ermittel t werden|
0110 19 00 00 00 43 61 6e 6e-6f 74 20 64 65 74 65 72 |....Cann ot deter|
0120 6d 69 6e 65 20 6c 6f 63-61 74 69 6f 6e d1 3f 00 |mine loc ationÑ?.|
0130 00 00 53 74 61 6e 64 6f-72 74 2d 42 65 73 74 69 |..Stando rt-Besti|
0140 6d 6d 75 6e 67 20 75 6e-6b 6c 61 72 20 21 20 28 |mmung un klar ! (|
0150 56 61 72 69 61 62 6c 65-20 53 74 61 6e 64 6f 72 |Variable  Standor|
0160 74 20 68 61 74 20 57 65-72 74 20 3e 25 3c 20 3f |t hat We rt >%< ?|
0170 29 30 00 00 00 4c 6f 63-61 74 69 6e 67 20 75 6e |)0...Loc ating un|
0180 63 6c 65 61 72 21 20 28-76 61 72 69 61 62 6c 65 |clear! ( variable|
0190 20 6c 6f 63 61 74 69 6f-6e 20 76 61 6c 75 65 20 | locatio n value |
01a0 3e 25 3c 3f 29 d1 13 00-00 00 53 74 61 72 74 65 |>%<?)Ñ.. ..Starte|
01b0 20 56 65 72 61 72 62 65-69 74 75 6e 67 10 00 00 | Verarbe itung...|
01c0 00 53 74 61 72 74 20 70-72 6f 63 65 73 73 69 6e |.Start p rocessin|
01d0 67 d1 15 00 00 00 53 74-61 74 69 73 74 69 63 73 |gÑ....St atistics|
01e0 20 74 75 72 6e 65 64 20-6f 66 66 15 00 00 00 53 | turned  off....S|
01f0 74 61 74 69 73 74 69 63-73 20 74 75 72 6e 65 64 |tatistic s turned|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 6f 66 66 d1 14 00 00 |........  offÑ...|
0010 00 53 74 61 74 69 73 74-69 63 73 20 74 75 72 6e |.Statist ics turn|
0020 65 64 20 6f 6e 14 00 00-00 53 74 61 74 69 73 74 |ed on... .Statist|
0030 69 63 73 20 74 75 72 6e-65 64 20 6f 6e d1 09 00 |ics turn ed onÑ..|
0040 00 00 53 74 61 74 69 73-74 69 6b 0a 00 00 00 53 |..Statis tik....S|
0050 74 61 74 69 73 74 69 63-73 d1 06 00 00 00 53 74 |tatistic sÑ....St|
0060 61 74 75 73 06 00 00 00-53 74 61 74 75 73 d1 07 |atus.... StatusÑ.|
0070 00 00 00 53 74 65 75 65-72 6e 05 00 00 00 54 61 |...Steue rn....Ta|
0080 78 65 73 d1 05 00 00 00-53 74 6f 63 6b 05 00 00 |xesÑ.... Stock...|
0090 00 53 74 6f 63 6b d1 2d-00 00 00 53 74 72 61 73 |.StockÑ- ...Stras|
00a0 73 65 20 64 65 73 20 41-6e 73 70 72 65 63 68 70 |se des A nsprechp|
00b0 61 72 74 6e 65 72 73 20-3e 41 64 72 4e 72 20 25 |artners  >AdrNr %|
00c0 3c 20 66 65 68 6c 74 21-2c 00 00 00 41 64 72 65 |< fehlt! ,...Adre|
00d0 73 73 20 6f 66 20 63 6f-6e 74 61 63 74 20 70 65 |ss of co ntact pe|
00e0 72 73 6f 6e 20 3e 61 64-72 20 6e 6f 20 25 3c 20 |rson >ad r no %< |
00f0 6d 69 73 73 69 6e 67 21-d1 15 00 00 00 53 75 62 |missing! Ñ....Sub|
0100 73 74 61 6e 63 65 73 20-6f 66 20 63 6f 6e 74 65 |stances  of conte|
0110 6e 74 15 00 00 00 53 75-62 73 74 61 6e 63 65 73 |nt....Su bstances|
0120 20 6f 66 20 63 6f 6e 74-65 6e 74 d1 0e 00 00 00 | of cont entÑ....|
0130 53 75 63 68 65 31 20 45-41 4e 31 33 20 25 0f 00 |Suche1 E AN13 %..|
0140 00 00 53 65 61 72 63 68-31 20 45 41 4e 31 33 20 |..Search 1 EAN13 |
0150 25 d1 08 00 00 00 53 75-70 70 6c 69 65 72 08 00 |%Ñ....Su pplier..|
0160 00 00 53 75 70 70 6c 69-65 72 d1 06 00 00 00 53 |..Suppli erÑ....S|
0170 79 73 74 65 6d 06 00 00-00 53 79 73 74 65 6d d1 |ystem... .SystemÑ|
0180 06 00 00 00 54 3a 20 25-20 25 07 00 00 00 54 3a |....T: %  %....T:|
0190 20 20 25 20 25 d1 05 00-00 00 54 61 73 6b 73 05 |  % %Ñ.. ..Tasks.|
01a0 00 00 00 54 61 73 6b 73-d1 0c 00 00 00 54 65 69 |...Tasks Ñ....Tei|
01b0 6c 6e 65 68 6d 65 72 20-25 0d 00 00 00 50 61 72 |lnehmer  %....Par|
01c0 74 69 63 69 70 61 6e 74-20 25 d1 34 00 00 00 54 |ticipant  %Ñ4...T|
01d0 65 6c 65 66 6f 6e 6e 75-6d 6d 65 72 20 64 65 73 |elefonnu mmer des|
01e0 20 41 6e 73 70 72 65 63-68 70 61 72 74 6e 65 72 | Ansprec hpartner|
01f0 73 20 3e 41 64 72 4e 72-20 25 3c 20 66 65 68 6c |s >AdrNr  %< fehl|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1530650, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15303d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310b0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15310f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 6e 21 31 00 00 00 50 |........ en!1...P|
0010 68 6f 6e 65 20 6e 75 6d-62 65 72 20 6f 66 20 63 |hone num ber of c|
0020 6f 6e 74 61 63 74 20 70-65 72 73 6f 6e 20 3e 41 |ontact p erson >A|
0030 64 72 4e 6f 20 25 3c 20-6d 69 73 73 69 6e 67 21 |drNo %<  missing!|
0040 d1 24 00 00 00 54 65 6c-65 66 6f 6e 6e 75 6d 6d |Ñ$...Tel efonnumm|
0050 65 72 20 66 65 68 6c 74-20 69 6e 20 64 65 72 20 |er fehlt  in der |
0060 41 64 72 65 73 73 65 20-21 20 00 00 00 50 68 6f |Adresse  ! ...Pho|
0070 6e 65 20 6e 75 6d 62 65-72 20 6d 69 73 73 69 6e |ne numbe r missin|
0080 67 20 69 6e 20 61 64 64-72 65 73 73 21 d1 12 00 |g in add ress!Ñ..|
0090 00 00 54 65 72 6d 69 6e-65 20 4f 66 66 65 6e 27 |..Termin e Offen'|
00a0 2e 2e 27 3a 14 00 00 00-4f 70 65 6e 20 64 65 61 |..':.... Open dea|
00b0 64 6c 69 6e 65 73 20 27-2e 2e 27 3a d1 19 00 00 |dlines ' ..':Ñ...|
00c0 00 54 65 72 6d 69 6e 65-20 c3 9c 62 65 72 66 c3 |.Termine  Ã.berfÃ|
00d0 a4 6c 6c 69 67 27 2e 2e-27 3a 17 00 00 00 4f 76 |¤llig'.. ':....Ov|
00e0 65 72 64 75 65 20 64 65-61 64 6c 69 6e 65 73 20 |erdue de adlines |
00f0 27 2e 2e 27 3a d1 12 00-00 00 54 65 72 6d 69 6e |'..':Ñ.. ..Termin|
0100 76 65 72 73 63 68 69 65-62 75 6e 67 15 00 00 00 |verschie bung....|
0110 44 65 61 64 6c 69 6e 65-20 70 6f 73 74 70 6f 6e |Deadline  postpon|
0120 65 6d 65 6e 74 d1 04 00-00 00 54 6f 44 6f 05 00 |ementÑ.. ..ToDo..|
0130 00 00 54 61 73 6b 73 d1-11 00 00 00 54 72 61 6e |..TasksÑ ....Tran|
0140 73 66 65 72 64 61 74 65-6e 62 61 6e 6b 12 00 00 |sferdate nbank...|
0150 00 54 72 61 6e 73 66 65-72 20 64 61 74 61 20 62 |.Transfe r data b|
0160 61 73 65 d1 0d 00 00 00-54 72 61 6e 73 6d 69 73 |aseÑ.... Transmis|
0170 73 69 6f 6e 73 0d 00 00-00 54 72 61 6e 73 6d 69 |sions... .Transmi|
0180 73 73 69 6f 6e 73 d1 18-00 00 00 54 79 70 20 25 |ssionsÑ. ...Typ %|
0190 20 2d 3e 20 6d 61 70 70-65 64 20 74 6f 20 25 20 | -> mapp ed to % |
01a0 28 25 29 19 00 00 00 54-79 70 65 20 25 20 2d 3e |(%)....T ype % ->|
01b0 20 6d 61 70 70 65 64 20-74 6f 20 25 20 28 25 29 | mapped  to % (%)|
01c0 d1 16 00 00 00 55 4e 42-45 4b 41 4e 4e 54 45 53 |Ñ....UNB EKANNTES|
01d0 20 46 4f 52 4d 41 54 20-3c 25 3e 12 00 00 00 46 | FORMAT  <%>....F|
01e0 4f 52 4d 41 54 20 3c 25-3e 20 55 4e 4b 4e 4f 57 |ORMAT <% > UNKNOW|
01f0 4e d1 11 00 00 00 55 65-62 65 72 66 6c 2e 20 4e |NÑ....Ue berfl. N|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531950, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-75 6d 6d 65 72 6e 3a 11 |........ ummern:.|
0010 00 00 00 4f 76 65 72 66-6c 6f 77 20 6e 75 6d 62 |...Overf low numb|
0020 65 72 73 3a d1 27 00 00-00 55 65 62 65 72 66 6c |ers:Ñ'.. .Ueberfl|
0030 c3 bc 73 73 69 67 65 20-45 69 6e 74 72 c3 a4 67 |üssige  Einträg|
0040 65 20 28 25 29 20 65 6e-74 66 65 72 6e 65 6e 3f |e (%) en tfernen?|
0050 1d 00 00 00 44 65 6c 65-74 65 20 72 65 64 75 6e |....Dele te redun|
0060 64 61 6e 74 20 65 6e 74-72 69 65 73 20 28 25 29 |dant ent ries (%)|
0070 3f d1 0f 00 00 00 55 65-62 65 72 6d 69 74 74 6c |?Ñ....Ue bermittl|
0080 75 6e 67 65 6e 0d 00 00-00 54 72 61 6e 73 6d 69 |ungen... .Transmi|
0090 73 73 69 6f 6e 73 d1 1b-00 00 00 55 6d 73 65 74 |ssionsÑ. ...Umset|
00a0 7a 65 6e 20 41 62 44 61-74 75 6d 20 62 65 69 20 |zen AbDa tum bei |
00b0 25 3a 20 25 20 25 1c 00-00 00 43 6f 6e 76 65 72 |%: % %.. ..Conver|
00c0 74 20 46 72 6f 6d 44 61-74 65 20 66 72 6f 6d 20 |t FromDa te from |
00d0 25 3a 20 25 20 25 d1 19-00 00 00 55 6e 62 65 6b |%: % %Ñ. ...Unbek|
00e0 61 6e 6e 74 65 20 42 65-77 65 67 75 6e 67 73 61 |annte Be wegungsa|
00f0 72 74 20 21 19 00 00 00-55 6e 6b 6e 6f 77 6e 20 |rt !.... Unknown |
0100 74 72 61 6e 73 61 63 74-69 6f 6e 20 74 79 70 65 |transact ion type|
0110 21 d1 1c 00 00 00 55 6e-62 65 6b 61 6e 6e 74 65 |!Ñ....Un bekannte|
0120 20 50 65 72 73 6f 6e 2f-47 72 75 70 70 65 3a 20 | Person/ Gruppe: |
0130 25 21 23 00 00 00 55 6e-6b 6e 6f 77 6e 20 70 65 |%!#...Un known pe|
0140 72 73 6f 6e 2f 20 67 72-6f 75 70 20 6f 66 20 70 |rson/ gr oup of p|
0150 65 6f 70 6c 65 3a 20 25-21 d1 15 00 00 00 55 6e |eople: % !Ñ....Un|
0160 62 65 6b 61 6e 6e 74 65-20 53 61 63 68 41 72 74 |bekannte  SachArt|
0170 20 25 21 16 00 00 00 55-6e 6b 6e 6f 77 6e 20 6f | %!....U nknown o|
0180 62 6a 65 63 74 20 74 79-70 65 20 25 21 d1 15 00 |bject ty pe %!Ñ..|
0190 00 00 55 6e 62 65 6b 61-6e 6e 74 65 72 20 41 75 |..Unbeka nnter Au|
01a0 66 74 72 61 67 20 21 0e-00 00 00 4f 72 64 65 72 |ftrag !. ...Order|
01b0 20 75 6e 6b 6e 6f 77 6e-21 d1 19 00 00 00 55 6e | unknown !Ñ....Un|
01c0 62 65 6b 61 6e 6e 74 65-72 20 53 75 63 68 75 6d |bekannte r Suchum|
01d0 66 61 6e 67 3a 20 25 17-00 00 00 55 6e 6b 6e 6f |fang: %. ...Unkno|
01e0 77 6e 20 73 65 61 72 63-68 20 73 63 6f 70 65 3a |wn searc h scope:|
01f0 20 25 d1 16 00 00 00 55-6e 62 65 6b 61 6e 6e 74 | %Ñ....U nbekannt|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1531910, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 73 20 42 61 6e 6b 6b |........ es Bankk|
0010 6f 6e 74 6f 21 15 00 00-00 42 61 6e 6b 20 61 63 |onto!... .Bank ac|
0020 63 6f 75 6e 74 20 75 6e-6b 6e 6f 77 6e 21 d1 22 |count un known!Ñ"|
0030 00 00 00 55 6e 64 65 66-69 6e 69 65 72 74 65 20 |...Undef inierte |
0040 54 61 73 74 65 6e 62 65-6c 65 67 75 6e 67 20 66 |Tastenbe legung f|
0050 c3 bc 72 20 25 1e 00 00-00 55 6e 64 65 66 69 6e |ür %... .Undefin|
0060 65 64 20 61 73 73 69 67-6e 6d 65 6e 74 20 66 6f |ed assig nment fo|
0070 72 20 6b 65 79 20 25 d1-2f 00 00 00 55 6e 65 72 |r key %Ñ /...Uner|
0080 6c 61 75 62 74 65 72 20-c3 9c 62 65 72 67 61 62 |laubter  Ã.bergab|
0090 65 6d 65 63 68 61 6e 69-73 6d 75 73 20 28 50 6f |emechani smus (Po|
00a0 73 4e 72 20 66 65 68 6c-74 29 21 2c 00 00 00 49 |sNr fehl t)!,...I|
00b0 6e 76 61 6c 69 64 20 64-65 6c 69 76 65 72 79 20 |nvalid d elivery |
00c0 6d 65 63 68 61 6e 69 73-6d 20 28 70 6f 73 20 6e |mechanis m (pos n|
00d0 6f 20 6d 69 73 73 69 6e-67 29 21 d1 19 00 00 00 |o missin g)!Ñ....|
00e0 55 6e 67 c3 bc 6c 74 69-67 65 20 25 20 50 72 c3 |Ungülti ge % PrÃ|
00f0 bc 66 7a 69 66 66 65 72-21 16 00 00 00 49 6e 76 |¼fziffer !....Inv|
0100 61 6c 69 64 20 63 68 65-63 6b 20 64 69 67 69 74 |alid che ck digit|
0110 20 25 21 d1 14 00 00 00-55 6e 67 c3 bc 6c 74 69 | %!Ñ.... Ungülti|
0120 67 65 20 45 69 6e 67 61-62 65 20 25 0f 00 00 00 |ge Einga be %....|
0130 49 6e 76 61 6c 69 64 20-69 6e 70 75 74 20 25 d1 |Invalid  input %Ñ|
0140 1e 00 00 00 55 6e 67 c3-bc 6c 74 69 67 65 20 4e |....Ungà ¼ltige N|
0150 75 74 7a 65 6e 61 6e 67-61 62 65 20 3c 25 3e 2c |utzenang abe <%>,|
0160 20 25 20 00 00 00 49 6e-76 61 6c 69 64 20 69 6e | % ...In valid in|
0170 64 69 63 61 74 69 6f 6e-20 6f 66 20 75 73 65 20 |dication  of use |
0180 3c 25 3e 2c 20 25 d1 21-00 00 00 55 6e 67 c3 bc |<%>, %Ñ! ...Ungü|
0190 6c 74 69 67 65 20 51 75-61 6e 74 69 66 69 7a 69 |ltige Qu antifizi|
01a0 65 72 75 6e 67 20 3c 25-3e 2c 20 25 1c 00 00 00 |erung <% >, %....|
01b0 49 6e 76 61 6c 69 64 20-71 75 61 6e 74 69 66 69 |Invalid  quantifi|
01c0 63 61 74 69 6f 6e 20 3c-25 3e 2c 25 d1 17 00 00 |cation < %>,%Ñ...|
01d0 00 55 6e 67 c3 bc 6c 74-69 67 65 20 53 4f 41 50 |.Ungült ige SOAP|
01e0 20 55 52 4c 3a 5c 6e 25-15 00 00 00 49 6e 76 61 | URL:\n% ....Inva|
01f0 6c 69 64 20 53 4f 41 50-20 55 52 4c 3a 20 5c 6e |lid SOAP  URL: \n|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1280480, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118f8f0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-25 d1 1b 00 00 00 55 6e |........ %Ñ....Un|
0010 67 c3 bc 6c 74 69 67 65-20 56 50 45 2d 56 6f 72 |gültige  VPE-Vor|
0020 6c 61 67 65 20 3c 25 3e-21 16 00 00 00 49 6e 76 |lage <%> !....Inv|
0030 61 6c 69 64 20 50 55 20-6d 61 73 74 65 72 20 3c |alid PU  master <|
0040 25 3e 21 d1 1e 00 00 00-55 6e 67 c3 bc 6c 74 69 |%>!Ñ.... Ungülti|
0050 67 65 20 56 65 72 70 61-63 6b 75 6e 67 73 65 69 |ge Verpa ckungsei|
0060 6e 68 65 69 74 21 17 00-00 00 49 6e 76 61 6c 69 |nheit!.. ..Invali|
0070 64 20 70 61 63 6b 61 67-69 6e 67 20 75 6e 69 74 |d packag ing unit|
0080 21 d1 3f 00 00 00 55 6e-67 c3 bc 6c 74 69 67 65 |!Ñ?...Un gültige|
0090 20 5a 65 69 6c 65 6e 41-72 74 20 3c 25 3e 20 62 | ZeilenA rt <%> b|
00a0 65 69 20 4c 6f 68 6e 6c-69 73 74 65 6e 2d 50 61 |ei Lohnl isten-Pa|
00b0 72 61 6d 65 74 65 72 20-25 20 28 65 72 77 61 72 |rameter  % (erwar|
00c0 74 65 20 50 41 3f 00 00-00 55 6e 67 c3 bc 6c 74 |te PA?.. .Ungült|
00d0 69 67 65 20 5a 65 69 6c-65 6e 41 72 74 20 3c 25 |ige Zeil enArt <%|
00e0 3e 20 62 65 69 20 4c 6f-68 6e 6c 69 73 74 65 6e |> bei Lo hnlisten|
00f0 2d 50 61 72 61 6d 65 74-65 72 20 25 20 28 65 72 |-Paramet er % (er|
0100 77 61 72 74 65 20 50 41-d1 47 00 00 00 55 6e 67 |warte PA ÑG...Ung|
0110 c3 bc 6c 74 69 67 65 20-5a 65 69 6c 65 6e 41 72 |ültige  ZeilenAr|
0120 74 20 3c 25 3e 20 62 65-69 20 4c 6f 68 6e 6c 69 |t <%> be i Lohnli|
0130 73 74 65 6e 2d 50 61 72-61 6d 65 74 65 72 20 25 |sten-Par ameter %|
0140 20 28 65 72 77 61 72 74-65 20 50 41 20 6f 64 65 | (erwart e PA ode|
0150 72 20 4c 41 47 00 00 00-55 6e 67 c3 bc 6c 74 69 |r LAG... Ungülti|
0160 67 65 20 5a 65 69 6c 65-6e 41 72 74 20 3c 25 3e |ge Zeile nArt <%>|
0170 20 62 65 69 20 4c 6f 68-6e 6c 69 73 74 65 6e 2d | bei Loh nlisten-|
0180 50 61 72 61 6d 65 74 65-72 20 25 20 28 65 72 77 |Paramete r % (erw|
0190 61 72 74 65 20 50 41 20-6f 64 65 72 20 4c 41 d1 |arte PA  oder LAÑ|
01a0 1b 00 00 00 55 6e 67 c3-bc 6c 74 69 67 65 20 5a |....Ungà ¼ltige Z|
01b0 65 69 74 64 61 75 65 72-20 3c 25 3e 2c 20 25 17 |eitdauer  <%>, %.|
01c0 00 00 00 49 6e 76 61 6c-69 64 20 64 75 72 61 74 |...Inval id durat|
01d0 69 6f 6e 20 3c 25 3e 2c-20 25 d1 17 00 00 00 55 |ion <%>,  %Ñ....U|
01e0 6e 67 c3 bc 6c 74 69 67-65 72 20 41 75 73 64 72 |ngültig er Ausdr|
01f0 75 63 6b 2c 20 25 10 00-00 00 49 6e 76 61 6c 69 |uck, %.. ..Invali|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1187760, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11877a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 71 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 71
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (71 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 20 70 72 69 6e 74 2c |........ d print,|
0010 20 25 d1 31 00 00 00 55-6e 67 c3 bc 6c 74 69 67 | %Ñ1...U ngültig|
0020 65 72 20 42 49 43 2d 43-6f 64 65 20 25 20 28 65 |er BIC-C ode % (e|
0030 72 77 61 72 74 65 20 2e-2e 2e 5b 41 2d 5a 30 2d |rwarte . ..[A-Z0-|
0040 39 5d 7b 33 7d 24 20 29-2e 00 00 00 49 6e 76 61 |9]{3}$ ) ....Inva|
0050 6c 69 64 20 42 49 43 20-63 6f 64 65 20 25 20 28 |lid BIC  code % (|
0060 65 78 70 65 63 74 65 64-20 2e 2e 2e 5b 41 2d 5a |expected  ...[A-Z|
0070 30 2d 39 5d 7b 33 7d 24-20 29 d1 32 00 00 00 55 |0-9]{3}$  )Ñ2...U|
0080 6e 67 c3 bc 6c 74 69 67-65 72 20 42 49 43 2d 43 |ngültig er BIC-C|
0090 6f 64 65 20 25 20 28 65-72 77 61 72 74 65 20 38 |ode % (e rwarte 8|
00a0 20 6f 64 65 72 20 31 31-20 5a 65 69 63 68 65 6e | oder 11  Zeichen|
00b0 29 2c 00 00 00 49 6e 76-61 6c 69 64 20 42 49 43 |),...Inv alid BIC|
00c0 20 63 6f 64 65 20 25 20-28 38 20 6f 72 20 31 31 | code %  (8 or 11|
00d0 20 64 69 67 69 74 73 20-65 78 70 65 63 74 65 64 | digits  expected|
00e0 29 d1 41 00 00 00 55 6e-67 c3 bc 6c 74 69 67 65 |)ÑA...Un gültige|
00f0 72 20 42 49 43 2d 43 6f-64 65 20 25 20 28 65 72 |r BIC-Co de % (er|
0100 77 61 72 74 65 20 5e 5b-41 2d 5a 5d 7b 36 7d 5b |warte ^[ A-Z]{6}[|
0110 41 2d 5a 32 2d 39 5d 5b-41 2d 4e 50 2d 5a 30 2d |A-Z2-9][ A-NP-Z0-|
0120 39 5d 2e 2e 2e 20 29 3e-00 00 00 49 6e 76 61 6c |9]... )> ...Inval|
0130 69 64 20 42 49 43 20 63-6f 64 65 20 25 20 28 65 |id BIC c ode % (e|
0140 78 70 65 63 74 65 64 20-5e 5b 41 2d 5a 5d 7b 36 |xpected  ^[A-Z]{6|
0150 7d 5b 41 2d 5a 32 2d 39-5d 5b 41 2d 4e 50 2d 5a |}[A-Z2-9 ][A-NP-Z|
0160 30 2d 39 5d 2e 2e 2e 20-29 d1 14 00 00 00 55 6e |0-9]...  )Ñ....Un|
0170 67 c3 bc 6c 74 69 67 65-72 20 43 6f 64 65 20 3c |gültige r Code <|
0180 25 3e 10 00 00 00 49 6e-76 61 6c 69 64 20 63 6f |%>....In valid co|
0190 64 65 20 3c 25 3e d1 18-00 00 00 55 6e 67 c3 bc |de <%>Ñ. ...Ungü|
01a0 6c 74 69 67 65 72 20 45-69 6e 74 72 61 67 20 3c |ltiger E intrag <|
01b0 25 3e 21 12 00 00 00 49-6e 76 61 6c 69 64 20 65 |%>!....I nvalid e|
01c0 6e 74 72 79 20 3c 25 3e-21 d1 14 00 00 00 55 6e |ntry <%> !Ñ....Un|
01d0 67 c3 bc 6c 74 69 67 65-72 20 45 69 6e 74 72 61 |gültige r Eintra|
01e0 67 21 0e 00 00 00 49 6e-76 61 6c 69 64 20 65 6e |g!....In valid en|
01f0 74 72 79 21 d1 39 00 00-00 55 6e 67 c3 bc 6c 74 |try!Ñ9.. .Ungült|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 62 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 62
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (62 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188160, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x11881b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 67 65 72 20 4b 61 6e |........ iger Kan|
0010 74 6f 6e 20 3c 25 3e 20-69 6e 20 64 65 72 20 4b |ton <%>  in der K|
0020 65 6e 6e 75 6e 67 20 64-65 72 20 53 6f 7a 69 61 |ennung d er Sozia|
0030 6c 6b 61 73 73 65 20 3c-25 3e 39 00 00 00 55 6e |lkasse < %>9...Un|
0040 67 c3 bc 6c 74 69 67 65-72 20 4b 61 6e 74 6f 6e |gültige r Kanton|
0050 20 3c 25 3e 20 69 6e 20-64 65 72 20 4b 65 6e 6e | <%> in  der Kenn|
0060 75 6e 67 20 64 65 72 20-53 6f 7a 69 61 6c 6b 61 |ung der  Sozialka|
0070 73 73 65 20 3c 25 3e d1-17 00 00 00 55 6e 67 c3 |sse <%>Ñ ....UngÃ|
0080 bc 6c 74 69 67 65 72 20-53 74 61 74 75 73 20 28 |¼ltiger  Status (|
0090 25 29 21 13 00 00 00 49-6e 76 61 6c 69 64 20 73 |%)!....I nvalid s|
00a0 74 61 74 75 73 20 28 25-29 21 d1 12 00 00 00 55 |tatus (% )!Ñ....U|
00b0 6e 67 c3 bc 6c 74 69 67-65 72 20 57 65 72 74 20 |ngültig er Wert |
00c0 21 0e 00 00 00 49 6e 76-61 6c 69 64 20 76 61 6c |!....Inv alid val|
00d0 75 65 21 d1 3d 00 00 00-55 6e 67 c3 bc 6c 74 69 |ue!Ñ=... Ungülti|
00e0 67 65 72 20 57 65 72 74-20 3c 25 3e 20 69 6e 20 |ger Wert  <%> in |
00f0 56 61 72 69 61 62 6c 65-20 22 4c 6f 68 6e 45 4c |Variable  "LohnEL|
0100 4d 34 30 5f 4c 53 45 5f-50 61 79 41 67 72 65 65 |M40_LSE_ PayAgree|
0110 6d 65 6e 74 22 3d 00 00-00 55 6e 67 c3 bc 6c 74 |ment"=.. .Ungült|
0120 69 67 65 72 20 57 65 72-74 20 3c 25 3e 20 69 6e |iger Wer t <%> in|
0130 20 56 61 72 69 61 62 6c-65 20 22 4c 6f 68 6e 45 | Variabl e "LohnE|
0140 4c 4d 34 30 5f 4c 53 45-5f 50 61 79 41 67 72 65 |LM40_LSE _PayAgre|
0150 65 6d 65 6e 74 22 d1 32-00 00 00 55 6e 67 c3 bc |ement"Ñ2 ...Ungü|
0160 6c 74 69 67 65 72 20 5a-65 72 74 69 66 69 6b 61 |ltiger Z ertifika|
0170 74 2d 54 79 70 20 3c 25-3e 20 66 c3 bc 72 20 5a |t-Typ <% > für Z|
0180 65 72 74 69 66 69 6b 61-74 20 3c 25 3e 30 00 00 |ertifika t <%>0..|
0190 00 49 6e 76 61 6c 69 64-20 63 65 72 74 69 66 69 |.Invalid  certifi|
01a0 63 61 74 65 20 74 79 70-65 20 3c 25 3e 20 66 6f |cate typ e <%> fo|
01b0 72 20 63 65 72 74 69 66-69 63 61 74 65 20 3c 25 |r certif icate <%|
01c0 3e d1 40 00 00 00 55 6e-70 61 63 6b 3a 20 4b 6f |>Ñ@...Un pack: Ko|
01d0 6e 76 65 72 73 69 6f 6e-73 66 65 68 6c 65 72 20 |nversion sfehler |
01e0 2d 20 62 69 74 74 65 20-53 74 61 6e 64 61 72 64 |- bitte  Standard|
01f0 64 72 75 63 6b 65 72 20-6e 65 75 20 66 65 73 74 |drucker  neu fest|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 65 67 65 6e 21 3c 00 |........ legen!<.|
0010 00 00 55 6e 70 61 63 6b-3a 20 43 6f 6e 76 65 72 |..Unpack : Conver|
0020 73 69 6f 6e 20 65 72 72-6f 72 20 2d 20 70 6c 65 |sion err or - ple|
0030 61 73 65 20 72 65 64 65-66 69 6e 65 20 73 74 61 |ase rede fine sta|
0040 6e 64 61 72 64 20 70 72-69 6e 74 65 72 21 d1 2b |ndard pr inter!Ñ+|
0050 00 00 00 55 6e 7a 75 6c-c3 a4 73 73 69 67 65 20 |...Unzul ässige |
0060 56 65 72 70 61 63 6b 75-6e 67 73 65 69 6e 68 65 |Verpacku ngseinhe|
0070 69 74 20 25 20 28 46 61-6b 74 6f 72 29 21 24 00 |it % (Fa ktor)!$.|
0080 00 00 49 6e 63 6f 72 72-65 63 74 20 70 61 63 6b |..Incorr ect pack|
0090 61 67 69 6e 67 20 75 6e-69 74 20 25 20 28 66 61 |aging un it % (fa|
00a0 63 74 6f 72 29 21 d1 26-00 00 00 55 6e 7a 75 6c |ctor)!Ñ& ...Unzul|
00b0 c3 a4 73 73 69 67 65 72-20 53 74 61 74 75 73 2d |ässiger  Status-|
00c0 c3 9c 62 65 72 67 61 6e-67 20 28 25 2d 3e 25 29 |Ã.bergan g (%->%)|
00d0 21 1f 00 00 00 49 6e 63-6f 72 72 65 63 74 20 73 |!....Inc orrect s|
00e0 74 61 74 75 73 20 63 68-61 6e 67 65 20 28 25 2d |tatus ch ange (%-|
00f0 3e 25 29 21 d1 2e 00 00-00 55 73 65 72 6e 61 6d |>%)!Ñ... .Usernam|
0100 65 20 69 73 74 20 6c 65-65 72 20 2d 20 6b 65 69 |e ist le er - kei|
0110 6e 20 45 69 6e 74 72 61-67 20 69 6e 20 47 6c 6f |n Eintra g in Glo|
0120 62 61 6c 65 73 20 21 2a-00 00 00 55 73 65 72 20 |bales !* ...User |
0130 6e 61 6d 65 20 6e 6f 74-20 65 6d 70 74 79 20 2d |name not  empty -|
0140 20 6e 6f 20 65 6e 74 72-79 20 69 6e 20 67 6c 6f | no entr y in glo|
0150 62 61 6c 73 21 d1 31 00-00 00 55 73 65 72 6e 61 |bals!Ñ1. ..Userna|
0160 6d 65 20 69 73 74 20 6c-65 65 72 20 2d 20 6b 65 |me ist l eer - ke|
0170 69 6e 20 45 69 6e 74 72-61 67 20 69 6e 20 47 6c |in Eintr ag in Gl|
0180 6f 62 61 6c 65 73 20 28-57 29 21 2e 00 00 00 55 |obales ( W)!....U|
0190 73 65 72 20 6e 61 6d 65-20 6e 6f 74 20 65 6d 70 |ser name  not emp|
01a0 74 79 20 2d 20 6e 6f 20-65 6e 74 72 79 20 69 6e |ty - no  entry in|
01b0 20 67 6c 6f 62 61 6c 73-20 28 57 29 21 d1 28 00 | globals  (W)!Ñ(.|
01c0 00 00 56 50 45 3a 20 4c-61 67 65 72 42 65 73 74 |..VPE: L agerBest|
01d0 61 6e 64 20 3d 20 25 2c-20 4c 61 67 65 72 42 65 |and = %,  LagerBe|
01e0 73 74 61 6e 64 52 20 3d-20 25 1d 00 00 00 50 55 |standR =  %....PU|
01f0 3a 20 73 74 6f 63 6b 20-3d 20 25 2c 20 73 74 6f |: stock  = %, sto|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-63 6b 20 72 65 73 2e 20 |........ ck res. |
0010 3d 20 25 d1 2f 00 00 00-56 61 72 69 61 62 6c 65 |= %Ñ/... Variable|
0020 20 4c 61 67 65 72 52 65-73 65 72 76 69 65 72 75 | LagerRe servieru|
0030 6e 67 41 6c 67 6f 3a 20-41 6c 67 6f 20 75 6e 62 |ngAlgo:  Algo unb|
0040 65 6b 61 6e 6e 74 21 2e-00 00 00 56 61 72 69 61 |ekannt!. ...Varia|
0050 62 6c 65 20 73 74 6f 63-6b 20 72 65 73 65 72 76 |ble stoc k reserv|
0060 61 74 69 6f 6e 20 61 6c-67 6f 3a 20 41 6c 67 6f |ation al go: Algo|
0070 20 75 6e 6b 6e 6f 77 6e-21 d1 10 00 00 00 56 65 | unknown !Ñ....Ve|
0080 72 61 72 62 65 69 74 65-20 44 61 74 65 6e 0f 00 |rarbeite  Daten..|
0090 00 00 50 72 6f 63 65 73-73 69 6e 67 20 64 61 74 |..Proces sing dat|
00a0 61 d1 13 00 00 00 56 65-72 61 72 62 65 69 74 75 |aÑ....Ve rarbeitu|
00b0 6e 64 20 6c c3 a4 75 66-74 0a 00 00 00 49 6e 20 |nd läuf t....In |
00c0 70 72 6f 63 65 73 73 d1-0d 00 00 00 56 65 72 66 |processÑ ....Verf|
00d0 61 68 72 65 6e 20 3e 25-3c 0d 00 00 00 50 72 6f |ahren >% <....Pro|
00e0 63 65 64 75 72 65 20 3e-25 3c d1 07 00 00 00 56 |cedure > %<Ñ....V|
00f0 65 72 6b 61 75 66 05 00-00 00 53 61 6c 65 73 d1 |erkauf.. ..SalesÑ|
0100 07 00 00 00 56 65 72 6c-61 75 66 07 00 00 00 48 |....Verl auf....H|
0110 69 73 74 6f 72 79 d1 13-00 00 00 56 65 72 73 61 |istoryÑ. ...Versa|
0120 6e 64 20 41 6e 7a 65 69-67 65 74 65 78 74 17 00 |nd Anzei getext..|
0130 00 00 4d 61 69 6c 20 61-64 76 65 72 74 69 73 65 |..Mail a dvertise|
0140 6d 65 6e 74 20 74 65 78-74 d1 08 00 00 00 56 6f |ment tex tÑ....Vo|
0150 72 6c 61 67 65 6e 07 00-00 00 4d 61 73 74 65 72 |rlagen.. ..Master|
0160 73 d1 30 00 00 00 57 41-52 4e 55 4e 47 3a 20 4b |sÑ0...WA RNUNG: K|
0170 75 72 73 64 69 66 66 65-72 65 6e 7a 20 67 72 c3 |ursdiffe renz grÃ|
0180 b6 73 73 65 72 20 61 6c-73 20 31 30 20 50 72 6f |¶sser al s 10 Pro|
0190 7a 65 6e 74 20 21 3f 00-00 00 57 41 52 4e 49 4e |zent !?. ..WARNIN|
01a0 47 3a 20 45 78 63 68 61-6e 67 65 20 72 61 74 65 |G: Excha nge rate|
01b0 20 64 69 66 66 65 72 65-6e 63 65 73 20 61 72 65 | differe nces are|
01c0 20 68 69 67 68 65 72 20-74 68 61 6e 20 31 30 20 | higher  than 10 |
01d0 70 65 72 20 63 65 6e 74-21 d1 22 00 00 00 57 42 |per cent !Ñ"...WB|
01e0 4e 20 4c 69 6e 65 61 72-20 28 45 69 6e 67 61 62 |N Linear  (Eingab|
01f0 65 20 4e 75 74 7a 75 6e-67 73 64 61 75 65 72 29 |e Nutzun gsdauer)|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188de0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1188e30, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a440, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-21 00 00 00 57 42 4e 20 |........ !...WBN |
0010 4c 69 6e 65 61 72 20 28-65 6e 74 72 79 20 6f 66 |Linear ( entry of|
0020 20 75 73 65 66 75 6c 20-6c 69 66 65 29 d1 05 00 | useful  life)Ñ..|
0030 00 00 57 61 61 67 65 05-00 00 00 53 63 61 6c 65 |..Waage. ...Scale|
0040 d1 04 00 00 00 57 61 67-65 04 00 00 00 57 61 67 |Ñ....Wag e....Wag|
0050 65 d1 17 00 00 00 57 61-67 65 20 74 79 70 65 20 |eÑ....Wa ge type |
0060 64 65 74 65 72 6d 69 6e-61 74 69 6f 6e 17 00 00 |determin ation...|
0070 00 57 61 67 65 20 74 79-70 65 20 64 65 74 65 72 |.Wage ty pe deter|
0080 6d 69 6e 61 74 69 6f 6e-d1 0d 00 00 00 57 61 72 |mination Ñ....War|
0090 6e 75 6e 67 3a 20 25 3a-20 25 0d 00 00 00 57 61 |nung: %:  %....Wa|
00a0 72 6e 69 6e 67 3a 20 25-3a 20 25 d1 34 00 00 00 |rning: % : %Ñ4...|
00b0 57 61 72 6e 75 6e 67 3a-20 44 69 65 20 50 65 72 |Warnung:  Die Per|
00c0 69 6f 64 65 20 25 2f 25-20 69 73 74 20 65 69 6e |iode %/%  ist ein|
00d0 65 20 41 62 73 63 68 6c-75 73 73 70 65 72 69 6f |e Abschl ussperio|
00e0 64 65 20 21 2a 00 00 00-57 61 72 6e 69 6e 67 3a |de !*... Warning:|
00f0 20 50 65 72 69 6f 64 20-25 2f 25 20 69 73 20 61 | Period  %/% is a|
0100 20 62 61 6c 61 6e 63 69-6e 67 20 70 65 72 69 6f | balanci ng perio|
0110 64 21 d1 68 00 00 00 57-61 72 6e 75 6e 67 3a 20 |d!Ñh...W arnung: |
0120 55 6d 20 65 69 6e 65 20-64 65 66 69 6e 69 74 69 |Um eine  definiti|
0130 76 65 20 45 52 20 7a 75-20 65 72 68 61 6c 74 65 |ve ER zu  erhalte|
0140 6e 2c 20 77 c3 a4 68 6c-65 6e 20 53 69 65 20 64 |n, wähl en Sie d|
0150 65 6e 20 65 6e 74 73 70-65 63 68 65 6e 64 65 6e |en entsp echenden|
0160 20 4d 65 6e 75 65 70 75-6e 6b 74 20 69 6d 20 46 | Menuepu nkt im F|
0170 49 42 55 20 48 61 75 70-74 6d 65 6e 75 20 21 74 |IBU Haup tmenu !t|
0180 00 00 00 57 61 72 6e 69-6e 67 3a 20 49 6e 20 6f |...Warni ng: In o|
0190 72 64 65 72 20 74 6f 20-6f 62 74 61 69 6e 20 61 |rder to  obtain a|
01a0 20 64 65 66 69 6e 69 74-65 20 69 6e 63 6f 6d 65 | definit e income|
01b0 20 73 74 61 74 65 6d 65-6e 74 2c 20 73 65 6c 65 | stateme nt, sele|
01c0 63 74 20 74 68 65 20 63-6f 72 72 65 73 70 6f 6e |ct the c orrespon|
01d0 64 69 6e 67 20 6d 65 6e-75 20 6f 70 74 69 6f 6e |ding men u option|
01e0 20 69 6e 20 74 68 65 20-47 45 4c 45 20 6d 61 69 | in the  GELE mai|
01f0 6e 20 6d 65 6e 75 21 d1-0c 00 00 00 57 61 72 74 |n menu!Ñ ....Wart|

token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a440, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a440, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a440, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a440, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a400, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x118a440, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1539e70, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1539eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 104 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 116 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 104
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (104 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 116
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a0c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (116 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 6e 20 61 75 66 20 25 |........ en auf %|
0010 0a 00 00 00 57 61 69 74-20 66 6f 72 20 25 d1 09 |....Wait  for %Ñ.|
0020 00 00 00 57 65 63 68 73-65 6c 20 31 08 00 00 00 |...Wechs el 1....|
0030 53 77 69 74 63 68 20 31-d1 09 00 00 00 57 65 63 |Switch 1 Ñ....Wec|
0040 68 73 65 6c 20 32 08 00-00 00 53 77 69 74 63 68 |hsel 2.. ..Switch|
0050 20 32 d1 09 00 00 00 57-65 63 68 73 65 6c 20 33 | 2Ñ....W echsel 3|
0060 08 00 00 00 53 77 69 74-63 68 20 33 d1 0b 00 00 |....Swit ch 3Ñ...|
0070 00 57 65 63 68 73 65 6c-20 62 65 69 09 00 00 00 |.Wechsel  bei....|
0080 53 77 69 74 63 68 20 61-74 d1 43 00 00 00 57 65 |Switch a tÑC...We|
0090 67 65 6e 20 c3 bc 62 65-72 6e 6f 6d 6d 65 6e 65 |gen übe rnommene|
00a0 72 20 44 65 74 61 69 6c-73 20 6b 61 6e 6e 20 64 |r Detail s kann d|
00b0 69 65 73 65 20 5a 65 69-6c 65 20 6e 69 63 68 74 |iese Zei le nicht|
00c0 20 65 6e 74 66 65 72 6e-74 20 77 65 72 64 65 6e | entfern t werden|
00d0 21 32 00 00 00 54 68 69-73 20 6c 69 6e 65 20 63 |!2...Thi s line c|
00e0 61 6e 6e 6f 74 20 62 65-20 64 65 6c 65 74 65 64 |annot be  deleted|
00f0 20 64 75 65 20 74 6f 20-63 6f 70 69 65 64 20 64 | due to  copied d|
0100 65 74 61 69 6c 73 21 d1-15 00 00 00 57 65 69 74 |etails!Ñ ....Weit|
0110 65 72 20 67 65 68 74 73-20 2e 2e 2e 28 25 20 25 |er gehts  ...(% %|
0120 29 13 00 00 00 4f 6e 20-69 74 20 67 6f 65 73 2e |)....On  it goes.|
0130 2e 2e 20 28 25 20 25 29-d1 1b 00 00 00 57 65 6c |.. (% %) Ñ....Wel|
0140 63 68 65 20 4d 61 73 6b-65 20 77 c3 bc 6e 73 63 |che Mask e wünsc|
0150 68 65 6e 20 53 69 65 3f-17 00 00 00 57 68 69 63 |hen Sie? ....Whic|
0160 68 20 6d 61 73 6b 20 64-6f 20 79 6f 75 20 77 61 |h mask d o you wa|
0170 6e 74 3f d1 08 00 00 00-57 65 72 74 6e 61 6d 65 |nt?Ñ.... Wertname|
0180 0a 00 00 00 56 61 6c 75-65 20 6e 61 6d 65 d1 20 |....Valu e nameÑ |
0190 00 00 00 57 69 6c 6c 6b-6f 6d 6d 65 6e 20 7a 75 |...Willk ommen zu|
01a0 72 20 53 70 65 7a 69 61-6c 66 75 6e 6b 74 69 6f |r Spezia lfunktio|
01b0 6e 20 25 1d 00 00 00 57-65 6c 63 6f 6d 65 20 74 |n %....W elcome t|
01c0 6f 20 73 70 65 63 69 61-6c 20 66 75 6e 63 74 69 |o specia l functi|
01d0 6f 6e 20 25 d1 4b 00 00-00 57 69 72 64 20 50 6f |on %ÑK.. .Wird Po|
01e0 73 69 74 69 6f 6e 20 25-20 28 25 29 20 61 6e 20 |sition %  (%) an |
01f0 64 65 6e 20 4b 75 6e 64-65 6e 20 61 75 73 67 65 |den Kund en ausge|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a0c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a0c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a0c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a0c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a050, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a0c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a7c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1539eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a7c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1539eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a7c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1539eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a7c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1539eb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153a7c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ac00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 69 65 66 65 72 74 20 |........ liefert |
0010 28 52 65 73 65 72 76 61-74 69 6f 6e 20 64 65 72 |(Reserva tion der|
0020 20 50 6f 73 69 74 69 6f-6e 29 20 3f 3b 00 00 00 | Positio n) ?;...|
0030 57 69 6c 6c 20 69 74 65-6d 20 25 20 28 25 29 20 |Will ite m % (%) |
0040 62 65 20 73 75 70 70 6c-69 65 64 20 74 6f 20 63 |be suppl ied to c|
0050 75 73 74 6f 6d 65 72 20-28 69 74 65 6d 20 72 65 |ustomer  (item re|
0060 73 65 72 76 61 74 69 6f-6e 29 3f d1 4f 00 00 00 |servatio n)?ÑO...|
0070 57 69 72 64 20 50 6f 73-69 74 69 6f 6e 20 25 20 |Wird Pos ition % |
0080 28 25 29 20 70 72 6f 64-75 7a 69 65 72 74 20 28 |(%) prod uziert (|
0090 52 65 73 65 72 76 61 74-69 6f 6e 20 64 65 72 20 |Reservat ion der |
00a0 42 65 73 74 61 6e 64 74-65 69 6c 65 20 76 69 61 |Bestandt eile via|
00b0 20 53 74 c3 bc 63 6b 6c-69 73 74 65 29 20 3f 4f | Stückl iste) ?O|
00c0 00 00 00 57 69 6c 6c 20-69 74 65 6d 20 25 20 28 |...Will  item % (|
00d0 25 29 20 62 65 20 70 72-6f 64 75 63 65 64 20 28 |%) be pr oduced (|
00e0 72 65 73 65 72 76 61 74-69 6f 6e 20 6f 66 20 63 |reservat ion of c|
00f0 6f 6d 70 6f 6e 65 6e 74-73 20 76 69 61 20 63 6f |omponent s via co|
0100 6d 70 6f 6e 65 6e 74 20-73 65 71 75 65 6e 63 65 |mponent  sequence|
0110 29 3f d1 1e 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |)?Ñ....W ollen Si|
0120 65 20 25 20 64 75 72 63-68 20 25 20 65 72 73 65 |e % durc h % erse|
0130 74 7a 65 6e 3f 0f 00 00-00 52 65 70 6c 61 63 65 |tzen?... .Replace|
0140 20 25 20 62 79 20 25 3f-d1 0d 00 00 00 57 6f 6c | % by %? Ñ....Wol|
0150 6c 65 6e 20 53 69 65 20-25 3f 11 00 00 00 44 6f |len Sie  %?....Do|
0160 20 79 6f 75 20 77 61 6e-74 20 74 6f 20 25 3f d1 | you wan t to %?Ñ|
0170 20 00 00 00 57 6f 6c 6c-65 6e 20 53 69 65 20 41 | ...Woll en Sie A|
0180 64 72 65 73 73 65 6e 20-61 75 73 77 c3 a4 68 6c |dressen  auswähl|
0190 65 6e 20 3f 11 00 00 00-53 65 6c 65 63 74 20 61 |en ?.... Select a|
01a0 64 64 72 65 73 73 65 73-3f d1 1d 00 00 00 57 6f |ddresses ?Ñ....Wo|
01b0 6c 6c 65 6e 20 53 69 65-20 41 64 72 65 73 73 65 |llen Sie  Adresse|
01c0 6e 20 c3 a4 6e 64 65 72-6e 20 3f 0f 00 00 00 45 |n änder n ?....E|
01d0 64 69 74 20 61 64 64 72-65 73 73 65 73 3f d1 35 |dit addr esses?Ñ5|
01e0 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 42 65 |...Wolle n Sie Be|
01f0 7a c3 bc 67 65 20 7a 75-20 64 65 6e 20 4b 75 6e |züge zu  den Kun|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 59 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 59
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae90, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (59 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b060, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b060, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b060, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b060, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ae30, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b060, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 65 6e 61 75 66 74 72 |........ denauftr|
0010 c3 a4 67 65 6e 20 65 69-6e 74 72 61 67 65 6e 3f |ägen ei ntragen?|
0020 43 00 00 00 44 6f 20 79-6f 75 20 77 69 73 68 20 |C...Do y ou wish |
0030 74 6f 20 72 65 67 69 73-74 65 72 20 77 69 74 68 |to regis ter with|
0040 64 72 61 77 61 6c 73 20-72 65 6c 61 74 65 64 20 |drawals  related |
0050 74 6f 20 74 68 65 20 63-75 73 74 6f 6d 65 72 20 |to the c ustomer |
0060 6f 72 64 65 72 73 3f d1-30 00 00 00 57 6f 6c 6c |orders?Ñ 0...Woll|
0070 65 6e 20 53 69 65 20 4b-6f 6e 64 69 74 69 6f 6e |en Sie K ondition|
0080 65 6e 20 64 65 73 20 52-65 66 65 72 65 6e 7a 25 |en des R eferenz%|
0090 20 25 20 6b 6f 70 69 65-72 65 6e 3f 1d 00 00 00 | % kopie ren?....|
00a0 43 6f 70 79 20 74 65 72-6d 73 20 66 6f 72 20 72 |Copy ter ms for r|
00b0 65 66 65 72 65 6e 63 65-20 25 20 25 3f d1 21 00 |eference  % %?Ñ!.|
00c0 00 00 57 6f 6c 6c 65 6e-20 53 69 65 20 4b 6f 6e |..Wollen  Sie Kon|
00d0 64 69 74 69 6f 6e 65 6e-20 65 72 66 61 73 73 65 |ditionen  erfasse|
00e0 6e 20 3f 14 00 00 00 52-65 67 69 73 74 65 72 20 |n ?....R egister |
00f0 63 6f 6e 64 69 74 69 6f-6e 73 3f d1 28 00 00 00 |conditio ns?Ñ(...|
0100 57 6f 6c 6c 65 6e 20 53-69 65 20 4b 6f 6e 64 69 |Wollen S ie Kondi|
0110 74 69 6f 6e 65 6e 20 76-6f 6e 20 25 20 25 20 6b |tionen v on % % k|
0120 6f 70 69 65 72 65 6e 3f-19 00 00 00 43 6f 70 79 |opieren? ....Copy|
0130 20 63 6f 6e 64 69 74 69-6f 6e 73 20 66 72 6f 6d | conditi ons from|
0140 20 25 20 25 3f d1 2f 00-00 00 57 6f 6c 6c 65 6e | % %?Ñ/. ..Wollen|
0150 20 53 69 65 20 50 6f 73-69 74 69 6f 6e 65 6e 20 | Sie Pos itionen |
0160 64 65 73 20 52 65 66 65-72 65 6e 7a 25 20 25 20 |des Refe renz% % |
0170 6b 6f 70 69 65 72 65 6e-3f 20 00 00 00 43 6f 70 |kopieren ? ...Cop|
0180 79 20 70 6f 73 69 74 69-6f 6e 73 20 6f 66 20 72 |y positi ons of r|
0190 65 66 65 72 65 6e 63 65-20 25 20 25 3f d1 20 00 |eference  % %?Ñ .|
01a0 00 00 57 6f 6c 6c 65 6e-20 53 69 65 20 50 6f 73 |..Wollen  Sie Pos|
01b0 69 74 69 6f 6e 65 6e 20-65 72 66 61 73 73 65 6e |itionen  erfassen|
01c0 20 3f 0f 00 00 00 52 65-67 69 73 74 65 72 20 69 | ?....Re gister i|
01d0 74 65 6d 73 3f d1 3a 00-00 00 57 6f 6c 6c 65 6e |tems?Ñ:. ..Wollen|
01e0 20 53 69 65 20 54 65 72-6d 69 6e 65 20 75 6e 64 | Sie Ter mine und|
01f0 20 50 65 72 73 6f 6e 65-6e 20 64 65 73 20 52 65 | Persone n des Re|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b610, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b610, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b610, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b610, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b610, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b610, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 58 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-66 65 72 65 6e 7a 20 25 |........ ferenz %|
0010 20 25 20 6b 6f 70 69 65-72 65 6e 3f 2e 00 00 00 | % kopie ren?....|
0020 43 6f 70 79 20 73 63 68-65 64 75 6c 65 73 20 61 |Copy sch edules a|
0030 6e 64 20 70 65 72 73 6f-6e 73 20 66 72 6f 6d 20 |nd perso ns from |
0040 72 65 66 65 72 65 6e 63-65 20 25 20 25 3f d1 32 |referenc e % %?Ñ2|
0050 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 54 65 |...Wolle n Sie Te|
0060 72 6d 69 6e 65 20 75 6e-64 20 50 65 72 73 6f 6e |rmine un d Person|
0070 65 6e 20 65 72 66 61 73-73 65 6e 2f c3 a4 6e 64 |en erfas sen/änd|
0080 65 72 6e 20 3f 26 00 00-00 52 65 67 69 73 74 65 |ern ?&.. .Registe|
0090 72 2f 63 68 61 6e 67 65-20 73 63 68 65 64 75 6c |r/change  schedul|
00a0 65 73 20 61 6e 64 20 70-65 72 73 6f 6e 73 3f d1 |es and p ersons?Ñ|
00b0 31 00 00 00 57 6f 6c 6c-65 6e 20 53 69 65 20 54 |1...Woll en Sie T|
00c0 65 72 6d 69 6e 65 20 75-6e 64 20 50 65 72 73 6f |ermine u nd Perso|
00d0 6e 65 6e 20 76 6f 6e 20-25 20 25 20 6b 6f 70 69 |nen von  % % kopi|
00e0 65 72 65 6e 3f 24 00 00-00 43 6f 70 79 20 64 65 |eren?$.. .Copy de|
00f0 61 64 6c 69 6e 65 73 20-61 6e 64 20 70 65 72 73 |adlines  and pers|
0100 6f 6e 73 20 66 72 6f 6d-20 25 20 25 3f d1 21 00 |ons from  % %?Ñ!.|
0110 00 00 57 6f 6c 6c 65 6e-20 53 69 65 20 61 6c 6c |..Wollen  Sie all|
0120 65 20 57 65 72 74 65 20-75 6d 72 65 63 68 6e 65 |e Werte  umrechne|
0130 6e 20 3f 13 00 00 00 43-6f 6e 76 65 72 74 20 61 |n ?....C onvert a|
0140 6c 6c 20 76 61 6c 75 65-73 3f d1 20 00 00 00 57 |ll value s?Ñ ...W|
0150 6f 6c 6c 65 6e 20 53 69-65 20 61 6c 6c 65 20 5a |ollen Si e alle Z|
0160 65 69 6c 65 6e 20 6c c3-b6 73 63 68 65 6e 3f 11 |eilen là ¶schen?.|
0170 00 00 00 44 65 6c 65 74-65 20 61 6c 6c 20 6c 69 |...Delet e all li|
0180 6e 65 73 3f d1 4b 00 00-00 57 6f 6c 6c 65 6e 20 |nes?ÑK.. .Wollen |
0190 53 69 65 20 61 6c 6c 65-20 61 6e 67 65 7a 65 69 |Sie alle  angezei|
01a0 67 74 65 6e 20 57 65 72-74 65 20 67 65 67 65 6e |gten Wer te gegen|
01b0 20 64 69 65 20 61 6b 74-75 65 6c 6c 65 6e 20 56 | die akt uellen V|
01c0 6f 72 67 61 62 65 77 65-72 74 65 20 70 72 c3 bc |orgabewe rte prü|
01d0 66 65 6e 3f 32 00 00 00-43 68 65 63 6b 20 61 6c |fen?2... Check al|
01e0 6c 20 64 69 73 70 6c 61-79 65 64 20 76 61 6c 75 |l displa yed valu|
01f0 65 73 20 61 67 61 69 6e-73 74 20 70 72 65 2d 73 |es again st pre-s|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 58
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153be00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (58 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153be00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 49 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 49
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153be00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (49 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153be00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153be00, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 75 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 74 20 76 61 6c 75 65 |........ et value|
0010 73 3f d1 42 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |s?ÑB...W ollen Si|
0020 65 20 61 6c 6c 65 20 61-6e 67 65 7a 65 69 67 74 |e alle a ngezeigt|
0030 65 6e 20 57 65 72 74 65-20 6d 69 74 20 64 65 72 |en Werte  mit der|
0040 20 50 72 c3 bc 66 70 72-6f 7a 65 64 75 72 20 25 | Prüfpr ozedur %|
0050 20 70 72 c3 bc 66 65 6e-3f 39 00 00 00 43 68 65 | prüfen ?9...Che|
0060 63 6b 20 61 6c 6c 20 64-69 73 70 6c 61 79 65 64 |ck all d isplayed|
0070 20 76 61 6c 75 65 73 20-77 69 74 68 20 76 65 72 | values  with ver|
0080 69 66 69 63 61 74 69 6f-6e 20 70 72 6f 63 65 64 |ificatio n proced|
0090 75 72 65 20 25 3f d1 23-00 00 00 57 6f 6c 6c 65 |ure %?Ñ# ...Wolle|
00a0 6e 20 53 69 65 20 61 6c-6c 65 20 62 65 74 72 6f |n Sie al le betro|
00b0 66 66 65 6e 65 6e 20 73-65 68 65 6e 20 3f 13 00 |ffenen s ehen ?..|
00c0 00 00 56 69 65 77 20 61-6c 6c 20 63 6f 6e 63 65 |..View a ll conce|
00d0 72 6e 65 64 3f d1 4f 00-00 00 57 6f 6c 6c 65 6e |rned?ÑO. ..Wollen|
00e0 20 53 69 65 20 61 6c 6c-65 20 6d 61 72 6b 69 65 | Sie all e markie|
00f0 72 74 65 6e 20 52 65 63-68 6e 75 6e 67 65 6e 20 |rten Rec hnungen |
0100 61 75 73 20 64 65 72 20-41 75 66 74 72 61 67 73 |aus der  Auftrags|
0110 62 65 61 72 62 65 69 74-75 6e 67 20 75 65 62 65 |bearbeit ung uebe|
0120 72 6e 65 68 6d 65 6e 20-3f 36 00 00 00 54 61 6b |rnehmen  ?6...Tak|
0130 65 20 6f 76 65 72 20 61-6c 6c 20 73 65 6c 65 63 |e over a ll selec|
0140 74 65 64 20 69 6e 76 6f-69 63 65 73 20 66 72 6f |ted invo ices fro|
0150 6d 20 6f 72 64 65 72 20-70 72 6f 63 65 73 73 69 |m order  processi|
0160 6e 67 3f d1 2c 00 00 00-57 6f 6c 6c 65 6e 20 53 |ng?Ñ,... Wollen S|
0170 69 65 20 61 6c 6c 67 65-6d 65 69 6e 65 20 42 65 |ie allge meine Be|
0180 64 69 6e 67 75 6e 67 65-6e 20 65 72 66 61 73 73 |dingunge n erfass|
0190 65 6e 20 3f 17 00 00 00-52 65 67 69 73 74 65 72 |en ?.... Register|
01a0 20 67 65 6e 65 72 61 6c-20 74 65 72 6d 73 3f d1 | general  terms?Ñ|
01b0 12 00 00 00 57 6f 6c 6c-65 6e 20 53 69 65 20 62 |....Woll en Sie b|
01c0 75 63 68 65 6e 3f 14 00-00 00 44 6f 20 79 6f 75 |uchen?.. ..Do you|
01d0 20 77 61 6e 74 20 74 6f-20 62 6f 6f 6b 3f d1 26 | want to  book?Ñ&|
01e0 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 64 61 |...Wolle n Sie da|
01f0 73 20 41 6e 67 65 62 6f-74 20 25 20 61 62 73 63 |s Angebo t % absc|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 75
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (75 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153b5d0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 44 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 44
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (44 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-68 6c 69 65 73 73 65 6e |........ hliessen|
0010 3f 0e 00 00 00 43 6c 6f-73 65 20 6f 66 66 65 72 |?....Clo se offer|
0020 20 25 3f d1 34 00 00 00-57 6f 6c 6c 65 6e 20 53 | %?Ñ4... Wollen S|
0030 69 65 20 64 61 73 20 49-63 6f 6e 20 76 6f 6e 20 |ie das I con von |
0040 43 61 73 79 6d 69 72 20-76 6f 72 73 63 68 6c 61 |Casymir  vorschla|
0050 67 65 6e 20 6c 61 73 73-65 6e 20 3f 28 00 00 00 |gen lass en ?(...|
0060 44 6f 20 79 6f 75 20 77-61 6e 74 20 43 61 73 79 |Do you w ant Casy|
0070 6d 69 72 20 74 6f 20 73-75 67 67 65 73 74 20 74 |mir to s uggest t|
0080 68 65 20 69 63 6f 6e 3f-d1 3c 00 00 00 57 6f 6c |he icon? Ñ<...Wol|
0090 6c 65 6e 20 53 69 65 20-64 61 73 20 5a 65 72 74 |len Sie  das Zert|
00a0 69 66 69 6b 61 74 20 25-2f 25 20 69 6e 20 65 69 |ifikat % /% in ei|
00b0 6e 65 20 58 4d 4c 20 44-61 74 65 69 20 65 78 70 |ne XML D atei exp|
00c0 6f 72 74 69 65 72 65 6e-3f 36 00 00 00 44 6f 20 |ortieren ?6...Do |
00d0 79 6f 75 20 77 69 73 68-20 74 6f 20 65 78 70 6f |you wish  to expo|
00e0 72 74 20 74 68 65 20 63-65 72 74 69 66 69 63 61 |rt the c ertifica|
00f0 74 65 20 25 20 74 6f 20-61 20 58 4d 4c 20 66 69 |te % to  a XML fi|
0100 6c 65 3f d1 19 00 00 00-57 6f 6c 6c 65 6e 20 53 |le?Ñ.... Wollen S|
0110 69 65 20 64 61 73 20 6a-65 74 7a 74 20 74 75 6e |ie das j etzt tun|
0120 3f 0c 00 00 00 44 6f 20-74 68 69 73 20 6e 6f 77 |?....Do  this now|
0130 3f d1 2b 00 00 00 57 6f-6c 6c 65 6e 20 53 69 65 |?Ñ+...Wo llen Sie|
0140 20 64 65 6e 20 25 2d 44-54 41 20 42 65 67 6c 65 | den %-D TA Begle|
0150 69 74 62 72 69 65 66 20-65 72 7a 65 75 67 65 6e |itbrief  erzeugen|
0160 3f 1a 00 00 00 43 72 65-61 74 65 20 25 2d 44 54 |?....Cre ate %-DT|
0170 41 20 63 6f 76 65 72 20-6c 65 74 74 65 72 3f d1 |A cover  letter?Ñ|
0180 21 00 00 00 57 6f 6c 6c-65 6e 20 53 69 65 20 64 |!...Woll en Sie d|
0190 65 6e 20 41 62 6c 61 75-66 20 66 6f 72 74 73 65 |en Ablau f fortse|
01a0 74 7a 65 6e 3f 13 00 00-00 43 6f 6e 74 69 6e 75 |tzen?... .Continu|
01b0 65 20 70 72 6f 63 65 64-75 72 65 3f d1 42 00 00 |e proced ure?ÑB..|
01c0 00 57 6f 6c 6c 65 6e 20-53 69 65 20 64 65 6e 20 |.Wollen  Sie den |
01d0 41 72 63 68 69 76 61 75-66 74 72 61 67 20 66 c3 |Archivau ftrag fÃ|
01e0 bc 72 20 64 69 65 20 4b-75 6e 64 65 6e 62 65 73 |¼r die K undenbes|
01f0 74 65 6c 6c 75 6e 67 20-67 65 6e 65 72 69 65 72 |tellung  generier|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c4f0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153c680, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-65 6e 3f 2a 00 00 00 47 |........ en?*...G|
0010 65 6e 65 72 61 74 65 20-61 72 63 68 69 76 65 20 |enerate  archive |
0020 6f 72 64 65 72 20 66 6f-72 20 63 75 73 74 6f 6d |order fo r custom|
0030 65 72 20 6f 72 64 65 72-3f d1 28 00 00 00 57 6f |er order ?Ñ(...Wo|
0040 6c 6c 65 6e 20 53 69 65-20 64 65 6e 20 41 72 63 |llen Sie  den Arc|
0050 68 69 76 61 75 66 74 72-61 67 20 67 65 6e 65 72 |hivauftr ag gener|
0060 69 65 72 65 6e 3f 17 00-00 00 47 65 6e 65 72 61 |ieren?.. ..Genera|
0070 74 65 20 61 72 63 68 69-76 65 20 6f 72 64 65 72 |te archi ve order|
0080 3f d1 22 00 00 00 57 6f-6c 6c 65 6e 20 53 69 65 |?Ñ"...Wo llen Sie|
0090 20 64 65 6e 20 41 75 66-74 72 61 67 20 66 72 65 | den Auf trag fre|
00a0 69 67 65 62 65 6e 20 3f-0e 00 00 00 41 70 70 72 |igeben ? ....Appr|
00b0 6f 76 65 20 6f 72 64 65-72 3f d1 2a 00 00 00 57 |ove orde r?Ñ*...W|
00c0 6f 6c 6c 65 6e 20 53 69-65 20 64 65 6e 20 44 54 |ollen Si e den DT|
00d0 41 20 42 65 67 6c 65 69-74 62 72 69 65 66 20 65 |A Beglei tbrief e|
00e0 72 7a 65 75 67 65 6e 20-3f 18 00 00 00 43 72 65 |rzeugen  ?....Cre|
00f0 61 74 65 20 44 54 41 20-63 6f 76 65 72 20 6c 65 |ate DTA  cover le|
0100 74 74 65 72 3f d1 2a 00-00 00 57 6f 6c 6c 65 6e |tter?Ñ*. ..Wollen|
0110 20 53 69 65 20 64 65 6e-20 50 72 6f 7a 65 73 73 | Sie den  Prozess|
0120 20 25 20 77 69 72 6b 6c-69 63 68 20 6b 69 6c 6c | % wirkl ich kill|
0130 65 6e 20 3f 16 00 00 00-52 65 61 6c 6c 79 20 6b |en ?.... Really k|
0140 69 6c 6c 20 70 72 6f 63-65 73 73 20 25 3f d1 29 |ill proc ess %?Ñ)|
0150 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 64 65 |...Wolle n Sie de|
0160 6e 20 57 61 72 65 6e 76-65 72 73 61 6e 64 20 64 |n Warenv ersand d|
0170 69 73 70 6f 6e 69 65 72-65 6e 20 3f 32 00 00 00 |isponier en ?2...|
0180 44 6f 20 79 6f 75 20 77-69 73 68 20 74 6f 20 64 |Do you w ish to d|
0190 69 73 70 61 74 63 68 20-74 68 65 20 73 68 69 70 |ispatch  the ship|
01a0 70 69 6e 67 20 6f 66 20-74 68 65 20 67 6f 6f 64 |ping of  the good|
01b0 73 3f d1 29 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |s?Ñ)...W ollen Si|
01c0 65 20 64 69 65 20 41 4c-4c 45 20 45 69 6e 67 61 |e die AL LE Einga|
01d0 62 65 6e 20 67 65 6e 65-72 69 65 72 65 6e 20 3f |ben gene rieren ?|
01e0 14 00 00 00 47 65 6e 65-72 61 74 65 20 41 4c 4c |....Gene rate ALL|
01f0 20 69 6e 70 75 74 73 3f-d1 32 00 00 00 57 6f 6c | inputs? Ñ2...Wol|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153db40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 41 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 41
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (41 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153db40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6c 65 6e 20 53 69 65 20 |........ len Sie |
0010 64 69 65 20 41 64 72 65-73 73 65 6e 20 64 65 73 |die Adre ssen des|
0020 20 52 65 66 65 72 65 6e-7a 25 20 25 20 6b 6f 70 | Referen z% % kop|
0030 69 65 72 65 6e 20 3f 18-00 00 00 43 6f 70 79 20 |ieren ?. ...Copy |
0040 61 64 64 72 65 73 73 65-73 20 66 72 6f 6d 20 25 |addresse s from %|
0050 20 25 3f d1 2a 00 00 00-57 6f 6c 6c 65 6e 20 53 | %?Ñ*... Wollen S|
0060 69 65 20 64 69 65 20 41-64 72 65 73 73 65 6e 20 |ie die A dressen |
0070 76 6f 6e 20 25 20 25 20-6b 6f 70 69 65 72 65 6e |von % %  kopieren|
0080 20 3f 18 00 00 00 43 6f-70 79 20 61 64 64 72 65 | ?....Co py addre|
0090 73 73 65 73 20 66 72 6f-6d 20 25 20 25 3f d1 26 |sses fro m % %?Ñ&|
00a0 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 64 69 |...Wolle n Sie di|
00b0 65 20 41 6e 67 61 62 65-20 66 c3 bc 72 20 25 20 |e Angabe  für % |
00c0 6c c3 b6 73 63 68 65 6e-3f 18 00 00 00 44 65 6c |löschen ?....Del|
00d0 65 74 65 20 69 6e 64 69-63 61 74 69 6f 6e 20 66 |ete indi cation f|
00e0 6f 72 20 25 3f d1 48 00-00 00 57 6f 6c 6c 65 6e |or %?ÑH. ..Wollen|
00f0 20 53 69 65 20 64 69 65-20 42 65 73 74 65 6c 6c | Sie die  Bestell|
0100 75 6e 67 20 25 20 61 62-73 63 68 6c 69 65 73 73 |ung % ab schliess|
0110 65 6e 20 28 62 65 73 74-65 6c 6c 74 20 25 20 25 |en (best ellt % %|
0120 2c 20 67 65 6c 69 65 66-65 72 74 20 25 20 25 29 |, gelief ert % %)|
0130 20 3f 30 00 00 00 43 6c-6f 73 65 20 70 75 72 63 | ?0...Cl ose purc|
0140 68 61 73 65 20 25 20 28-70 75 72 63 68 61 73 65 |hase % ( purchase|
0150 64 20 25 20 25 2c 20 64-65 6c 69 76 65 72 65 64 |d % %, d elivered|
0160 20 25 20 25 29 3f d1 23-00 00 00 57 6f 6c 6c 65 | % %)?Ñ# ...Wolle|
0170 6e 20 53 69 65 20 64 69-65 20 42 75 63 68 75 6e |n Sie di e Buchun|
0180 67 20 73 74 6f 72 6e 69-65 72 65 6e 20 3f 22 00 |g storni eren ?".|
0190 00 00 44 6f 20 79 6f 75-20 77 61 6e 74 20 74 6f |..Do you  want to|
01a0 20 63 61 6e 63 65 6c 20-74 68 65 20 70 6f 73 74 | cancel  the post|
01b0 69 6e 67 3f d1 4f 00 00-00 57 6f 6c 6c 65 6e 20 |ing?ÑO.. .Wollen |
01c0 53 69 65 20 64 69 65 20-42 75 63 68 75 6e 67 20 |Sie die  Buchung |
01d0 7a 75 73 61 6d 6d 65 6e-20 6d 69 74 20 64 65 72 |zusammen  mit der|
01e0 20 7a 75 67 65 68 c3 b6-72 69 67 65 6e 20 53 74 | zugehö rigen St|
01f0 65 75 65 72 62 75 63 68-75 6e 67 20 73 74 6f 72 |euerbuch ung stor|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153db40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153db40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153db40, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e1b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e1b0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 69 65 72 65 6e 20 3f |........ nieren ?|
0010 3f 00 00 00 43 61 6e 63-65 6c 20 74 68 65 20 62 |?...Canc el the b|
0020 6f 6f 6b 69 6e 67 20 74-6f 67 65 74 68 65 72 20 |ooking t ogether |
0030 77 69 74 68 20 74 68 65-20 63 6f 72 72 65 73 70 |with the  corresp|
0040 6f 6e 64 69 6e 67 20 74-61 78 20 70 6f 73 74 69 |onding t ax posti|
0050 6e 67 3f d1 2b 00 00 00-57 6f 6c 6c 65 6e 20 53 |ng?Ñ+... Wollen S|
0060 69 65 20 64 69 65 20 43-68 61 72 67 65 6e 7a 75 |ie die C hargenzu|
0070 6f 72 64 6e 75 6e 67 20-76 6f 72 6e 65 68 6d 65 |ordnung  vornehme|
0080 6e 20 3f 0f 00 00 00 41-73 73 69 67 6e 20 62 61 |n ?....A ssign ba|
0090 74 63 68 65 73 3f d1 27-00 00 00 57 6f 6c 6c 65 |tches?Ñ' ...Wolle|
00a0 6e 20 53 69 65 20 64 69-65 20 4e 61 6d 65 6e 20 |n Sie di e Namen |
00b0 64 65 72 20 46 65 6c 64-65 72 20 73 65 68 65 6e |der Feld er sehen|
00c0 20 3f 11 00 00 00 56 69-65 77 20 66 69 65 6c 64 | ?....Vi ew field|
00d0 20 6e 61 6d 65 73 3f d1-40 00 00 00 57 6f 6c 6c | names?Ñ @...Woll|
00e0 65 6e 20 53 69 65 20 64-69 65 20 50 72 6f 64 75 |en Sie d ie Produ|
00f0 6b 74 69 6f 6e 73 6d 69-74 74 65 6c 20 76 6f 6e |ktionsmi ttel von|
0100 20 41 75 66 74 72 61 67-20 25 20 6a 65 74 7a 74 | Auftrag  % jetzt|
0110 20 62 65 61 72 62 65 69-74 65 6e 3f 3d 00 00 00 | bearbei ten?=...|
0120 44 6f 20 79 6f 75 20 77-61 6e 74 20 74 6f 20 6d |Do you w ant to m|
0130 6f 64 69 66 79 20 74 68-65 20 6d 65 61 6e 73 20 |odify th e means |
0140 6f 66 20 70 72 6f 64 75-63 74 69 6f 6e 20 6f 66 |of produ ction of|
0150 20 6f 72 64 65 72 20 25-20 6e 6f 77 3f d1 38 00 | order %  now?Ñ8.|
0160 00 00 57 6f 6c 6c 65 6e-20 53 69 65 20 64 69 65 |..Wollen  Sie die|
0170 20 57 65 72 74 65 20 7a-75 20 25 20 65 69 6e 6c | Werte z u % einl|
0180 65 73 65 6e 20 75 6e 64-20 25 20 70 65 72 20 25 |esen und  % per %|
0190 20 7a 75 6f 72 64 6e 65-6e 3f 41 00 00 00 44 6f | zuordne n?A...Do|
01a0 20 79 6f 75 20 77 69 73-68 20 74 6f 20 72 65 61 | you wis h to rea|
01b0 64 20 74 68 65 20 76 61-6c 75 65 73 20 6f 66 20 |d the va lues of |
01c0 25 20 61 6e 64 20 61 73-73 69 67 6e 20 74 68 65 |% and as sign the|
01d0 6d 20 74 6f 20 25 20 61-73 20 6f 66 20 25 3f d1 |m to % a s of %?Ñ|
01e0 28 00 00 00 57 6f 6c 6c-65 6e 20 53 69 65 20 64 |(...Woll en Sie d|
01f0 69 65 20 64 69 76 65 72-73 65 6e 20 44 61 74 65 |ie diver sen Date|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153cfe0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 65 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 65
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (65 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6e 20 65 72 66 61 73 73 |........ n erfass|
0010 65 6e 20 3f 1a 00 00 00-52 65 67 69 73 74 65 72 |en ?.... Register|
0020 20 74 68 65 20 76 61 72-69 6f 75 73 20 64 61 74 | the var ious dat|
0030 61 3f d1 33 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |a?Ñ3...W ollen Si|
0040 65 20 64 69 76 65 72 73-65 6e 20 44 61 74 65 6e |e divers en Daten|
0050 20 64 65 73 20 52 65 66-65 72 65 6e 7a 25 20 25 | des Ref erenz% %|
0060 20 6b 6f 70 69 65 72 65-6e 3f 25 00 00 00 43 6f | kopiere n?%...Co|
0070 70 79 20 76 61 72 69 6f-75 73 20 64 61 74 61 20 |py vario us data |
0080 66 72 6f 6d 20 72 65 66-65 72 65 6e 63 65 20 25 |from ref erence %|
0090 20 25 3f d1 2b 00 00 00-57 6f 6c 6c 65 6e 20 53 | %?Ñ+... Wollen S|
00a0 69 65 20 64 69 76 65 72-73 65 6e 20 44 61 74 65 |ie diver sen Date|
00b0 6e 20 76 6f 6e 20 25 20-25 20 6b 6f 70 69 65 72 |n von %  % kopier|
00c0 65 6e 3f 1b 00 00 00 43-6f 70 79 20 76 61 72 69 |en?....C opy vari|
00d0 6f 75 73 20 64 61 74 61-20 66 72 6f 6d 20 25 20 |ous data  from % |
00e0 25 3f d1 20 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |%?Ñ ...W ollen Si|
00f0 65 20 65 69 6e 20 41 6e-67 65 62 6f 74 20 64 72 |e ein An gebot dr|
0100 75 63 6b 65 6e 20 3f 0f-00 00 00 50 72 69 6e 74 |ucken ?. ...Print|
0110 20 61 6e 20 6f 66 66 65-72 3f d1 2e 00 00 00 57 | an offe r?Ñ....W|
0120 6f 6c 6c 65 6e 20 53 69-65 20 65 69 6e 65 20 41 |ollen Si e eine A|
0130 75 66 74 72 61 67 73 62-65 73 74 c3 a4 74 69 67 |uftragsb estätig|
0140 75 6e 67 20 64 72 75 63-6b 65 6e 20 3f 19 00 00 |ung druc ken ?...|
0150 00 50 72 69 6e 74 20 6f-72 64 65 72 20 63 6f 6e |.Print o rder con|
0160 66 69 72 6d 61 74 69 6f-6e 3f d1 23 00 00 00 57 |firmatio n?Ñ#...W|
0170 6f 6c 6c 65 6e 20 53 69-65 20 65 69 6e 65 20 42 |ollen Si e eine B|
0180 65 73 74 65 6c 6c 75 6e-67 20 61 6e 6c 65 67 65 |estellun g anlege|
0190 6e 3f 10 00 00 00 43 72-65 61 74 65 20 61 6e 20 |n?....Cr eate an |
01a0 6f 72 64 65 72 3f d1 23-00 00 00 57 6f 6c 6c 65 |order?Ñ# ...Wolle|
01b0 6e 20 53 69 65 20 65 69-6e 65 20 42 69 6c 64 64 |n Sie ei ne Bildd|
01c0 61 74 65 69 20 65 72 7a-65 75 67 65 6e 3f 15 00 |atei erz eugen?..|
01d0 00 00 43 72 65 61 74 65-20 61 6e 20 69 6d 61 67 |..Create  an imag|
01e0 65 20 66 69 6c 65 3f d1-40 00 00 00 57 6f 6c 6c |e file?Ñ @...Woll|
01f0 65 6e 20 53 69 65 20 65-69 6e 65 20 44 61 74 65 |en Sie e ine Date|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e8a0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-69 20 6d 69 74 20 64 65 |........ i mit de|
0010 72 20 53 74 72 75 6b 74-75 72 20 66 c3 bc 72 20 |r Strukt ur für |
0020 64 65 6e 20 49 6d 70 6f-72 74 20 65 72 7a 65 75 |den Impo rt erzeu|
0030 67 65 6e 3f 2a 00 00 00-47 65 6e 65 72 61 74 65 |gen?*... Generate|
0040 20 61 20 66 69 6c 65 20-77 69 74 68 20 73 74 72 | a file  with str|
0050 75 63 74 75 72 65 20 66-6f 72 20 69 6d 70 6f 72 |ucture f or impor|
0060 74 3f d1 21 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |t?Ñ!...W ollen Si|
0070 65 20 65 69 6e 65 20 45-4d 61 69 6c 20 76 65 72 |e eine E Mail ver|
0080 73 65 6e 64 65 6e 20 3f-1e 00 00 00 44 6f 20 79 |senden ? ....Do y|
0090 6f 75 20 77 69 73 68 20-74 6f 20 73 65 6e 64 20 |ou wish  to send |
00a0 61 6e 20 65 2d 6d 61 69-6c 3f d1 2d 00 00 00 57 |an e-mai l?Ñ-...W|
00b0 6f 6c 6c 65 6e 20 53 69-65 20 65 69 6e 65 20 4c |ollen Si e eine L|
00c0 69 65 66 65 72 75 6e 67-2f 52 65 63 68 6e 75 6e |ieferung /Rechnun|
00d0 67 20 65 72 66 61 73 73-65 6e 20 3f 1a 00 00 00 |g erfass en ?....|
00e0 52 65 67 69 73 74 65 72-20 64 65 6c 69 76 65 72 |Register  deliver|
00f0 79 2f 69 6e 76 6f 69 63-65 3f d1 30 00 00 00 57 |y/invoic e?Ñ0...W|
0100 6f 6c 6c 65 6e 20 53 69-65 20 65 69 6e 65 20 54 |ollen Si e eine T|
0110 65 73 74 2d 4c 69 7a 65-6e 7a 20 66 c3 bc 72 20 |est-Lize nz für |
0120 4d 6f 64 75 6c 20 25 20-6c c3 b6 73 65 6e 3f 22 |Modul %  lösen?"|
0130 00 00 00 41 70 70 6c 79-20 61 20 74 65 73 74 20 |...Apply  a test |
0140 6c 69 63 65 6e 73 65 20-66 6f 72 20 6d 6f 64 75 |license  for modu|
0150 6c 65 20 25 3f d1 2b 00-00 00 57 6f 6c 6c 65 6e |le %?Ñ+. ..Wollen|
0160 20 53 69 65 20 65 69 6e-65 20 69 6e 74 65 72 6e | Sie ein e intern|
0170 65 20 42 65 73 74 65 6c-6c 75 6e 67 20 61 6e 6c |e Bestel lung anl|
0180 65 67 65 6e 3f 19 00 00-00 43 72 65 61 74 65 20 |egen?... .Create |
0190 61 6e 20 69 6e 74 65 72-6e 61 6c 20 6f 72 64 65 |an inter nal orde|
01a0 72 3f d1 20 00 00 00 57-6f 6c 6c 65 6e 20 53 69 |r?Ñ ...W ollen Si|
01b0 65 20 65 69 6e 65 6e 20-25 2d 44 54 41 20 65 72 |e einen  %-DTA er|
01c0 7a 65 75 67 65 6e 3f 0f-00 00 00 43 72 65 61 74 |zeugen?. ...Creat|
01d0 65 20 61 20 25 20 44 54-41 3f d1 27 00 00 00 57 |e a % DT A?Ñ'...W|
01e0 6f 6c 6c 65 6e 20 53 69-65 20 65 69 6e 65 6e 20 |ollen Si e einen |
01f0 46 6f 6c 67 65 61 75 66-74 72 61 67 20 65 72 66 |Folgeauf trag erf|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 73 73 65 6e 3f 19 00 |........ assen?..|
0010 00 00 52 65 67 69 73 74-65 72 20 66 6f 6c 6c 6f |..Regist er follo|
0020 77 2d 75 70 20 6f 72 64-65 72 3f d1 2b 00 00 00 |w-up ord er?Ñ+...|
0030 57 6f 6c 6c 65 6e 20 53-69 65 20 65 69 6e 65 6e |Wollen S ie einen|
0040 20 4b 6f 6e 74 61 6b 74-2f 56 6f 72 66 61 6c 6c | Kontakt /Vorfall|
0050 20 65 72 66 61 73 73 65-6e 20 3f 1a 00 00 00 52 | erfasse n ?....R|
0060 65 67 69 73 74 65 72 20-63 6f 6e 74 61 63 74 2f |egister  contact/|
0070 69 6e 63 69 64 65 6e 74-3f d1 26 00 00 00 57 6f |incident ?Ñ&...Wo|
0080 6c 6c 65 6e 20 53 69 65-20 65 69 6e 65 6e 20 52 |llen Sie  einen R|
0090 c3 bc 73 74 73 63 68 65-69 6e 20 64 72 75 63 6b |üstsche in druck|
00a0 65 6e 20 3f 19 00 00 00-50 72 69 6e 74 20 61 20 |en ?.... Print a |
00b0 70 72 65 70 61 72 61 74-69 6f 6e 20 6e 6f 74 65 |preparat ion note|
00c0 3f d1 22 00 00 00 57 6f-6c 6c 65 6e 20 53 69 65 |?Ñ"...Wo llen Sie|
00d0 20 65 69 6e 65 6e 20 56-6f 72 66 61 6c 6c 20 65 | einen V orfall e|
00e0 72 66 61 73 73 65 6e 3f-12 00 00 00 52 65 67 69 |rfassen? ....Regi|
00f0 73 74 65 72 20 69 6e 63-69 64 65 6e 74 3f d1 2b |ster inc ident?Ñ+|
0100 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 65 69 |...Wolle n Sie ei|
0110 6e 65 6e 20 5a 61 68 6c-75 6e 67 73 65 69 6e 67 |nen Zahl ungseing|
0120 61 6e 67 20 6e 6f 74 69-65 72 65 6e 20 3f 18 00 |ang noti eren ?..|
0130 00 00 4e 6f 74 65 20 72-65 63 65 69 70 74 20 6f |..Note r eceipt o|
0140 66 20 70 61 79 6d 65 6e-74 3f d1 1b 00 00 00 57 |f paymen t?Ñ....W|
0150 6f 6c 6c 65 6e 20 53 69-65 20 65 72 73 74 20 53 |ollen Si e erst S|
0160 70 65 69 63 68 65 72 6e-20 3f 1a 00 00 00 44 6f |peichern  ?....Do|
0170 20 79 6f 75 20 77 61 6e-74 20 74 6f 20 73 61 76 | you wan t to sav|
0180 65 20 66 69 72 73 74 3f-d1 1d 00 00 00 57 6f 6c |e first? Ñ....Wol|
0190 6c 65 6e 20 53 69 65 20-6a 65 74 7a 74 20 61 75 |len Sie  jetzt au|
01a0 73 64 72 75 63 6b 65 6e-20 3f 0a 00 00 00 50 72 |sdrucken  ?....Pr|
01b0 69 6e 74 20 6e 6f 77 3f-d1 24 00 00 00 57 6f 6c |int now? Ñ$...Wol|
01c0 6c 65 6e 20 53 69 65 20-6e 75 72 20 64 69 65 73 |len Sie  nur dies|
01d0 65 20 4b 6c 61 73 73 65-20 74 65 73 74 65 6e 20 |e Klasse  testen |
01e0 3f 15 00 00 00 54 65 73-74 20 6f 6e 6c 79 20 74 |?....Tes t only t|
01f0 68 69 73 20 63 6c 61 73-73 3f d1 23 00 00 00 57 |his clas s?Ñ#...W|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 38 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 38
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (38 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 24 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 24
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153e4c0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (24 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6f 6c 6c 65 6e 20 53 69 |........ ollen Si|
0010 65 20 77 65 69 74 65 72-65 20 44 61 74 65 6e 20 |e weiter e Daten |
0020 65 72 66 61 73 73 65 6e-20 3f 25 00 00 00 44 6f |erfassen  ?%...Do|
0030 20 79 6f 75 20 77 61 6e-74 20 74 6f 20 72 65 67 | you wan t to reg|
0040 69 73 74 65 72 20 66 75-72 74 68 65 72 20 64 61 |ister fu rther da|
0050 74 61 3f d1 40 00 00 00-57 6f 6c 6c 65 6e 20 53 |ta?Ñ@... Wollen S|
0060 69 65 20 7a 75 20 54 65-73 74 7a 77 65 63 6b 65 |ie zu Te stzwecke|
0070 6e 20 52 6f 68 64 61 74-65 6e 20 28 6f 68 6e 65 |n Rohdat en (ohne|
0080 20 53 74 79 6c 65 53 68-65 65 74 20 25 29 20 65 | StyleSh eet %) e|
0090 72 7a 65 75 67 65 6e 3f-34 00 00 00 43 72 65 61 |rzeugen? 4...Crea|
00a0 74 65 20 72 61 77 20 64-61 74 61 20 28 77 69 74 |te raw d ata (wit|
00b0 68 6f 75 74 20 73 74 79-6c 65 20 73 68 65 65 74 |hout sty le sheet|
00c0 20 25 29 20 66 6f 72 20-74 65 73 74 69 6e 67 3f | %) for  testing?|
00d0 d1 40 00 00 00 57 6f 6c-6c 65 6e 20 53 69 65 20 |Ñ@...Wol len Sie |
00e0 7a 75 20 54 65 73 74 7a-77 65 63 6b 65 6e 20 52 |zu Testz wecken R|
00f0 6f 68 64 61 74 65 6e 20-28 6f 68 6e 65 20 53 74 |ohdaten  (ohne St|
0100 79 6c 65 73 68 65 65 74-20 25 29 20 65 72 7a 65 |ylesheet  %) erze|
0110 75 67 65 6e 3f 34 00 00-00 43 72 65 61 74 65 20 |ugen?4.. .Create |
0120 72 61 77 20 64 61 74 61-20 28 77 69 74 68 6f 75 |raw data  (withou|
0130 74 20 73 74 79 6c 65 20-73 68 65 65 74 20 25 29 |t style  sheet %)|
0140 20 66 6f 72 20 74 65 73-74 69 6e 67 3f d1 44 00 | for tes ting?ÑD.|
0150 00 00 57 6f 6c 6c 65 6e-20 53 69 65 20 7a 75 20 |..Wollen  Sie zu |
0160 54 65 73 74 7a 77 65 63-6b 65 6e 20 64 69 65 20 |Testzwec ken die |
0170 52 6f 68 64 61 74 65 6e-20 28 6f 68 6e 65 20 53 |Rohdaten  (ohne S|
0180 74 79 6c 65 73 68 65 65-74 20 25 29 20 65 72 7a |tyleshee t %) erz|
0190 65 75 67 65 6e 3f 34 00-00 00 43 72 65 61 74 65 |eugen?4. ..Create|
01a0 20 72 61 77 20 64 61 74-61 20 28 77 69 74 68 6f | raw dat a (witho|
01b0 75 74 20 73 74 79 6c 65-20 73 68 65 65 74 20 25 |ut style  sheet %|
01c0 29 20 66 6f 72 20 74 65-73 74 69 6e 67 3f d1 38 |) for te sting?Ñ8|
01d0 00 00 00 57 6f 6c 6c 65-6e 20 53 69 65 20 7a 75 |...Wolle n Sie zu|
01e0 20 54 65 73 74 7a 77 65-63 6b 65 6e 20 65 69 6e | Testzwe cken ein|
01f0 65 6e 20 6c 65 73 62 61-72 65 6e 20 25 2d 44 54 |en lesba ren %-DT|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153f490, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 68 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 52 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 68
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (68 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 52
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (52 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 56 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-41 20 65 72 7a 65 75 67 |........ A erzeug|
0010 65 6e 3f 2a 00 00 00 43-72 65 61 74 65 20 61 20 |en?*...C reate a |
0020 72 65 61 64 61 62 6c 65-20 25 2d 44 54 41 20 66 |readable  %-DTA f|
0030 6f 72 20 74 65 73 74 20-70 75 72 70 6f 73 65 73 |or test  purposes|
0040 3f d1 37 00 00 00 57 6f-6c 6c 65 6e 20 53 69 65 |?Ñ7...Wo llen Sie|
0050 20 7a 75 20 54 65 73 74-7a 77 65 63 6b 65 6e 20 | zu Test zwecken |
0060 65 69 6e 65 6e 20 6c 65-73 62 61 72 65 6e 20 44 |einen le sbaren D|
0070 54 41 20 65 72 7a 65 75-67 65 6e 20 3f 28 00 00 |TA erzeu gen ?(..|
0080 00 43 72 65 61 74 65 20-61 20 72 65 61 64 61 62 |.Create  a readab|
0090 6c 65 20 44 54 41 20 66-6f 72 20 74 65 73 74 20 |le DTA f or test |
00a0 70 75 72 70 6f 73 65 73-3f d1 2f 00 00 00 57 6f |purposes ?Ñ/...Wo|
00b0 6c 6c 65 6e 20 65 69 6e-65 20 52 65 63 68 6e 75 |llen ein e Rechnu|
00c0 6e 67 20 6c 74 2e 20 4c-61 67 65 72 61 75 73 67 |ng lt. L agerausg|
00d0 61 6e 67 20 61 6e 6c 65-67 65 6e 20 3f 28 00 00 |ang anle gen ?(..|
00e0 00 43 72 65 74 65 20 69-6e 76 6f 69 63 65 20 61 |.Crete i nvoice a|
00f0 63 63 6f 72 64 69 6e 67-20 74 6f 20 73 74 6f 63 |ccording  to stoc|
0100 6b 20 6f 75 74 70 75 74-3f d1 1f 00 00 00 57 c3 |k output ?Ñ....WÃ|
0110 a4 68 6c 65 6e 20 53 69-65 20 65 69 6e 65 20 49 |¤hlen Si e eine I|
0120 63 6f 6e 2d 44 61 74 65-69 20 61 75 73 13 00 00 |con-Date i aus...|
0130 00 53 65 6c 65 63 74 20-61 6e 20 69 63 6f 6e 20 |.Select  an icon |
0140 66 69 6c 65 d1 28 00 00-00 57 c3 bc 6e 73 63 68 |fileÑ(.. .Wünsch|
0150 65 6e 20 53 69 65 20 48-69 6c 66 65 20 66 c3 bc |en Sie H ilfe fü|
0160 72 20 64 69 65 20 4c 69-73 74 65 20 27 25 27 20 |r die Li ste '%' |
0170 3f 13 00 00 00 48 65 6c-70 20 66 6f 72 20 6c 69 |?....Hel p for li|
0180 73 74 20 27 25 27 20 3f-d1 33 00 00 00 57 c3 bc |st '%' ? Ñ3...Wü|
0190 6e 73 63 68 65 6e 20 53-69 65 20 65 69 6e 65 20 |nschen S ie eine |
01a0 45 69 6e 73 74 65 6c 6c-75 6e 67 20 64 65 72 20 |Einstell ung der |
01b0 52 65 63 68 74 65 20 66-c3 bc 72 20 3e 25 3c 3f |Rechte f ür >%<?|
01c0 19 00 00 00 43 6f 6e 66-69 67 75 72 65 20 72 69 |....Conf igure ri|
01d0 67 68 74 73 20 66 6f 72-20 3e 25 3c 3f d1 3c 00 |ghts for  >%<?Ñ<.|
01e0 00 00 57 c3 bc 6e 73 63-68 65 6e 20 53 69 65 20 |..Wünsc hen Sie |
01f0 65 69 6e 65 20 46 6f 72-74 73 65 74 7a 75 6e 67 |eine For tsetzung|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 42 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 56
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (56 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 42
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (42 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 55 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 55
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (55 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15407a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541230, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 64 65 73 20 41 62 6c |........  des Abl|
0010 61 75 66 65 73 20 74 72-6f 74 7a 20 50 72 6f 62 |aufes tr otz Prob|
0020 6c 65 6d 65 6e 3f 24 00-00 00 43 6f 6e 74 69 6e |lemen?$. ..Contin|
0030 75 65 20 70 72 6f 63 65-64 75 72 65 20 64 65 73 |ue proce dure des|
0040 70 69 74 65 20 70 72 6f-62 6c 65 6d 73 3f d1 40 |pite pro blems?Ñ@|
0050 00 00 00 57 c3 bc 6e 73-63 68 65 6e 20 53 69 65 |...Wüns chen Sie|
0060 20 65 69 6e 65 20 52 65-73 65 72 76 69 65 72 75 | eine Re servieru|
0070 6e 67 20 64 65 72 20 42-65 73 74 61 6e 64 74 65 |ng der B estandte|
0080 69 6c 65 20 64 65 73 20-41 72 74 69 6b 65 6c 73 |ile des  Artikels|
0090 20 25 3f 32 00 00 00 57-69 73 68 20 61 20 72 65 | %?2...W ish a re|
00a0 73 65 72 76 61 74 69 6f-6e 20 6f 66 20 61 6c 6c |servatio n of all|
00b0 20 63 6f 6d 70 6f 6e 65-6e 74 73 20 6f 66 20 61 | compone nts of a|
00c0 72 74 69 63 6c 65 20 25-3f d1 21 00 00 00 58 2d |rticle % ?Ñ!...X-|
00d0 50 72 69 6d 20 47 72 70-20 25 20 53 65 6b 20 47 |Prim Grp  % Sek G|
00e0 72 70 20 25 20 57 61 6e-74 65 64 20 3e 25 3c 21 |rp % Wan ted >%<!|
00f0 00 00 00 58 2d 50 72 69-6d 20 47 72 70 20 25 20 |...X-Pri m Grp % |
0100 53 65 6b 20 47 72 70 20-25 20 57 61 6e 74 65 64 |Sek Grp  % Wanted|
0110 20 3e 25 3c d1 08 00 00-00 5a 65 69 74 72 61 75 | >%<Ñ... .Zeitrau|
0120 6d 06 00 00 00 50 65 72-69 6f 64 d1 2b 00 00 00 |m....Per iodÑ+...|
0130 5a 65 72 74 69 66 69 6b-61 74 20 3c 25 3e 20 6b |Zertifik at <%> k|
0140 61 6e 6e 20 6e 69 63 68-74 20 64 65 63 6f 64 69 |ann nich t decodi|
0150 65 72 74 20 77 65 72 64-65 6e 2e 1e 00 00 00 43 |ert werd en.....C|
0160 61 6e 6e 6f 74 20 64 65-63 6f 64 65 20 63 65 72 |annot de code cer|
0170 74 69 66 69 63 61 74 65-20 3c 25 3e 2e d1 1e 00 |tificate  <%>.Ñ..|
0180 00 00 5a 65 72 74 69 66-69 6b 61 74 20 3c 25 3e |..Zertif ikat <%>|
0190 20 6e 69 63 68 74 20 67-65 66 75 6e 64 65 6e 2e | nicht g efunden.|
01a0 1a 00 00 00 43 65 72 74-69 66 69 63 61 74 65 20 |....Cert ificate |
01b0 3c 25 3e 20 6e 6f 74 20-66 6f 75 6e 64 2e d1 25 |<%> not  found.Ñ%|
01c0 00 00 00 5a 65 72 74 69-66 69 6b 61 74 2d 44 61 |...Zerti fikat-Da|
01d0 74 65 6e 20 3c 25 3e 20-6e 69 63 68 74 20 76 6f |ten <%>  nicht vo|
01e0 72 68 61 6e 64 65 6e 2e-1c 00 00 00 43 65 72 74 |rhanden. ....Cert|
01f0 69 66 69 63 61 74 65 20-64 61 74 61 20 3c 25 3e |ificate  data <%>|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 64 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 64
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (64 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 37 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-6d 69 73 73 69 6e 67 2e |........ missing.|
0010 d1 30 00 00 00 5a 65 72-74 69 66 69 6b 61 74 64 |Ñ0...Zer tifikatd|
0020 72 75 63 6b 20 66 c3 bc-72 20 43 68 61 72 67 65 |ruck fü r Charge|
0030 20 25 20 6e 69 63 68 74-20 66 72 65 69 67 65 67 | % nicht  freigeg|
0040 65 62 65 6e 21 2b 00 00-00 43 65 72 74 69 66 69 |eben!+.. .Certifi|
0050 63 61 74 65 20 70 72 69-6e 74 20 6e 6f 74 20 61 |cate pri nt not a|
0060 70 70 72 6f 76 65 64 20-66 6f 72 20 62 61 74 63 |pproved  for batc|
0070 68 20 25 21 d1 1d 00 00-00 5a 69 65 6c 2d 4c 61 |h %!Ñ... .Ziel-La|
0080 67 65 72 6f 72 74 20 6e-69 63 68 74 20 67 65 66 |gerort n icht gef|
0090 75 6e 64 65 6e 21 22 00-00 00 54 61 72 67 65 74 |unden!". ..Target|
00a0 20 73 74 6f 72 61 67 65-20 6c 6f 63 61 74 69 6f | storage  locatio|
00b0 6e 20 6e 6f 74 20 66 6f-75 6e 64 21 d1 04 00 00 |n not fo und!Ñ...|
00c0 00 5a 6f 6c 6c 07 00 00-00 43 75 73 74 6f 6d 73 |.Zoll... .Customs|
00d0 d1 58 00 00 00 5a 75 20-64 65 6d 20 61 6e 67 65 |ÑX...Zu  dem ange|
00e0 67 65 62 65 6e 65 6e 20-44 61 74 75 6d 20 75 6e |gebenen  Datum un|
00f0 64 20 64 65 72 20 48 61-75 73 62 61 6e 6b 20 65 |d der Ha usbank e|
0100 78 69 73 74 69 65 72 74-20 6b 65 69 6e 20 44 54 |xistiert  kein DT|
0110 41 20 28 25 20 6e 69 63-68 74 20 7a 75 6f 72 64 |A (% nic ht zuord|
0120 62 61 72 65 20 50 6f 73-74 65 6e 29 21 43 00 00 |bare Pos ten)!C..|
0130 00 4e 6f 20 44 54 41 20-66 6f 72 20 69 6e 64 69 |.No DTA  for indi|
0140 63 61 74 65 64 20 64 61-74 65 20 61 6e 64 20 6d |cated da te and m|
0150 61 69 6e 20 62 61 6e 6b-20 28 25 20 6e 6f 6e 20 |ain bank  (% non |
0160 61 74 74 72 69 62 75 74-61 62 6c 65 20 69 74 65 |attribut able ite|
0170 6d 73 29 21 d1 33 00 00-00 5a 75 6d 20 54 65 73 |ms)!Ñ3.. .Zum Tes|
0180 74 20 64 65 72 20 53 45-50 41 20 44 54 41 73 20 |t der SE PA DTAs |
0190 62 69 74 74 65 20 64 69-65 20 58 4d 4c 20 44 61 |bitte di e XML Da|
01a0 74 65 69 20 61 6e 73 65-68 65 6e 21 2f 00 00 00 |tei anse hen!/...|
01b0 50 6c 65 61 73 65 20 63-68 65 63 6b 20 58 4d 4c |Please c heck XML|
01c0 20 66 69 6c 65 20 66 6f-72 20 74 65 73 74 69 6e | file fo r testin|
01d0 67 20 6f 66 20 53 45 50-41 20 44 54 41 73 21 d1 |g of SEP A DTAs!Ñ|
01e0 27 00 00 00 5a 75 72 20-4b 65 6e 6e 74 6e 69 73 |'...Zur  Kenntnis|
01f0 73 6e 61 68 6d 65 2f 77-65 69 74 65 72 65 6e 20 |snahme/w eiteren |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 37
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15413c0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (37 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 48 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 48
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (48 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153fdb0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 88 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 67 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 88
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541fa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (88 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 67
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (67 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541fa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-42 65 61 72 62 65 69 74 |........ Bearbeit|
0010 75 6e 67 22 00 00 00 66-6f 72 20 69 6e 66 6f 72 |ung"...f or infor|
0020 6d 61 74 69 6f 6e 2f 66-75 72 74 68 65 72 20 70 |mation/f urther p|
0030 72 6f 63 65 73 73 69 6e-67 d1 5d 00 00 00 5a 75 |rocessin gÑ]...Zu|
0040 72 7a 65 69 74 20 6c c3-a4 75 66 74 20 62 65 72 |rzeit là ¤uft ber|
0050 65 69 74 73 20 65 69 6e-20 49 6d 70 6f 72 74 20 |eits ein  Import |
0060 76 69 61 20 43 41 53 59-54 52 41 4e 53 20 28 67 |via CASY TRANS (g|
0070 65 73 74 61 72 74 65 74-20 25 29 2e 20 53 69 65 |estartet  %). Sie|
0080 20 6d c3 bc 73 73 65 6e-20 64 61 73 20 45 6e 64 | müssen  das End|
0090 65 20 61 62 77 61 72 74-65 6e 21 42 00 00 00 4f |e abwart en!B...O|
00a0 6e 67 6f 69 6e 67 20 69-6d 70 6f 72 74 20 76 69 |ngoing i mport vi|
00b0 61 20 43 41 53 59 54 52-41 4e 53 20 28 73 74 61 |a CASYTR ANS (sta|
00c0 72 74 65 64 20 25 29 2e-20 4d 75 73 74 20 77 61 |rted %).  Must wa|
00d0 69 74 20 66 6f 72 20 69-74 20 74 6f 20 65 6e 64 |it for i t to end|
00e0 21 d1 0a 00 00 00 5a 75-73 74 65 6c 6c 75 6e 67 |!Ñ....Zu stellung|
00f0 08 00 00 00 44 65 6c 69-76 65 72 79 d1 0a 00 00 |....Deli veryÑ...|
0100 00 61 75 73 66 c3 bc 68-72 65 6e 07 00 00 00 65 |.ausfüh ren....e|
0110 78 65 63 75 74 65 d1 1d-00 00 00 63 61 73 79 4c |xecuteÑ. ...casyL|
0120 6f 63 61 6c 44 42 52 65-61 64 46 69 65 6c 64 49 |ocalDBRe adFieldI|
0130 6e 66 6f 28 25 2c 25 29-1d 00 00 00 63 61 73 79 |nfo(%,%) ....casy|
0140 4c 6f 63 61 6c 44 42 52-65 61 64 46 69 65 6c 64 |LocalDBR eadField|
0150 49 6e 66 6f 28 25 2c 25-29 d1 27 00 00 00 63 61 |Info(%,% )Ñ'...ca|
0160 73 79 4c 6f 63 61 6c 44-42 52 65 61 64 46 69 65 |syLocalD BReadFie|
0170 6c 64 49 6e 66 6f 28 25-2c 25 29 20 3d 20 57 20 |ldInfo(% ,%) = W |
0180 25 20 56 20 25 27 00 00-00 63 61 73 79 4c 6f 63 |% V %'.. .casyLoc|
0190 61 6c 44 42 52 65 61 64-46 69 65 6c 64 49 6e 66 |alDBRead FieldInf|
01a0 6f 28 25 2c 25 29 20 3d-20 57 20 25 20 56 20 25 |o(%,%) =  W % V %|
01b0 d1 1a 00 00 00 63 61 73-79 4c 6f 63 61 6c 44 42 |Ñ....cas yLocalDB|
01c0 52 65 61 64 46 6f 72 6d-49 6e 66 6f 28 25 29 1a |ReadForm Info(%).|
01d0 00 00 00 63 61 73 79 4c-6f 63 61 6c 44 42 52 65 |...casyL ocalDBRe|
01e0 61 64 46 6f 72 6d 49 6e-66 6f 28 25 29 d1 36 00 |adFormIn fo(%)Ñ6.|
01f0 00 00 63 61 73 79 4c 6f-63 61 6c 44 42 52 65 61 |..casyLo calDBRea|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541fa0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 93 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 66 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 93
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15424a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (93 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 66
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (66 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15424a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15424a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15424a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15424a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 26 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15424a0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 26
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542000, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (26 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-64 46 6f 72 6d 49 6e 66 |........ dFormInf|
0010 6f 28 25 29 20 3d 20 4f-52 20 25 20 25 20 25 20 |o(%) = O R % % % |
0020 25 20 43 52 20 25 20 25-20 25 20 25 20 4d 20 25 |% CR % %  % % M %|
0030 36 00 00 00 63 61 73 79-4c 6f 63 61 6c 44 42 52 |6...casy LocalDBR|
0040 65 61 64 46 6f 72 6d 49-6e 66 6f 28 25 29 20 3d |eadFormI nfo(%) =|
0050 20 4f 52 20 25 20 25 20-25 20 25 20 43 52 20 25 | OR % %  % % CR %|
0060 20 25 20 25 20 25 20 4d-20 25 d1 27 00 00 00 63 | % % % M  %Ñ'...c|
0070 61 73 79 4c 6f 63 61 6c-44 42 53 61 76 65 46 69 |asyLocal DBSaveFi|
0080 65 6c 64 49 6e 66 6f 28-25 2c 25 29 20 3d 20 57 |eldInfo( %,%) = W|
0090 20 25 20 56 20 25 27 00-00 00 63 61 73 79 4c 6f | % V %'. ..casyLo|
00a0 63 61 6c 44 42 53 61 76-65 46 69 65 6c 64 49 6e |calDBSav eFieldIn|
00b0 66 6f 28 25 2c 25 29 20-3d 20 57 20 25 20 56 20 |fo(%,%)  = W % V |
00c0 25 d1 36 00 00 00 63 61-73 79 4c 6f 63 61 6c 44 |%Ñ6...ca syLocalD|
00d0 42 53 61 76 65 46 6f 72-6d 49 6e 66 6f 28 25 29 |BSaveFor mInfo(%)|
00e0 20 3d 20 4f 52 20 25 20-25 20 25 20 25 20 43 52 | = OR %  % % % CR|
00f0 20 25 20 25 20 25 20 25-20 4d 20 25 36 00 00 00 | % % % %  M %6...|
0100 63 61 73 79 4c 6f 63 61-6c 44 42 53 61 76 65 46 |casyLoca lDBSaveF|
0110 6f 72 6d 49 6e 66 6f 28-25 29 20 3d 20 4f 52 20 |ormInfo( %) = OR |
0120 25 20 25 20 25 20 25 20-43 52 20 25 20 25 20 25 |% % % %  CR % % %|
0130 20 25 20 4d 20 25 d1 0b-00 00 00 63 68 65 63 6b | % M %Ñ. ...check|
0140 20 25 20 28 25 29 0b 00-00 00 63 68 65 63 6b 20 | % (%).. ..check |
0150 25 20 28 25 29 d1 0c 00-00 00 63 68 65 63 6b 20 |% (%)Ñ.. ..check |
0160 25 5b 25 5d 2e 25 0c 00-00 00 63 68 65 63 6b 20 |%[%].%.. ..check |
0170 25 5b 25 5d 2e 25 d1 0a-00 00 00 63 68 65 63 6b |%[%].%Ñ. ...check|
0180 20 66 6f 72 6d 0a 00 00-00 63 68 65 63 6b 20 66 | form... .check f|
0190 6f 72 6d d1 0b 00 00 00-63 68 65 63 6b 5f 67 72 |ormÑ.... check_gr|
01a0 70 20 25 0b 00 00 00 63-68 65 63 6b 5f 67 72 70 |p %....c heck_grp|
01b0 20 25 d1 0f 00 00 00 63-68 65 63 6b 5f 67 72 70 | %Ñ....c heck_grp|
01c0 5f 66 6c 64 20 25 0f 00-00 00 63 68 65 63 6b 5f |_fld %.. ..check_|
01d0 67 72 70 5f 66 6c 64 20-25 d1 2e 00 00 00 63 6f |grp_fld  %Ñ....co|
01e0 6e 66 69 72 6d 32 3a 20-4b 6f 6e 66 69 67 75 72 |nfirm2:  Konfigur|
01f0 61 74 69 6f 6e 73 66 65-68 6c 65 72 20 69 6e 20 |ationsfe hler in |

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 39 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 39
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (39 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 54 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 54
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (54 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1541c10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1542a70, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-56 61 72 69 61 62 6c 65 |........ Variable|
0010 20 27 25 27 2d 00 00 00-63 6f 6e 66 69 72 6d 32 | '%'-... confirm2|
0020 3a 20 63 6f 6e 66 69 67-75 72 61 74 69 6f 6e 20 |: config uration |
0030 65 72 72 6f 72 20 69 6e-20 76 61 72 69 61 62 6c |error in  variabl|
0040 65 20 27 25 27 d1 35 00-00 00 63 75 72 5f 66 69 |e '%'Ñ5. ..cur_fi|
0050 65 6c 64 5f 6e 61 6d 65-20 3c 25 3e 20 63 75 72 |eld_name  <%> cur|
0060 5f 67 72 6f 75 70 5f 6e-61 6d 65 20 3c 25 3e 20 |_group_n ame <%> |
0070 63 75 72 5f 67 72 6f 75-70 5f 72 6f 77 20 25 35 |cur_grou p_row %5|
0080 00 00 00 63 75 72 5f 66-69 65 6c 64 5f 6e 61 6d |...cur_f ield_nam|
0090 65 20 3c 25 3e 20 63 75-72 5f 67 72 6f 75 70 5f |e <%> cu r_group_|
00a0 6e 61 6d 65 20 3c 25 3e-20 63 75 72 5f 67 72 6f |name <%>  cur_gro|
00b0 75 70 5f 72 6f 77 20 25-d1 11 00 00 00 63 75 72 |up_row % Ñ....cur|
00c0 66 6f 72 6d 52 65 61 64-6f 6e 6c 79 20 25 11 00 |formRead only %..|
00d0 00 00 63 75 72 66 6f 72-6d 52 65 61 64 6f 6e 6c |..curfor mReadonl|
00e0 79 20 25 d1 0a 00 00 00-66 69 6c 65 6e 61 6d 65 |y %Ñ.... filename|
00f0 3d 25 0a 00 00 00 66 69-6c 65 6e 61 6d 65 3d 25 |=%....fi lename=%|
0100 d1 11 00 00 00 66 69 6c-6e 61 6d 65 20 3d 20 3c |Ñ....fil name = <|
0110 25 3e 2e 3c 25 3e 11 00-00 00 66 69 6c 6e 61 6d |%>.<%>.. ..filnam|
0120 65 20 3d 20 3c 25 3e 2e-3c 25 3e d1 09 00 00 00 |e = <%>. <%>Ñ....|
0130 66 69 6c 6e 61 6d 65 3d-25 09 00 00 00 66 69 6c |filname= %....fil|
0140 6e 61 6d 65 3d 25 d1 16-00 00 00 66 6c 64 20 25 |name=%Ñ. ...fld %|
0150 3a 20 72 2f 6f 20 25 20-66 6c 64 74 79 70 65 20 |: r/o %  fldtype |
0160 25 16 00 00 00 66 6c 64-20 25 3a 20 72 2f 6f 20 |%....fld  %: r/o |
0170 25 20 66 6c 64 74 79 70-65 20 25 d1 16 00 00 00 |% fldtyp e %Ñ....|
0180 66 6c 64 20 76 61 6c 75-65 20 6f 6e 20 6c 69 6e |fld valu e on lin|
0190 65 20 25 3a 20 25 16 00-00 00 66 6c 64 20 76 61 |e %: %.. ..fld va|
01a0 6c 75 65 20 6f 6e 20 6c-69 6e 65 20 25 3a 20 25 |lue on l ine %: %|
01b0 d1 06 00 00 00 66 6c 64-3a 20 25 06 00 00 00 66 |Ñ....fld : %....f|
01c0 6c 64 3a 20 25 d1 0b 00-00 00 66 6f 75 6e 64 5f |ld: %Ñ.. ..found_|
01d0 66 6c 64 20 25 0b 00 00-00 66 6f 75 6e 64 5f 66 |fld %... .found_f|
01e0 6c 64 20 25 d1 14 00 00-00 66 6f 75 6e 64 5f 67 |ld %Ñ... .found_g|
01f0 72 70 20 25 20 28 75 73-65 64 20 25 29 14 00 00 |rp % (us ed %)...|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 45 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 45
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (45 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 53 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 53
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (53 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 20 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 66 6f 75 6e 64 5f 67 |........ .found_g|
0010 72 70 20 25 20 28 75 73-65 64 20 25 29 d1 0f 00 |rp % (us ed %)Ñ..|
0020 00 00 66 6f 75 6e 64 5f-67 72 70 5f 66 6c 64 20 |..found_ grp_fld |
0030 25 0f 00 00 00 66 6f 75-6e 64 5f 67 72 70 5f 66 |%....fou nd_grp_f|
0040 6c 64 20 25 d1 0a 00 00-00 67 72 70 20 25 3a 20 |ld %Ñ... .grp %: |
0050 72 2f 6f 0a 00 00 00 67-72 70 20 25 3a 20 72 2f |r/o....g rp %: r/|
0060 6f d1 10 00 00 00 69 6c-6c 65 67 61 6c 20 62 65 |oÑ....il legal be|
0070 6e 75 74 7a 74 3a 0e 00-00 00 69 6c 6c 65 67 61 |nutzt:.. ..illega|
0080 6c 79 20 75 73 65 64 3a-d1 1b 00 00 00 6b 65 69 |ly used: Ñ....kei|
0090 6e 65 20 66 65 68 6c 65-6e 64 65 6e 20 5a 75 6f |ne fehle nden Zuo|
00a0 72 64 6e 75 6e 67 65 6e-16 00 00 00 6e 6f 20 6d |rdnungen ....no m|
00b0 69 73 73 69 6e 67 20 61-6c 6c 6f 63 61 74 69 6f |issing a llocatio|
00c0 6e 73 d1 1d 00 00 00 6b-65 69 6e 65 20 67 6c 65 |nsÑ....k eine gle|
00d0 69 63 68 62 6c 65 69 62-65 6e 64 65 6e 20 4b 6f |ichbleib enden Ko|
00e0 6e 74 65 6e 16 00 00 00-6e 6f 20 63 6f 6e 74 69 |nten.... no conti|
00f0 6e 75 6f 75 73 20 61 63-63 6f 75 6e 74 73 d1 0a |nuous ac countsÑ.|
0100 00 00 00 6b 65 79 53 68-69 66 74 46 34 0a 00 00 |...keySh iftF4...|
0110 00 6b 65 79 53 68 69 66-74 46 34 d1 0a 00 00 00 |.keyShif tF4Ñ....|
0120 6b 65 79 53 68 69 66 74-46 35 0a 00 00 00 6b 65 |keyShift F5....ke|
0130 79 53 68 69 66 74 46 35-d1 16 00 00 00 6c 69 6b |yShiftF5 Ñ....lik|
0140 65 32 6d 61 74 63 68 3a-20 3c 25 3e 20 2d 3e 20 |e2match:  <%> -> |
0150 3c 25 3e 16 00 00 00 6c-69 6b 65 32 6d 61 74 63 |<%>....l ike2matc|
0160 68 3a 20 3c 25 3e 20 2d-3e 20 3c 25 3e d1 10 00 |h: <%> - > <%>Ñ..|
0170 00 00 6c 69 6e 64 65 78-3a 20 25 20 69 64 78 3a |..lindex : % idx:|
0180 20 25 10 00 00 00 6c 69-6e 64 65 78 3a 20 25 20 | %....li ndex: % |
0190 69 64 78 3a 20 25 d1 09-00 00 00 6d 61 74 63 68 |idx: %Ñ. ...match|
01a0 65 64 20 25 09 00 00 00-6d 61 74 63 68 65 64 20 |ed %.... matched |
01b0 25 d1 1b 00 00 00 6e 61-63 68 20 66 72 65 69 65 |%Ñ....na ch freie|
01c0 6d 20 50 72 6f 66 69 6c-20 28 4e 75 74 7a 65 6e |m Profil  (Nutzen|
01d0 29 15 00 00 00 62 79 20-66 72 65 65 20 70 72 6f |)....by  free pro|
01e0 66 69 6c 65 20 28 75 73-65 29 d1 15 00 00 00 6f |file (us e)Ñ....o|
01f0 62 6a 50 72 6f 70 73 52-65 73 74 6f 72 65 28 25 |bjPropsR estore(%|

token.c:2111:tds_get_data(): wire column size is 20 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 20
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (20 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 14 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x15431d0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 14
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (14 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 16 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 16
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (16 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-2c 20 25 29 15 00 00 00 |........ , %)....|
0010 6f 62 6a 50 72 6f 70 73-52 65 73 74 6f 72 65 28 |objProps Restore(|
0020 25 2c 20 25 29 d1 15 00-00 00 6f 62 6a 50 72 6f |%, %)Ñ.. ..objPro|
0030 70 73 53 61 76 65 28 25-29 20 3d 20 3c 25 3e 15 |psSave(% ) = <%>.|
0040 00 00 00 6f 62 6a 50 72-6f 70 73 53 61 76 65 28 |...objPr opsSave(|
0050 25 29 20 3d 20 3c 25 3e-d1 12 00 00 00 6f 62 6a |%) = <%> Ñ....obj|
0060 50 72 6f 70 73 53 61 76-65 28 25 2c 20 25 29 12 |PropsSav e(%, %).|
0070 00 00 00 6f 62 6a 50 72-6f 70 73 53 61 76 65 28 |...objPr opsSave(|
0080 25 2c 20 25 29 d1 0f 00-00 00 6f 68 6e 65 20 54 |%, %)Ñ.. ..ohne T|
0090 65 69 6c 6e 65 68 6d 65-72 13 00 00 00 77 69 74 |eilnehme r....wit|
00a0 68 6f 75 74 20 70 61 72-74 69 63 69 70 61 6e 74 |hout par ticipant|
00b0 d1 2b 00 00 00 6f 70 67-5f 73 71 6c 5f 70 72 6f |Ñ+...opg _sql_pro|
00c0 63 65 73 73 5f 6b 65 79-3a 20 75 6e 6b 6e 6f 77 |cess_key : unknow|
00d0 6e 20 5f 5f 43 6f 6c 20-6e 61 6d 65 20 22 25 22 |n __Col  name "%"|
00e0 2b 00 00 00 6f 70 67 5f-73 71 6c 5f 70 72 6f 63 |+...opg_ sql_proc|
00f0 65 73 73 5f 6b 65 79 3a-20 75 6e 6b 6e 6f 77 6e |ess_key:  unknown|
0100 20 5f 5f 43 6f 6c 20 6e-61 6d 65 20 22 25 22 d1 | __Col n ame "%"Ñ|
0110 32 00 00 00 6f 70 67 5f-73 71 6c 5f 70 72 6f 63 |2...opg_ sql_proc|
0120 65 73 73 5f 72 61 6e 64-6f 6d 3a 20 67 6f 74 20 |ess_rand om: got |
0130 69 6e 76 61 6c 69 64 20-5f 5f 52 6f 77 20 74 79 |invalid  __Row ty|
0140 70 65 20 22 25 22 32 00-00 00 6f 70 67 5f 73 71 |pe "%"2. ..opg_sq|
0150 6c 5f 70 72 6f 63 65 73-73 5f 72 61 6e 64 6f 6d |l_proces s_random|
0160 3a 20 67 6f 74 20 69 6e-76 61 6c 69 64 20 5f 5f |: got in valid __|
0170 52 6f 77 20 74 79 70 65-20 22 25 22 d1 3c 00 00 |Row type  "%"Ñ<..|
0180 00 6f 70 67 5f 73 71 6c-5f 70 72 6f 63 65 73 73 |.opg_sql _process|
0190 5f 72 61 6e 64 6f 6d 3a-20 69 6c 6c 65 67 61 6c |_random:  illegal|
01a0 20 5f 5f 52 6f 77 20 76-61 6c 75 65 20 22 25 22 | __Row v alue "%"|
01b0 20 28 25 2e 75 73 65 64-20 3d 20 25 29 3c 00 00 | (%.used  = %)<..|
01c0 00 6f 70 67 5f 73 71 6c-5f 70 72 6f 63 65 73 73 |.opg_sql _process|
01d0 5f 72 61 6e 64 6f 6d 3a-20 69 6c 6c 65 67 61 6c |_random:  illegal|
01e0 20 5f 5f 52 6f 77 20 76-61 6c 75 65 20 22 25 22 | __Row v alue "%"|
01f0 20 28 25 2e 75 73 65 64-20 3d 20 25 29 d1 2e 00 | (%.used  = %)Ñ..|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 18 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 18
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (18 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543e10, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1543210, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544c00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 50 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544bc0, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 50
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544c00, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (50 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 60 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 60
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (60 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-00 00 6f 70 67 5f 73 71 |........ ..opg_sq|
0010 6c 5f 70 72 6f 63 65 73-73 5f 72 61 6e 64 6f 6d |l_proces s_random|
0020 3a 20 75 6e 6b 6e 6f 77-6e 20 5f 5f 43 6f 6c 20 |: unknow n __Col |
0030 6e 61 6d 65 20 22 25 22-2e 00 00 00 6f 70 67 5f |name "%" ....opg_|
0040 73 71 6c 5f 70 72 6f 63-65 73 73 5f 72 61 6e 64 |sql_proc ess_rand|
0050 6f 6d 3a 20 75 6e 6b 6e-6f 77 6e 20 5f 5f 43 6f |om: unkn own __Co|
0060 6c 20 6e 61 6d 65 20 22-25 22 d1 39 00 00 00 6f |l name " %"Ñ9...o|
0070 70 67 5f 73 79 73 5f 69-6e 5f 6c 69 73 74 3a 20 |pg_sys_i n_list: |
0080 50 61 72 61 6d 65 74 65-72 66 65 68 6c 65 72 20 |Paramete rfehler |
0090 28 74 79 70 65 28 6c 69-73 74 29 20 21 3d 20 22 |(type(li st) != "|
00a0 74 61 62 6c 65 22 29 21-39 00 00 00 6f 70 67 5f |table")! 9...opg_|
00b0 73 79 73 5f 69 6e 5f 6c-69 73 74 3a 20 50 61 72 |sys_in_l ist: Par|
00c0 61 6d 65 74 65 72 20 65-72 72 6f 72 20 28 74 79 |ameter e rror (ty|
00d0 70 65 28 6c 69 73 74 29-20 21 3d 20 22 74 61 62 |pe(list)  != "tab|
00e0 6c 65 22 29 21 d1 3d 00-00 00 6f 70 67 5f 73 79 |le")!Ñ=. ..opg_sy|
00f0 73 5f 6e 6f 74 5f 69 6e-5f 6c 69 73 74 3a 20 50 |s_not_in _list: P|
0100 61 72 61 6d 65 74 65 72-66 65 68 6c 65 72 20 28 |arameter fehler (|
0110 74 79 70 65 28 6c 69 73-74 29 20 21 3d 20 22 74 |type(lis t) != "t|
0120 61 62 6c 65 22 29 21 3d-00 00 00 6f 70 67 5f 73 |able")!= ...opg_s|
0130 79 73 5f 6e 6f 74 5f 69-6e 5f 6c 69 73 74 3a 20 |ys_not_i n_list: |
0140 50 61 72 61 6d 65 74 65-72 20 65 72 72 6f 72 20 |Paramete r error |
0150 28 74 79 70 65 28 6c 69-73 74 29 20 21 3d 20 22 |(type(li st) != "|
0160 74 61 62 6c 65 22 29 21-d1 20 00 00 00 6f 70 67 |table")! Ñ ...opg|
0170 5f 73 79 73 5f 70 69 78-62 75 66 5f 66 72 6f 6d |_sys_pix buf_from|
0180 5f 73 74 72 69 6e 67 3a-20 25 3a 20 25 20 00 00 |_string:  %: % ..|
0190 00 6f 70 67 5f 73 79 73-5f 70 69 78 62 75 66 5f |.opg_sys _pixbuf_|
01a0 66 72 6f 6d 5f 73 74 72-69 6e 67 3a 20 25 3a 20 |from_str ing: %: |
01b0 25 d1 1e 00 00 00 6f 70-67 5f 73 79 73 5f 70 69 |%Ñ....op g_sys_pi|
01c0 78 62 75 66 5f 73 65 72-69 61 6c 69 7a 65 3a 20 |xbuf_ser ialize: |
01d0 25 3a 20 25 1e 00 00 00-6f 70 67 5f 73 79 73 5f |%: %.... opg_sys_|
01e0 70 69 78 62 75 66 5f 73-65 72 69 61 6c 69 7a 65 |pixbuf_s erialize|
01f0 3a 20 25 3a 20 25 d1 3d-00 00 00 6f 70 67 5f 73 |: %: %Ñ= ...opg_s|

token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 57 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 57
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (57 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-79 73 5f 72 69 67 68 74 |........ ys_right|
0010 5f 73 65 74 5f 70 72 6f-66 69 6c 65 28 31 29 3a |_set_pro file(1):|
0020 20 50 72 69 6d 20 47 72-70 20 25 20 53 65 6b 20 | Prim Gr p % Sek |
0030 47 72 70 20 25 20 57 61-6e 74 65 64 20 3e 25 3c |Grp % Wa nted >%<|
0040 3d 00 00 00 6f 70 67 5f-73 79 73 5f 72 69 67 68 |=...opg_ sys_righ|
0050 74 5f 73 65 74 5f 70 72-6f 66 69 6c 65 28 31 29 |t_set_pr ofile(1)|
0060 3a 20 50 72 69 6d 20 47-72 70 20 25 20 53 65 6b |: Prim G rp % Sek|
0070 20 47 72 70 20 25 20 57-61 6e 74 65 64 20 3e 25 | Grp % W anted >%|
0080 3c d1 3d 00 00 00 6f 70-67 5f 73 79 73 5f 72 69 |<Ñ=...op g_sys_ri|
0090 67 68 74 5f 73 65 74 5f-70 72 6f 66 69 6c 65 28 |ght_set_ profile(|
00a0 32 29 3a 20 50 72 69 6d-20 47 72 70 20 25 20 53 |2): Prim  Grp % S|
00b0 65 6b 20 47 72 70 20 25-20 57 61 6e 74 65 64 20 |ek Grp %  Wanted |
00c0 3e 25 3c 3d 00 00 00 6f-70 67 5f 73 79 73 5f 72 |>%<=...o pg_sys_r|
00d0 69 67 68 74 5f 73 65 74-5f 70 72 6f 66 69 6c 65 |ight_set _profile|
00e0 28 32 29 3a 20 50 72 69-6d 20 47 72 70 20 25 20 |(2): Pri m Grp % |
00f0 53 65 6b 20 47 72 70 20-25 20 57 61 6e 74 65 64 |Sek Grp  % Wanted|
0100 20 3e 25 3c d1 3d 00 00-00 6f 70 67 5f 73 79 73 | >%<Ñ=.. .opg_sys|
0110 5f 72 69 67 68 74 5f 73-65 74 5f 70 72 6f 66 69 |_right_s et_profi|
0120 6c 65 28 58 29 3a 20 50-72 69 6d 20 47 72 70 20 |le(X): P rim Grp |
0130 25 20 53 65 6b 20 47 72-70 20 25 20 57 61 6e 74 |% Sek Gr p % Want|
0140 65 64 20 3e 25 3c 3d 00-00 00 6f 70 67 5f 73 79 |ed >%<=. ..opg_sy|
0150 73 5f 72 69 67 68 74 5f-73 65 74 5f 70 72 6f 66 |s_right_ set_prof|
0160 69 6c 65 28 58 29 3a 20-50 72 69 6d 20 47 72 70 |ile(X):  Prim Grp|
0170 20 25 20 53 65 6b 20 47-72 70 20 25 20 57 61 6e | % Sek G rp % Wan|
0180 74 65 64 20 3e 25 3c d1-22 00 00 00 6f 70 67 5f |ted >%<Ñ "...opg_|
0190 73 79 73 5f 72 69 67 68-74 5f 73 65 74 5f 70 72 |sys_righ t_set_pr|
01a0 6f 66 69 6c 65 3a 20 63-6c 65 61 72 65 64 22 00 |ofile: c leared".|
01b0 00 00 6f 70 67 5f 73 79-73 5f 72 69 67 68 74 5f |..opg_sy s_right_|
01c0 73 65 74 5f 70 72 6f 66-69 6c 65 3a 20 63 6c 65 |set_prof ile: cle|
01d0 61 72 65 64 d1 28 00 00-00 6f 70 67 5f 73 79 73 |aredÑ(.. .opg_sys|
01e0 5f 72 69 67 68 74 5f 73-65 74 5f 70 72 6f 66 69 |_right_s et_profi|
01f0 6c 65 3a 20 73 61 76 65-64 20 47 72 70 20 3e 25 |le: save d Grp >%|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 61 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 61
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (61 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
net.c:555:Received header
0000 04 01 01 ae 00 00 00 00-                        |...®....|

net.c:609:Received packet
0000 04 01 01 ae 00 00 00 00-3c 28 00 00 00 6f 70 67 |...®.... <(...opg|
0010 5f 73 79 73 5f 72 69 67-68 74 5f 73 65 74 5f 70 |_sys_rig ht_set_p|
0020 72 6f 66 69 6c 65 3a 20-73 61 76 65 64 20 47 72 |rofile:  saved Gr|
0030 70 20 3e 25 3c d1 0a 00-00 00 6f 70 78 5f 62 61 |p >%<Ñ.. ..opx_ba|
0040 73 65 3d 25 0a 00 00 00-6f 70 78 5f 62 61 73 65 |se=%.... opx_base|
0050 3d 25 d1 0c 00 00 00 70-69 78 62 75 66 3a 20 25 |=%Ñ....p ixbuf: %|
0060 3a 20 25 0c 00 00 00 70-69 78 62 75 66 3a 20 25 |: %....p ixbuf: %|
0070 3a 20 25 d1 0b 00 00 00-73 71 6c 73 74 72 69 6e |: %Ñ.... sqlstrin|
0080 67 3d 25 0b 00 00 00 73-71 6c 73 74 72 69 6e 67 |g=%....s qlstring|
0090 3d 25 d1 0a 00 00 00 75-6e 62 65 6e 75 74 7a 74 |=%Ñ....u nbenutzt|
00a0 3a 07 00 00 00 75 6e 75-73 65 64 3a d1 17 00 00 |:....unu sed:Ñ...|
00b0 00 75 70 64 61 74 65 20-52 65 73 65 72 76 69 65 |.update  Reservie|
00c0 72 74 20 25 20 25 20 25-15 00 00 00 75 70 64 61 |rt % % % ....upda|
00d0 74 65 20 72 65 73 65 72-76 65 64 20 25 20 25 20 |te reser ved % % |
00e0 25 d1 05 00 00 00 75 72-6c 20 25 05 00 00 00 75 |%Ñ....ur l %....u|
00f0 72 6c 20 25 d1 09 00 00-00 78 73 6c 66 69 6c 65 |rl %Ñ... .xslfile|
0100 3d 25 09 00 00 00 78 73-6c 66 69 6c 65 3d 25 d1 |=%....xs lfile=%Ñ|
0110 09 00 00 00 78 73 6c 6e-61 6d 65 3d 25 09 00 00 |....xsln ame=%...|
0120 00 78 73 6c 6e 61 6d 65-3d 25 d1 2e 00 00 00 79 |.xslname =%Ñ....y|
0130 2d 5a 65 69 6c 65 6e 20-6b c3 b6 6e 6e 65 6e 20 |-Zeilen  können |
0140 68 69 65 72 20 6e 69 63-68 74 20 62 65 61 72 62 |hier nic ht bearb|
0150 65 69 74 65 74 20 77 65-72 64 65 6e 21 1e 00 00 |eitet we rden!...|
0160 00 79 20 6c 69 6e 65 73-20 63 61 6e 6e 6f 74 20 |.y lines  cannot |
0170 62 65 20 65 64 69 74 65-64 20 68 65 72 65 21 d1 |be edite d here!Ñ|
0180 11 00 00 00 7e 6e 75 6d-6d 65 72 6e 20 62 65 6e |....~num mern ben|
0190 75 74 7a 74 3a 0c 00 00-00 6e 75 6d 62 65 72 73 |utzt:... .numbers|
01a0 20 75 73 65 64 fd 10 00-02 00 e3 04 00 00       | usedý.. ..ã...|

token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 23 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 23
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (23 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544e50, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 46 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 30 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 46
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (46 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 30
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (30 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c0c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 17 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e4ff0, 0x13e4ff0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 17
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x153ce40, 0x7fff77c33af0, 0x14bd200, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (17 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x7fff77c33a40, 0x1544ea0, 0x7fff77c33af0, 0x131a060, 0x7fff77c33a3c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x7fff77c33c9c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33c98)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33c08, 0x7fff77c33c0c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1251
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x7fff77c339ac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c337d8, 0x7fff77c337dc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0xf98258, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 17 00 00 00 00-21 0a 01 00 00 00 20 20 |........ !.....  |
0010 20 20 73 65 6c 65 63 74-20 64 69 73 74 69 6e 63 |  select  distinc|
0020 74 20 4b 65 79 76 61 6c-20 3d 20 46 6f 72 6d 54 |t Keyval  = FormT|
0030 65 78 74 44 2c 20 54 72-61 6e 73 6c 61 74 69 6f |extD, Tr anslatio|
0040 6e 20 3d 20 46 6f 72 6d-54 65 78 74 45 0a 20 20 |n = Form TextE.  |
0050 20 20 66 72 6f 6d 20 63-61 73 79 2e 2e 46 6f 72 |  from c asy..For|
0060 6d 54 65 78 74 20 74 2c-20 63 61 73 79 2e 2e 46 |mText t,  casy..F|
0070 6f 72 6d 54 65 78 74 55-73 65 20 75 0a 20 20 20 |ormTextU se u.   |
0080 20 77 68 65 72 65 20 74-2e 46 6f 72 6d 54 65 78 | where t .FormTex|
0090 74 49 44 20 3d 20 75 2e-46 6f 72 6d 54 65 78 74 |tID = u. FormText|
00a0 49 44 20 61 6e 64 20 46-6f 72 6d 4f 62 6a 20 6c |ID and F ormObj l|
00b0 69 6b 65 20 22 25 22 0a-20 20 20 20 20 20 61 6e |ike "%".       an|
00c0 64 20 75 2e 46 6f 72 6d-49 44 20 3d 20 22 6f 70 |d u.Form ID = "op|
00d0 67 5f 64 61 73 68 62 6f-61 72 64 22 0a 20 20 20 |g_dashbo ard".   |
00e0 20 20 20 61 6e 64 20 46-6f 72 6d 54 65 78 74 45 |   and F ormTextE|
00f0 20 69 73 20 6e 6f 74 20-6e 75 6c 6c 0a 20 20 20 | is not  null.   |
0100 20 6f 72 64 65 72 20 62-79 20 46 6f 72 6d 54 65 | order b y FormTe|
0110 78 74 44 0a 20 20 0a   -                        |xtD.  .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x158f55c)
token.c:540:tds_process_tokens(0x1428120, 0x158f388, 0x158f38c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 01 41 00 00 00 00-                        |...A....|

net.c:609:Received packet
0000 04 01 01 41 00 00 00 00-61 5b 00 00 00 02 00 06 |...A.... a[......|
0010 4b 65 79 76 61 6c 00 00-08 46 6f 72 6d 54 65 78 |Keyval.. .FormTex|
0020 74 09 46 6f 72 6d 54 65-78 74 44 30 00 00 00 02 |t.FormTe xtD0....|
0030 00 00 00 af fe 01 00 00-00 0b 54 72 61 6e 73 6c |...¯þ... ..Transl|
0040 61 74 69 6f 6e 00 00 08-46 6f 72 6d 54 65 78 74 |ation... FormText|
0050 09 46 6f 72 6d 54 65 78-74 45 30 00 00 00 02 00 |.FormTex tE0.....|
0060 00 00 af fe 01 00 00 00-ae 02 00 00 00 a9 01 00 |..¯þ.... ®....©..|
0070 01 d1 06 00 00 00 46 6f-72 6d 49 44 06 00 00 00 |.Ñ....Fo rmID....|
0080 46 6f 72 6d 49 44 d1 0c-00 00 00 46 6f 72 6d 52 |FormIDÑ. ...FormR|
0090 65 66 65 72 65 6e 7a 0c-00 00 00 46 6f 72 6d 52 |eferenz. ...FormR|
00a0 65 66 65 72 65 6e 7a d1-0b 00 00 00 46 72 61 6d |eferenzÑ ....Fram|
00b0 65 54 61 72 67 65 74 0b-00 00 00 46 72 61 6d 65 |eTarget. ...Frame|
00c0 54 61 72 67 65 74 d1 04-00 00 00 48 6f 6d 65 04 |TargetÑ. ...Home.|
00d0 00 00 00 48 6f 6d 65 d1-0d 00 00 00 4b 6f 6e 66 |...HomeÑ ....Konf|
00e0 69 67 75 72 61 74 69 6f-6e 0d 00 00 00 43 6f 6e |iguratio n....Con|
00f0 66 69 67 75 72 61 74 69-6f 6e d1 05 00 00 00 4c |figurati onÑ....L|
0100 66 64 4e 72 05 00 00 00-53 65 72 4e 6f d1 06 00 |fdNr.... SerNoÑ..|
0110 00 00 53 74 61 74 75 73-06 00 00 00 53 74 61 74 |..Status ....Stat|
0120 75 73 d1 06 00 00 00 55-73 65 72 49 64 07 00 00 |usÑ....U serId...|
0130 00 55 73 65 72 20 49 44-fd 10 00 02 00 08 00 00 |.User ID ý.......|
0140 00                     -                        |.|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[Keyval]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[Translation]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x158f5ec, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x158f4a0)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x158f4a0)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x158f2fc)
token.c:540:tds_process_tokens(0x1428120, 0x158f128, 0x158f12c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x158f38c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x158f190)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x158f240, 0x12965c0, (nil), 0x15983a0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x158f190)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x158f240, 0x13eb8c0, (nil), 0x15983d8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 12 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 12
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (12 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
token.c:540:tds_process_tokens(0x1428120, 0x158f55c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1591b50, 0x1591b50, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15bb440, 0x158f440, 0x12965c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x158f390, 0x15b8fd0, 0x158f440, 0x13eb8c0, 0x158f38c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f5ec)
ct.c:1122:ct_results(0x14285c0, 0x158f5e8)
token.c:540:tds_process_tokens(0x1428120, 0x158f558, 0x158f55c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 8
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x158f2fc)
token.c:540:tds_process_tokens(0x1428120, 0x158f128, 0x158f12c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14cb368, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 81 00 00 00 00-21 74 00 00 00 00 20 20 |........ !t....  |
0010 73 65 6c 65 63 74 20 75-2e 55 73 65 72 49 64 20 |select u .UserId |
0020 0a 20 20 20 20 20 20 20-20 20 20 20 20 66 72 6f |.             fro|
0030 6d 20 63 61 73 79 2e 2e-55 73 65 72 73 20 75 0a |m casy.. Users u.|
0040 20 20 20 20 20 20 20 20-20 20 20 20 77 68 65 72 |             wher|
0050 65 20 55 73 65 72 4e 61-6d 65 20 3d 20 6e 75 6c |e UserNa me = nul|
0060 6c 20 61 6e 64 20 75 2e-55 73 65 72 41 63 63 6f |l and u. UserAcco|
0070 75 6e 74 20 3d 20 30 0a-20 20 20 20 20 20 20 20 |unt = 0.         |
0080 0a                     -                        |.|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x158f29c)
token.c:540:tds_process_tokens(0x1428120, 0x158f0c8, 0x158f0cc, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 41 00 00 00 00-                        |...A....|

net.c:609:Received packet
0000 04 01 00 41 00 00 00 00-61 27 00 00 00 01 00 00 |...A.... a'......|
0010 04 63 61 73 79 07 6b 6f-6d 6d 65 72 7a 05 55 73 |.casy.ko mmerz.Us|
0020 65 72 73 06 55 73 65 72-49 64 10 00 00 00 06 00 |ers.User Id......|
0030 00 00 34 00 ae 01 00 00-fd 10 00 02 00 00 00 00 |..4.®... ý.......|
0040 00                     -                        |.|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[UserId]
token.c:1844:	flags=10 utype=6 type=52 varint=0
token.c:1847:	colsize=2 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x158f32c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x158f1e0)
ct.c:1907:_ct_get_client_type(type 52, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 52
ct.c:1122:ct_results(0x14285c0, 0x158f03c)
token.c:540:tds_process_tokens(0x1428120, 0x158ee68, 0x158ee6c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 1
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:2346:ct_res_info(0x14285c0, 803, 0x158f0cc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x158eed0)
ct.c:1907:_ct_get_client_type(type 52, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 52
ct.c:1457:ct_bind(0x14285c0, 1, 0x158ef80, 0x15a5ce0, (nil), 0x1524db0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x158f32c)
ct.c:1122:ct_results(0x14285c0, 0x158f328)
ct.c:1122:ct_results(0x14285c0, 0x158f03c)
token.c:540:tds_process_tokens(0x1428120, 0x158ee68, 0x158ee6c, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x1320f38, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 53 00 00 00 00-21 46 00 00 00 00 20 20 |...S.... !F....  |
0010 20 20 20 20 65 78 65 63-20 63 61 73 79 2e 2e 46 |    exec  casy..F|
0020 6f 72 6d 53 74 61 74 69-73 74 69 6b 45 69 6e 74 |ormStati stikEint|
0030 72 61 67 20 40 46 6f 72-6d 49 44 20 3d 20 27 6f |rag @For mID = 'o|
0040 70 67 5f 64 61 73 68 62-6f 61 72 64 27 0a 20 20 |pg_dashb oard'.  |
0050 20 20 0a               -                        |  .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33c0c)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 ca 00 00 00 00-                        |...Ê....|

net.c:609:Received packet
0000 04 01 00 ca 00 00 00 00-ff 51 00 02 00 01 00 00 |...Ê.... ÿQ......|
0010 00 ff 51 00 02 00 00 00-00 00 ff 41 00 02 00 00 |.ÿQ..... ..ÿA....|
0020 00 00 00 ff 51 00 02 00-01 00 00 00 ff 41 00 02 |...ÿQ... ....ÿA..|
0030 00 01 00 00 00 fe 09 00-02 00 01 00 00 00 ff 41 |.....þ.. ......ÿA|
0040 00 02 00 00 00 00 00 ff-45 00 01 00 00 00 00 00 |.......ÿ E.......|
0050 ff 45 00 01 00 00 00 00-00 ff 51 00 02 00 01 00 |ÿE...... .ÿQ.....|
0060 00 00 ff 41 00 02 00 00-00 00 00 ff 51 00 02 00 |..ÿA.... ...ÿQ...|
0070 01 00 00 00 ff 41 00 02-00 00 00 00 00 ff 41 00 |....ÿA.. .....ÿA.|
0080 02 00 00 00 00 00 ff 45-00 01 00 00 00 00 00 ff |......ÿE .......ÿ|
0090 45 00 01 00 00 00 00 00-ff 51 00 02 00 01 00 00 |E....... ÿQ......|
00a0 00 ff 41 00 02 00 01 00-00 00 ff 41 00 02 00 01 |.ÿA..... ..ÿA....|
00b0 00 00 00 ff 41 00 02 00-00 00 00 00 79 00 00 00 |...ÿA... ....y...|
00c0 00 fe 08 00 02 00 00 00-00 00                   |.þ...... ..|

token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fe(DONEPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4053) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c33a38, 0x7fff77c33a3c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  79(RETURNSTATUS)
token.c:690:tds_process_tokens: return status is 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4043) 
ct.c:3833:_ct_process_return_status(0x1428120)
mem.c:615:tds_free_all_results()
ct.c:3851:generating return status row. type = 56(int), varint_size 0
ct.c:2059:ct_cancel((nil), 0x14285c0, 6000)
ct.c:2076:CS_CANCEL_CURRENT
ct.c:3811:_ct_fetchable_results(0x14285c0)
ct.c:2086:ct_cancel() - fetching results()
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1590030, 0x1590030, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 56 and has length 4
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
mem.c:615:tds_free_all_results()
ct.c:1122:ct_results(0x14285c0, 0x7fff77c339ac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c337d8, 0x7fff77c337dc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fe(DONEPROC)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4053) 
ct.c:1122:ct_results(0x14285c0, 0x7fff77c33c0c)
ct.c:1122:ct_results(0x14285c0, 0x7fff77c339ac)
token.c:540:tds_process_tokens(0x1428120, 0x7fff77c337d8, 0x7fff77c337dc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14a4658, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 0f 00 00 00 00-21 02 01 00 00 00 20 20 |........ !.....  |
0010 20 20 73 65 6c 65 63 74-20 64 69 73 74 69 6e 63 |  select  distinc|
0020 74 20 4b 65 79 76 61 6c-20 3d 20 46 6f 72 6d 54 |t Keyval  = FormT|
0030 65 78 74 44 2c 20 54 72-61 6e 73 6c 61 74 69 6f |extD, Tr anslatio|
0040 6e 20 3d 20 46 6f 72 6d-54 65 78 74 45 0a 20 20 |n = Form TextE.  |
0050 20 20 66 72 6f 6d 20 63-61 73 79 2e 2e 46 6f 72 |  from c asy..For|
0060 6d 54 65 78 74 20 74 2c-20 63 61 73 79 2e 2e 46 |mText t,  casy..F|
0070 6f 72 6d 54 65 78 74 55-73 65 20 75 0a 20 20 20 |ormTextU se u.   |
0080 20 77 68 65 72 65 20 74-2e 46 6f 72 6d 54 65 78 | where t .FormTex|
0090 74 49 44 20 3d 20 75 2e-46 6f 72 6d 54 65 78 74 |tID = u. FormText|
00a0 49 44 20 61 6e 64 20 46-6f 72 6d 4f 62 6a 20 6c |ID and F ormObj l|
00b0 69 6b 65 20 22 25 22 0a-20 20 20 20 20 20 61 6e |ike "%".       an|
00c0 64 20 75 2e 46 6f 72 6d-49 44 20 3d 20 22 4c 6f |d u.Form ID = "Lo|
00d0 67 69 6e 22 0a 20 20 20-20 20 20 61 6e 64 20 46 |gin".       and F|
00e0 6f 72 6d 54 65 78 74 45-20 69 73 20 6e 6f 74 20 |ormTextE  is not |
00f0 6e 75 6c 6c 0a 20 20 20-20 6f 72 64 65 72 20 62 |null.     order b|
0100 79 20 46 6f 72 6d 54 65-78 74 44 0a 20 20 0a    |y FormTe xtD.  .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdeec)
token.c:540:tds_process_tokens(0x1428120, 0x15fdd18, 0x15fdd1c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-61 5b 00 00 00 02 00 06 |........ a[......|
0010 4b 65 79 76 61 6c 00 00-08 46 6f 72 6d 54 65 78 |Keyval.. .FormTex|
0020 74 09 46 6f 72 6d 54 65-78 74 44 30 00 00 00 02 |t.FormTe xtD0....|
0030 00 00 00 af fe 01 00 00-00 0b 54 72 61 6e 73 6c |...¯þ... ..Transl|
0040 61 74 69 6f 6e 00 00 08-46 6f 72 6d 54 65 78 74 |ation... FormText|
0050 09 46 6f 72 6d 54 65 78-74 45 30 00 00 00 02 00 |.FormTex tE0.....|
0060 00 00 af fe 01 00 00 00-ae 02 00 00 00 a9 01 00 |..¯þ.... ®....©..|
0070 01 d1 02 00 00 00 20 2f-02 00 00 00 20 2f d1 01 |.Ñ.... / .... /Ñ.|
0080 00 00 00 25 01 00 00 00-25 d1 03 00 00 00 28 63 |...%.... %Ñ....(c|
0090 29 03 00 00 00 28 43 29-d1 2f 00 00 00 2a 2a 2a |)....(C) Ñ/...***|
00a0 2a 20 46 61 6c 73 63 68-65 72 20 4e 61 6d 65 20 |* Falsch er Name |
00b0 6f 64 65 72 20 66 61 6c-73 63 68 65 73 20 50 61 |oder fal sches Pa|
00c0 73 73 77 6f 72 74 21 20-2a 2a 2a 2a 28 00 00 00 |sswort!  ****(...|
00d0 2a 2a 2a 2a 20 57 72 6f-6e 67 20 6e 61 6d 65 20 |**** Wro ng name |
00e0 6f 72 20 77 72 6f 6e 67-20 70 61 73 73 77 6f 72 |or wrong  passwor|
00f0 64 21 20 20 2a 2a 2a 2a-d1 24 00 00 00 2a 2a 2a |d!  **** Ñ$...***|
0100 2a 20 53 69 65 20 68 61-62 65 6e 20 6e 6f 63 68 |* Sie ha ben noch|
0110 20 65 69 6e 65 20 43 68-61 6e 63 65 20 2a 2a 2a | eine Ch ance ***|
0120 2a 1f 00 00 00 2a 2a 2a-2a 20 59 6f 75 20 68 61 |*....*** * You ha|
0130 76 65 20 6f 6e 65 20 6d-6f 72 65 20 74 72 79 20 |ve one m ore try |
0140 2a 2a 2a 2a d1 1f 00 00-00 3c 62 3e 43 20 41 20 |****Ñ... .<b>C A |
0150 53 20 59 20 4d 20 49 20-52 20 20 41 6e 6d 65 6c |S Y M I  R  Anmel|
0160 64 75 6e 67 3c 2f 62 3e-1b 00 00 00 3c 62 3e 43 |dung</b> ....<b>C|
0170 20 41 20 53 20 59 20 4d-20 49 20 52 20 20 4c 6f | A S Y M  I R  Lo|
0180 67 69 6e 3c 2f 62 3e d1-01 00 00 00 3f 01 00 00 |gin</b>Ñ ....?...|
0190 00 3f d1 48 00 00 00 41-43 48 54 55 4e 47 3a 20 |.?ÑH...A CHTUNG: |
01a0 42 69 74 74 65 20 c3 a4-6e 64 65 72 6e 20 53 69 |Bitte ä ndern Si|
01b0 65 20 49 68 72 20 50 61-73 73 77 6f 72 74 2c 20 |e Ihr Pa sswort, |
01c0 73 6f 6e 73 74 20 77 69-72 64 20 49 68 72 20 5a |sonst wi rd Ihr Z|
01d0 75 67 61 6e 67 20 67 65-73 70 65 72 72 74 21 4f |ugang ge sperrt!O|
01e0 00 00 00 41 54 54 45 4e-54 49 4f 4e 3a 20 50 6c |...ATTEN TION: Pl|
01f0 65 61 73 65 20 63 68 61-6e 67 65 20 79 6f 75 72 |ease cha nge your|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[Keyval]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[Translation]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdf7c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fde30)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fde30)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fdc8c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdab8, 0x15fdabc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  a9(ORDERBY)
token.c:122:tds_process_default_tokens() marker is a9(ORDERBY)
token.c:237:Eating ORDERBY token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdd1c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb20)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fdbd0, 0x15cc5b0, (nil), 0x1187190)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fdb20)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x15fdbd0, 0x12cf150, (nil), 0x11871c8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 2 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x13de7e0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 2
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15b8f10, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (2 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x13de7e0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15b8f10, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 3 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x13de7e0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 3
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15b8f10, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (3 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 47 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 40 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 47
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x11d77f0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (47 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 40
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x12ddbd0, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (40 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 36 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 36
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x11d77f0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (36 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x12ddbd0, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 31 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 31
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x11d77f0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (31 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x12ddbd0, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x11d77f0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x12ddbd0, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 72 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-20 70 61 73 73 77 6f 72 |........  passwor|
0010 64 2c 20 6f 74 68 65 72-77 69 73 65 2c 20 79 6f |d, other wise, yo|
0020 75 72 20 61 63 63 65 73-73 20 77 69 6c 6c 20 62 |ur acces s will b|
0030 65 20 62 6c 6f 63 6b 65-64 21 d1 07 00 00 00 41 |e blocke d!Ñ....A|
0040 62 62 72 75 63 68 06 00-00 00 43 61 6e 63 65 6c |bbruch.. ..Cancel|
0050 d1 3f 00 00 00 41 62 62-72 75 63 68 3a 20 45 73 |Ñ?...Abb ruch: Es|
0060 20 73 74 65 68 65 6e 20-49 68 6e 65 6e 20 6b 65 | stehen  Ihnen ke|
0070 69 6e 65 20 61 6b 74 69-76 65 6e 20 4d 61 6e 64 |ine akti ven Mand|
0080 61 6e 74 65 6e 20 7a 75-72 20 56 65 72 66 c3 bc |anten zu r Verfü|
0090 67 75 6e 67 23 00 00 00-41 62 6f 72 74 3a 20 4e |gung#... Abort: N|
00a0 6f 20 61 63 74 69 76 65-20 6d 61 6e 64 61 74 6f |o active  mandato|
00b0 72 20 61 76 61 69 6c 61-62 6c 65 d1 09 00 00 00 |r availa bleÑ....|
00c0 42 65 6e 75 74 7a 65 72-3a 05 00 00 00 55 73 65 |Benutzer :....Use|
00d0 72 3a d1 0d 00 00 00 42-65 6e 75 74 7a 65 72 6e |r:Ñ....B enutzern|
00e0 61 6d 65 3a 0a 00 00 00-55 73 65 72 20 6e 61 6d |ame:.... User nam|
00f0 65 3a d1 21 00 00 00 42-69 74 74 65 20 62 65 72 |e:Ñ!...B itte ber|
0100 65 69 6e 69 67 65 6e 20-53 69 65 20 64 69 65 20 |einigen  Sie die |
0110 50 72 6f 62 6c 65 6d 65-1b 00 00 00 50 6c 65 61 |Probleme ....Plea|
0120 73 65 20 72 65 63 74 69-66 79 20 74 68 65 20 70 |se recti fy the p|
0130 72 6f 62 6c 65 6d 73 d1-20 00 00 00 42 69 74 74 |roblemsÑ  ...Bitt|
0140 65 20 6d 65 6c 64 65 6e-20 53 69 65 20 73 69 63 |e melden  Sie sic|
0150 68 20 65 72 6e 65 75 74-20 61 6e 2e 13 00 00 00 |h erneut  an.....|
0160 50 6c 65 61 73 65 20 6c-6f 67 69 6e 20 61 67 61 |Please l ogin aga|
0170 69 6e 2e d1 6f 00 00 00-42 69 74 74 65 20 76 65 |in.Ño... Bitte ve|
0180 72 73 c3 a4 75 6d 65 6e-20 53 69 65 20 6e 69 63 |rsäumen  Sie nic|
0190 68 74 2c 20 65 69 6e 65-6e 20 4d 61 6e 64 61 6e |ht, eine n Mandan|
01a0 74 65 6e 20 65 69 6e 7a-75 74 72 61 67 65 6e 20 |ten einz utragen |
01b0 75 6e 64 20 53 69 63 68-20 73 65 6c 62 73 74 20 |und Sich  selbst |
01c0 65 69 6e 20 5a 75 67 72-69 66 66 73 72 65 63 68 |ein Zugr iffsrech|
01d0 74 20 61 75 66 20 64 69-65 73 65 6e 20 7a 75 20 |t auf di esen zu |
01e0 67 65 62 65 6e 20 21 4f-00 00 00 50 6c 65 61 73 |geben !O ...Pleas|
01f0 65 20 64 6f 20 6e 6f 74-20 66 6f 72 67 65 74 20 |e do not  forget |

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 72
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15cff10, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (72 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15cff10, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 63 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 35 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 63
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15cff10, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (63 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 35
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (35 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15cff10, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 10 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15cff10, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 10
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (10 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 33 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 33
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14c70f0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (33 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 32 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 19 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 32
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14c70f0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (32 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 19
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14cac50, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (19 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 111 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 79 
net.c:555:Received header
0000 04 00 02 00 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 00 02 00 00 00 00 00-74 6f 20 72 65 67 69 73 |........ to regis|
0010 74 65 72 20 61 20 6d 61-6e 64 61 74 6f 72 20 61 |ter a ma ndator a|
0020 6e 64 20 74 6f 20 67 69-76 65 20 79 6f 75 72 73 |nd to gi ve yours|
0030 65 6c 66 20 61 63 63 65-73 73 20 72 69 67 68 74 |elf acce ss right|
0040 73 21 d1 0d 00 00 00 43-20 41 20 53 20 59 20 4d |s!Ñ....C  A S Y M|
0050 20 49 20 52 0d 00 00 00-43 20 41 20 53 20 59 20 | I R.... C A S Y |
0060 4d 20 49 20 52 d1 22 00-00 00 45 73 20 65 78 69 |M I RÑ". ..Es exi|
0070 73 74 69 65 72 65 6e 20-6e 6f 63 68 20 6b 65 69 |stieren  noch kei|
0080 6e 65 20 4d 61 6e 64 61-6e 74 65 6e 1b 00 00 00 |ne Manda nten....|
0090 4e 6f 20 6d 61 6e 64 61-74 6f 72 73 20 72 65 67 |No manda tors reg|
00a0 69 73 74 65 72 65 64 20-79 65 74 d1 06 00 00 00 |istered  yetÑ....|
00b0 46 69 72 6d 61 3a 08 00-00 00 43 6f 6d 70 61 6e |Firma:.. ..Compan|
00c0 79 3a d1 0b 00 00 00 48-69 6c 66 73 66 65 6c 64 |y:Ñ....H ilfsfeld|
00d0 65 72 0f 00 00 00 41 75-78 69 6c 69 61 72 79 20 |er....Au xiliary |
00e0 66 69 65 6c 64 d1 04 00-00 00 48 6f 73 74 04 00 |fieldÑ.. ..Host..|
00f0 00 00 48 6f 73 74 d1 04-00 00 00 49 6e 66 6f 04 |..HostÑ. ...Info.|
0100 00 00 00 49 6e 66 6f d1-16 00 00 00 4c 20 4f 20 |...InfoÑ ....L O |
0110 47 20 49 20 4e 20 20 65-72 6b 61 6e 6e 74 20 2e |G I N  e rkannt .|
0120 2e 2e 19 00 00 00 4c 20-4f 20 47 20 49 20 4e 20 |......L  O G I N |
0130 20 72 65 63 6f 67 6e 69-7a 65 64 20 2e 2e 2e d1 | recogni zed ...Ñ|
0140 05 00 00 00 4c 6f 67 69-6e 05 00 00 00 4c 6f 67 |....Logi n....Log|
0150 69 6e d1 09 00 00 00 50-61 73 73 77 6f 72 74 3a |inÑ....P asswort:|
0160 09 00 00 00 50 61 73 73-77 6f 72 64 3a d1 19 00 |....Pass word:Ñ..|
0170 00 00 53 63 68 61 6c 74-65 20 61 75 66 20 4d 61 |..Schalt e auf Ma|
0180 6e 64 61 6e 74 20 25 20-75 6d 2e 15 00 00 00 53 |ndant %  um.....S|
0190 77 69 74 63 68 20 74 6f-20 6d 61 6e 64 61 74 6f |witch to  mandato|
01a0 72 20 25 2e d1 07 00 00-00 53 65 72 76 65 72 3a |r %.Ñ... .Server:|
01b0 07 00 00 00 53 65 72 76-65 72 3a d1 22 00 00 00 |....Serv er:Ñ"...|
01c0 55 6e 67 c3 bc 6c 74 69-67 65 73 20 46 6f 72 6d |Ungülti ges Form|
01d0 3a 20 25 20 28 6b 65 69-6e 65 20 52 65 63 68 74 |: % (kei ne Recht|
01e0 65 29 1b 00 00 00 49 6e-76 61 6c 69 64 20 66 6f |e)....In valid fo|
01f0 72 6d 3a 20 25 20 28 6e-6f 20 72 69 67 68 74 73 |rm: % (n o rights|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 111
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (111 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 79
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (79 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 11 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 15 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 11
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (11 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 15
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (15 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 22 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 22
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (22 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 9 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 9
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (9 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 21 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 21
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (21 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 7 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 7
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (7 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 34 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 27 
net.c:555:Received header
0000 04 01 00 bb 00 00 00 00-                        |...»....|

net.c:609:Received packet
0000 04 01 00 bb 00 00 00 00-29 d1 33 00 00 00 56 65 |...».... )Ñ3...Ve|
0010 72 73 75 63 68 65 6e 20-53 69 65 20 69 6e 20 63 |rsuchen  Sie in c|
0020 61 2e 20 31 35 20 4d 49-4e 55 54 45 4e 20 77 69 |a. 15 MI NUTEN wi|
0030 65 64 65 72 20 65 69 6e-7a 75 6c 6f 67 67 65 6e |eder ein zuloggen|
0040 21 2b 00 00 00 54 72 79-20 6c 6f 67 67 69 6e 67 |!+...Try  logging|
0050 20 69 6e 20 61 67 61 69-6e 20 69 6e 20 61 70 70 | in agai n in app|
0060 72 6f 78 2e 20 31 35 20-4d 49 4e 55 54 45 53 21 |rox. 15  MINUTES!|
0070 d1 1d 00 00 00 5a 75 67-72 69 66 66 20 4f 48 4e |Ñ....Zug riff OHN|
0080 45 20 52 65 70 61 72 61-74 75 72 6c 61 75 66 2e |E Repara turlauf.|
0090 2e 2e 1c 00 00 00 41 63-63 65 73 73 20 57 49 54 |......Ac cess WIT|
00a0 48 4f 55 54 20 72 65 70-61 69 72 20 72 75 6e 2e |HOUT rep air run.|
00b0 2e 2e fd 10 00 02 00 1d-00 00 00                |..ý..... ...|

util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 34
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x1527f30, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (34 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 27
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x15bd400, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (27 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 51 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 43 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 51
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14d2fe0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (51 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 43
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14b6010, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (43 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdeec, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 29 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 28 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 29
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14d2fe0, 0x15fddd0, 0x15cc5b0, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (29 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 28
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fdd20, 0x14b6010, 0x15fddd0, 0x12cf150, 0x15fdd1c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (28 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdf7c)
ct.c:1122:ct_results(0x14285c0, 0x15fdf78)
token.c:540:tds_process_tokens(0x1428120, 0x15fdee8, 0x15fdeec, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 29
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc8c)
token.c:540:tds_process_tokens(0x1428120, 0x15fdab8, 0x15fdabc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x123bd58, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 69 00 00 00 00-21 5c 00 00 00 00 20 20 |...i.... !\....  |
0010 20 20 73 65 6c 65 63 74-20 43 6c 69 65 6e 74 4d |  select  ClientM|
0020 6f 64 75 6c 20 3d 20 43-6f 6e 74 65 6e 74 73 20 |odul = C ontents |
0030 66 72 6f 6d 20 63 61 73-79 2e 2e 4c 6f 6b 61 6c |from cas y..Lokal|
0040 65 73 20 77 68 65 72 65-20 56 61 72 69 61 62 6c |es where  Variabl|
0050 65 6e 4e 61 6d 65 20 3d-20 27 43 6c 69 65 6e 74 |enName =  'Client|
0060 4e 61 6d 65 27 0a 20 20-0a                      |Name'.   .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 72 00 00 00 00-                        |...r....|

net.c:609:Received packet
0000 04 01 00 72 00 00 00 00-61 3a 00 00 00 01 00 0b |...r.... a:......|
0010 43 6c 69 65 6e 74 4d 6f-64 75 6c 04 63 61 73 79 |ClientMo dul.casy|
0020 07 6b 6f 6d 6d 65 72 7a-07 4c 6f 6b 61 6c 65 73 |.kommerz .Lokales|
0030 08 43 6f 6e 74 65 6e 74-73 30 00 00 00 02 00 00 |.Content s0......|
0040 00 af 90 01 00 00 00 ae-01 00 00 d1 19 00 00 00 |.¯.....® ...Ñ....|
0050 4d 4f 52 49 4e 49 20 45-6e 74 77 69 63 6b 6c 75 |MORINI E ntwicklu|
0060 6e 67 73 73 65 72 76 65-72 fd 10 00 02 00 01 00 |ngsserve rý......|
0070 00 00                  -                        |..|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[ClientModul]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=400 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 400)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 400)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x15cc5b0, (nil), 0x1524db0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 25 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 25
ct.c:1907:_ct_get_client_type(type 47, user 2, size 400)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x12ce680, 0x15fdb10, 0x15cc5b0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (25 bytes) to type = 47 (401 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x1544018, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 9f 00 00 00 00-21 92 01 00 00 00 20 20 |........ !.....  |
0010 20 20 64 65 63 6c 61 72-65 20 40 76 65 72 73 69 |  declar e @versi|
0020 6f 6e 20 63 68 61 72 28-38 29 2c 20 0a 20 20 20 |on char( 8), .   |
0030 20 20 20 40 6f 70 67 5f-76 65 72 73 69 6f 6e 5f |   @opg_ version_|
0040 73 6f 66 74 20 76 61 72-63 68 61 72 28 33 32 29 |soft var char(32)|
0050 2c 20 0a 20 20 20 20 20-20 40 6f 70 67 5f 76 65 |, .       @opg_ve|
0060 72 73 69 6f 6e 5f 68 61-72 64 20 76 61 72 63 68 |rsion_ha rd varch|
0070 61 72 28 33 32 29 0a 0a-20 20 20 20 65 78 65 63 |ar(32)..     exec|
0080 20 63 61 73 79 2e 2e 56-65 72 73 69 6f 6e 73 4e | casy..V ersionsN|
0090 72 20 0a 20 20 20 20 20-20 20 20 40 76 65 72 73 |r .         @vers|
00a0 69 6f 6e 20 3d 20 40 76-65 72 73 69 6f 6e 20 6f |ion = @v ersion o|
00b0 75 74 2c 20 0a 20 20 20-20 20 20 20 20 40 6f 70 |ut, .         @op|
00c0 67 5f 76 65 72 73 69 6f-6e 5f 73 6f 66 74 20 3d |g_versio n_soft =|
00d0 20 40 6f 70 67 5f 76 65-72 73 69 6f 6e 5f 73 6f | @opg_ve rsion_so|
00e0 66 74 20 6f 75 74 2c 20-0a 20 20 20 20 20 20 20 |ft out,  .       |
00f0 20 40 6f 70 67 5f 76 65-72 73 69 6f 6e 5f 68 61 | @opg_ve rsion_ha|
0100 72 64 20 3d 20 40 6f 70-67 5f 76 65 72 73 69 6f |rd = @op g_versio|
0110 6e 5f 68 61 72 64 20 6f-75 74 0a 0a 20 20 20 20 |n_hard o ut..    |
0120 73 65 6c 65 63 74 20 0a-20 20 20 20 20 20 53 51 |select .       SQ|
0130 4c 5f 56 65 72 73 69 6f-6e 20 3d 20 40 76 65 72 |L_Versio n = @ver|
0140 73 69 6f 6e 2c 20 0a 20-20 20 20 20 20 4f 50 47 |sion, .       OPG|
0150 5f 56 65 72 73 69 6f 6e-5f 53 6f 66 74 20 3d 20 |_Version _Soft = |
0160 40 6f 70 67 5f 76 65 72-73 69 6f 6e 5f 73 6f 66 |@opg_ver sion_sof|
0170 74 2c 0a 20 20 20 20 20-20 4f 50 47 5f 56 65 72 |t,.       OPG_Ver|
0180 73 69 6f 6e 5f 48 61 72-64 20 3d 20 40 6f 70 67 |sion_Har d = @opg|
0190 5f 76 65 72 73 69 6f 6e-5f 68 61 72 64 0a 0a    |_version _hard..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 01 6d 00 00 00 00-                        |...m....|

net.c:609:Received packet
0000 04 01 01 6d 00 00 00 00-ff 51 00 02 00 01 00 00 |...m.... ÿQ......|
0010 00 ff 51 00 02 00 01 00-00 00 79 00 00 00 00 20 |.ÿQ..... ..y.... |
0020 59 00 00 00 03 00 08 40-76 65 72 73 69 6f 6e 01 |Y......@ version.|
0030 00 00 00 01 00 00 00 af-10 00 00 00 00 11 40 6f |.......¯ ......@o|
0040 70 67 5f 76 65 72 73 69-6f 6e 5f 73 6f 66 74 01 |pg_versi on_soft.|
0050 00 00 00 02 00 00 00 af-40 00 00 00 00 11 40 6f |.......¯ @.....@o|
0060 70 67 5f 76 65 72 73 69-6f 6e 5f 68 61 72 64 01 |pg_versi on_hard.|
0070 00 00 00 02 00 00 00 af-40 00 00 00 00 d7 08 00 |.......¯ @....×..|
0080 00 00 34 2e 31 2e 30 35-20 20 06 00 00 00 34 2e |..4.1.05   ....4.|
0090 31 2e 31 33 06 00 00 00-34 2e 31 2e 31 33 fe 09 |1.13.... 4.1.13þ.|
00a0 00 02 00 01 00 00 00 61-91 00 00 00 03 00 0b 53 |.......a .......S|
00b0 51 4c 5f 56 65 72 73 69-6f 6e 00 00 00 0b 53 51 |QL_Versi on....SQ|
00c0 4c 5f 56 65 72 73 69 6f-6e 30 00 00 00 01 00 00 |L_Versio n0......|
00d0 00 af 10 00 00 00 00 10-4f 50 47 5f 56 65 72 73 |.¯...... OPG_Vers|
00e0 69 6f 6e 5f 53 6f 66 74-00 00 00 10 4f 50 47 5f |ion_Soft ....OPG_|
00f0 56 65 72 73 69 6f 6e 5f-53 6f 66 74 30 00 00 00 |Version_ Soft0...|
0100 02 00 00 00 af 40 00 00-00 00 10 4f 50 47 5f 56 |....¯@.. ...OPG_V|
0110 65 72 73 69 6f 6e 5f 48-61 72 64 00 00 00 10 4f |ersion_H ard....O|
0120 50 47 5f 56 65 72 73 69-6f 6e 5f 48 61 72 64 30 |PG_Versi on_Hard0|
0130 00 00 00 02 00 00 00 af-40 00 00 00 00 ae 03 00 |.......¯ @....®..|
0140 00 00 00 d1 08 00 00 00-34 2e 31 2e 30 35 20 20 |...Ñ.... 4.1.05  |
0150 06 00 00 00 34 2e 31 2e-31 33 06 00 00 00 34 2e |....4.1. 13....4.|
0160 31 2e 31 33 fd 10 00 02-00 01 00 00 00          |1.13ý... .....|

token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  79(RETURNSTATUS)
token.c:690:tds_process_tokens: return status is 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4043) 
ct.c:3833:_ct_process_return_status(0x1428120)
mem.c:615:tds_free_all_results()
ct.c:3851:generating return status row. type = 56(int), varint_size 0
ct.c:2059:ct_cancel((nil), 0x14285c0, 6000)
ct.c:2076:CS_CANCEL_CURRENT
ct.c:3811:_ct_fetchable_results(0x14285c0)
ct.c:2086:ct_cancel() - fetching results()
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 56 and has length 4
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
mem.c:615:tds_free_all_results()
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  20(TDS5_PARAMFMT2)
token.c:2902:elem 0:
token.c:2903:	column_name=[@version]
token.c:2904:	flags=1 utype=1 type=47 varint=5
token.c:2906:	colsize=16 prec=0 scale=0
token.c:2902:elem 1:
token.c:2903:	column_name=[@opg_version_soft]
token.c:2904:	flags=1 utype=2 type=47 varint=5
token.c:2906:	colsize=64 prec=0 scale=0
token.c:2902:elem 2:
token.c:2903:	column_name=[@opg_version_hard]
token.c:2904:	flags=1 utype=2 type=47 varint=5
token.c:2906:	colsize=64 prec=0 scale=0
token.c:555:processing result tokens.  marker is  d7(TDS5_PARAMS)
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4042) 
ct.c:2059:ct_cancel((nil), 0x14285c0, 6000)
ct.c:2076:CS_CANCEL_CURRENT
ct.c:3811:_ct_fetchable_results(0x14285c0)
ct.c:2086:ct_cancel() - fetching results()
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length 6
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
token.c:540:tds_process_tokens(0x1428120, 0x15fd7bc, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fe(DONEPROC)
token.c:739:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
mem.c:615:tds_free_all_results()
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fe(DONEPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4053) 
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=3
token.c:1837:col 0:
token.c:1838:	column_name=[SQL_Version]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=16 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[OPG_Version_Soft]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=64 prec=0 scale=0
token.c:1837:col 2:
token.c:1838:	column_name=[OPG_Version_Hard]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=64 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 3
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 16)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 3, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fd7fc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 3
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 16)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd6b0, 0x1594730, (nil), 0x1322690)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x15fd6b0, 0x13f71d0, (nil), 0x13226c8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:2282:ct_describe(0x14285c0, 3, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 3, 0x15fd6b0, 0x14cd970, (nil), 0x1322700)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 3
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15caf10, 0x15caf10, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 8
ct.c:1907:_ct_get_client_type(type 47, user 1, size 16)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1192980, 0x15fdb10, 0x1594730, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (8 bytes) to type = 47 (17 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x12d3350, 0x15fdb10, 0x13f71d0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (65 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 2 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 64)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1531c70, 0x15fdb10, 0x14cd970, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (65 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x15d56c8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 5d 00 00 00 00-21 50 00 00 00 00 20 20 |...].... !P....  |
0010 64 65 63 6c 61 72 65 20-40 41 6e 7a 61 68 6c 20 |declare  @Anzahl |
0020 69 6e 74 0a 20 20 65 78-65 63 20 40 41 6e 7a 61 |int.  ex ec @Anza|
0030 68 6c 3d 55 73 65 72 4c-6f 67 69 6e 50 72 65 20 |hl=UserL oginPre |
0040 22 4c 22 0a 20 20 73 65-6c 65 63 74 20 41 6e 7a |"L".  se lect Anz|
0050 61 68 6c 3d 40 41 6e 7a-61 68 6c 0a 0a          |ahl=@Anz ahl..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 af 00 00 00 00-                        |...¯....|

net.c:609:Received packet
0000 04 01 00 af 00 00 00 00-ff 51 00 02 00 01 00 00 |...¯.... ÿQ......|
0010 00 ff 41 00 02 00 00 00-00 00 ff 41 00 02 00 00 |.ÿA..... ..ÿA....|
0020 00 00 00 ff 41 00 02 00-00 00 00 00 ff 45 00 01 |...ÿA... ....ÿE..|
0030 00 00 00 00 00 ff 45 00-01 00 00 00 00 00 ff 45 |.....ÿE. ......ÿE|
0040 00 01 00 00 00 00 00 ff-51 00 02 00 01 00 00 00 |.......ÿ Q.......|
0050 ff 41 00 02 00 00 00 00-00 ff 51 00 02 00 01 00 |ÿA...... .ÿQ.....|
0060 00 00 ff 51 00 02 00 01-00 00 00 79 02 00 00 00 |..ÿQ.... ...y....|
0070 fe 09 00 02 00 01 00 00-00 61 1e 00 00 00 01 00 |þ....... .a......|
0080 06 41 6e 7a 61 68 6c 00-00 00 06 41 6e 7a 61 68 |.Anzahl. ...Anzah|
0090 6c 30 00 00 00 07 00 00-00 26 04 00 ae 01 00 00 |l0...... .&..®...|
00a0 d1 04 02 00 00 00 fd 10-00 02 00 01 00 00 00    |Ñ.....ý. .......|

token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  79(RETURNSTATUS)
token.c:690:tds_process_tokens: return status is 2
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4043) 
ct.c:3833:_ct_process_return_status(0x1428120)
mem.c:615:tds_free_all_results()
ct.c:3851:generating return status row. type = 56(int), varint_size 0
ct.c:2059:ct_cancel((nil), 0x14285c0, 6000)
ct.c:2076:CS_CANCEL_CURRENT
ct.c:3811:_ct_fetchable_results(0x14285c0)
ct.c:2086:ct_cancel() - fetching results()
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13e76a0, 0x13e76a0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 56 and has length 4
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
mem.c:615:tds_free_all_results()
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fe(DONEPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4053) 
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[Anzahl]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fd7fc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd6b0, 0x1594b80, (nil), 0x15448b0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15d8000, 0x15d8000, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1576b20, 0x15fdb10, 0x1594b80, 0x15fda5c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x1525e28, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 34 00 00 00 00-21 27 00 00 00 00 20 20 |...4.... !'....  |
0010 20 20 73 65 6c 65 63 74-20 53 65 72 76 65 72 4e |  select  ServerN|
0020 61 6d 65 20 3d 20 40 40-73 65 72 76 65 72 6e 61 |ame = @@ serverna|
0030 6d 65 0a 0a            -                        |me..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 4e 00 00 00 00-                        |...N....|

net.c:609:Received packet
0000 04 01 00 4e 00 00 00 00-61 29 00 00 00 01 00 0a |...N.... a)......|
0010 53 65 72 76 65 72 4e 61-6d 65 00 00 00 0a 53 65 |ServerNa me....Se|
0020 72 76 65 72 4e 61 6d 65-30 00 00 00 02 00 00 00 |rverName 0.......|
0030 af 3c 00 00 00 00 ae 01-00 00 d1 06 00 00 00 4d |¯<....®. ..Ñ....M|
0040 4f 52 49 4e 49 fd 10 00-02 00 01 00 00 00       |ORINIý.. ......|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[ServerName]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x15df8b0, (nil), 0x15448b0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 6 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x153d690, 0x153d690, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 6
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x15cee40, 0x15fdb10, 0x15df8b0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (6 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x15db018, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-21 fe 06 00 00 00 20 20 |........ !þ....  |
0010 20 20 20 20 20 20 69 66-20 65 78 69 73 74 73 20 |      if  exists |
0020 0a 20 20 20 20 20 20 20-20 28 20 73 65 6c 65 63 |.         ( selec|
0030 74 20 41 75 74 68 41 6c-6c 6f 77 20 66 72 6f 6d |t AuthAl low from|
0040 20 63 61 73 79 2e 2e 55-73 65 72 41 75 74 68 0a | casy..U serAuth.|
0050 20 20 20 20 20 20 20 20-20 20 77 68 65 72 65 20 |           where |
0060 41 75 74 68 54 79 70 65-20 3d 20 22 4c 49 4e 2d |AuthType  = "LIN-|
0070 44 46 4c 2d 44 4f 4d 22-0a 20 20 20 20 20 20 20 |DFL-DOM" .       |
0080 20 20 20 20 20 61 6e 64-20 41 75 74 68 44 6f 6d |     and  AuthDom|
0090 61 69 6e 20 3d 20 22 6f-70 61 67 2e 63 68 22 0a |ain = "o pag.ch".|
00a0 20 20 20 20 20 20 20 20-20 20 20 20 61 6e 64 20 |             and |
00b0 41 75 74 68 48 6f 73 74-20 3d 20 22 62 73 61 2e |AuthHost  = "bsa.|
00c0 6f 70 61 67 2e 63 68 22-0a 20 20 20 20 20 20 20 |opag.ch" .       |
00d0 20 20 20 20 20 61 6e 64-20 41 75 74 68 55 73 65 |     and  AuthUse|
00e0 72 20 3d 20 22 66 72 65-64 79 22 0a 20 20 20 20 |r = "fre dy".    |
00f0 20 20 20 20 29 0a 20 20-20 20 20 20 20 20 62 65 |    ).         be|
0100 67 69 6e 0a 20 20 20 20-20 20 20 20 20 20 73 65 |gin.           se|
0110 6c 65 63 74 20 41 75 74-68 41 6c 6c 6f 77 20 66 |lect Aut hAllow f|
0120 72 6f 6d 20 63 61 73 79-2e 2e 55 73 65 72 41 75 |rom casy ..UserAu|
0130 74 68 0a 20 20 20 20 20-20 20 20 20 20 77 68 65 |th.           whe|
0140 72 65 20 41 75 74 68 54-79 70 65 20 3d 20 22 4c |re AuthT ype = "L|
0150 49 4e 2d 44 46 4c 2d 44-4f 4d 22 0a 20 20 20 20 |IN-DFL-D OM".    |
0160 20 20 20 20 20 20 20 20-61 6e 64 20 41 75 74 68 |         and Auth|
0170 44 6f 6d 61 69 6e 20 3d-20 22 6f 70 61 67 2e 63 |Domain =  "opag.c|
0180 68 22 0a 20 20 20 20 20-20 20 20 20 20 20 20 61 |h".             a|
0190 6e 64 20 41 75 74 68 48-6f 73 74 20 3d 20 22 62 |nd AuthH ost = "b|
01a0 73 61 2e 6f 70 61 67 2e-63 68 22 0a 20 20 20 20 |sa.opag. ch".    |
01b0 20 20 20 20 20 20 20 20-61 6e 64 20 41 75 74 68 |         and Auth|
01c0 55 73 65 72 20 3d 20 22-66 72 65 64 79 22 0a 20 |User = " fredy". |
01d0 20 20 20 20 20 20 20 65-6e 64 0a 20 20 20 20 20 |       e nd.     |
01e0 20 20 20 65 6c 73 65 0a-20 20 20 20 20 20 20 20 |   else.         |
01f0 62 65 67 69 6e 0a 20 20-20 20 20 20 20 20 20 20 |begin.           |

net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-69 66 20 65 78 69 73 74 |........ if exist|
0010 73 0a 20 20 20 20 20 20-20 20 20 20 28 20 73 65 |s.           ( se|
0020 6c 65 63 74 20 41 75 74-68 41 6c 6c 6f 77 20 66 |lect Aut hAllow f|
0030 72 6f 6d 20 63 61 73 79-2e 2e 55 73 65 72 41 75 |rom casy ..UserAu|
0040 74 68 0a 20 20 20 20 20-20 20 20 20 20 77 68 65 |th.           whe|
0050 72 65 20 41 75 74 68 54-79 70 65 20 3d 20 22 4c |re AuthT ype = "L|
0060 49 4e 2d 44 46 4c 2d 44-4f 4d 22 0a 20 20 20 20 |IN-DFL-D OM".    |
0070 20 20 20 20 20 20 20 20-61 6e 64 20 41 75 74 68 |         and Auth|
0080 44 6f 6d 61 69 6e 20 3d-20 22 6f 70 61 67 2e 63 |Domain =  "opag.c|
0090 68 22 0a 20 20 20 20 20-20 20 20 20 20 20 20 61 |h".             a|
00a0 6e 64 20 41 75 74 68 48-6f 73 74 20 3d 20 22 2a |nd AuthH ost = "*|
00b0 22 0a 20 20 20 20 20 20-20 20 20 20 20 20 61 6e |".             an|
00c0 64 20 41 75 74 68 55 73-65 72 20 3d 20 22 66 72 |d AuthUs er = "fr|
00d0 65 64 79 22 0a 20 20 20-20 20 20 20 20 20 20 29 |edy".           )|
00e0 0a 20 20 20 20 20 20 20-20 20 20 62 65 67 69 6e |.           begin|
00f0 0a 20 20 20 20 20 20 20-20 20 20 20 20 73 65 6c |.             sel|
0100 65 63 74 20 41 75 74 68-41 6c 6c 6f 77 20 66 72 |ect Auth Allow fr|
0110 6f 6d 20 63 61 73 79 2e-2e 55 73 65 72 41 75 74 |om casy. .UserAut|
0120 68 0a 20 20 20 20 20 20-20 20 20 20 20 20 77 68 |h.             wh|
0130 65 72 65 20 41 75 74 68-54 79 70 65 20 3d 20 22 |ere Auth Type = "|
0140 4c 49 4e 2d 44 46 4c 2d-44 4f 4d 22 0a 20 20 20 |LIN-DFL- DOM".   |
0150 20 20 20 20 20 20 20 20-20 20 20 61 6e 64 20 41 |            and A|
0160 75 74 68 44 6f 6d 61 69-6e 20 3d 20 22 6f 70 61 |uthDomai n = "opa|
0170 67 2e 63 68 22 0a 20 20-20 20 20 20 20 20 20 20 |g.ch".           |
0180 20 20 20 20 61 6e 64 20-41 75 74 68 48 6f 73 74 |    and  AuthHost|
0190 20 3d 20 22 2a 22 0a 20-20 20 20 20 20 20 20 20 | = "*".          |
01a0 20 20 20 20 20 61 6e 64-20 41 75 74 68 55 73 65 |     and  AuthUse|
01b0 72 20 3d 20 22 66 72 65-64 79 22 0a 20 20 20 20 |r = "fre dy".    |
01c0 20 20 20 20 20 20 65 6e-64 0a 20 20 20 20 20 20 |      en d.      |
01d0 20 20 20 20 65 6c 73 65-0a 20 20 20 20 20 20 20 |    else .       |
01e0 20 20 20 62 65 67 69 6e-0a 20 20 20 20 20 20 20 |   begin .       |
01f0 20 20 20 20 20 69 66 20-65 78 69 73 74 73 0a 20 |     if  exists. |

net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-20 20 20 20 20 20 20 20 |........         |
0010 20 20 20 28 20 73 65 6c-65 63 74 20 41 75 74 68 |   ( sel ect Auth|
0020 41 6c 6c 6f 77 20 66 72-6f 6d 20 63 61 73 79 2e |Allow fr om casy.|
0030 2e 55 73 65 72 41 75 74-68 0a 20 20 20 20 20 20 |.UserAut h.      |
0040 20 20 20 20 20 20 20 20-77 68 65 72 65 20 41 75 |         where Au|
0050 74 68 54 79 70 65 20 3d-20 22 4c 49 4e 2d 44 46 |thType =  "LIN-DF|
0060 4c 2d 44 4f 4d 22 0a 20-20 20 20 20 20 20 20 20 |L-DOM".          |
0070 20 20 20 20 20 61 6e 64-20 41 75 74 68 44 6f 6d |     and  AuthDom|
0080 61 69 6e 20 3d 20 22 6f-70 61 67 2e 63 68 22 0a |ain = "o pag.ch".|
0090 20 20 20 20 20 20 20 20-20 20 20 20 20 20 61 6e |               an|
00a0 64 20 41 75 74 68 48 6f-73 74 20 3d 20 22 62 73 |d AuthHo st = "bs|
00b0 61 2e 6f 70 61 67 2e 63-68 22 0a 20 20 20 20 20 |a.opag.c h".     |
00c0 20 20 20 20 20 20 20 20-20 61 6e 64 20 41 75 74 |          and Aut|
00d0 68 55 73 65 72 20 3d 20-22 2a 22 0a 20 20 20 20 |hUser =  "*".    |
00e0 20 20 20 20 20 20 20 20-29 0a 20 20 20 20 20 20 |         ).      |
00f0 20 20 20 20 20 20 62 65-67 69 6e 0a 20 20 20 20 |      be gin.    |
0100 20 20 20 20 20 20 20 20-20 20 73 65 6c 65 63 74 |           select|
0110 20 41 75 74 68 41 6c 6c-6f 77 20 66 72 6f 6d 20 | AuthAll ow from |
0120 63 61 73 79 2e 2e 55 73-65 72 41 75 74 68 0a 20 |casy..Us erAuth. |
0130 20 20 20 20 20 20 20 20-20 20 20 20 20 77 68 65 |              whe|
0140 72 65 20 41 75 74 68 54-79 70 65 20 3d 20 22 4c |re AuthT ype = "L|
0150 49 4e 2d 44 46 4c 2d 44-4f 4d 22 0a 20 20 20 20 |IN-DFL-D OM".    |
0160 20 20 20 20 20 20 20 20-20 20 20 20 61 6e 64 20 |             and |
0170 41 75 74 68 44 6f 6d 61-69 6e 20 3d 20 22 6f 70 |AuthDoma in = "op|
0180 61 67 2e 63 68 22 0a 20-20 20 20 20 20 20 20 20 |ag.ch".          |
0190 20 20 20 20 20 20 20 61-6e 64 20 41 75 74 68 48 |       a nd AuthH|
01a0 6f 73 74 20 3d 20 22 62-73 61 2e 6f 70 61 67 2e |ost = "b sa.opag.|
01b0 63 68 22 0a 20 20 20 20-20 20 20 20 20 20 20 20 |ch".             |
01c0 20 20 20 20 61 6e 64 20-41 75 74 68 55 73 65 72 |    and  AuthUser|
01d0 20 3d 20 22 2a 22 0a 20-20 20 20 20 20 20 20 20 | = "*".          |
01e0 20 20 20 65 6e 64 0a 20-20 20 20 20 20 20 20 20 |   end.          |
01f0 20 20 20 65 6c 73 65 0a-20 20 20 20 20 20 20 20 |   else.         |

util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 23 00 00 00 00-20 20 20 20 62 65 67 69 |...#....     begi|
0010 6e 0a 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |n.               |
0020 73 65 6c 65 63 74 20 41-75 74 68 41 6c 6c 6f 77 |select A uthAllow|
0030 20 66 72 6f 6d 20 63 61-73 79 2e 2e 55 73 65 72 | from ca sy..User|
0040 41 75 74 68 0a 20 20 20-20 20 20 20 20 20 20 20 |Auth.            |
0050 20 20 20 77 68 65 72 65-20 41 75 74 68 54 79 70 |   where  AuthTyp|
0060 65 20 3d 20 22 4c 49 4e-2d 44 46 4c 2d 44 4f 4d |e = "LIN -DFL-DOM|
0070 22 0a 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |".               |
0080 20 20 61 6e 64 20 41 75-74 68 44 6f 6d 61 69 6e |  and Au thDomain|
0090 20 3d 20 22 6f 70 61 67-2e 63 68 22 0a 20 20 20 | = "opag .ch".   |
00a0 20 20 20 20 20 20 20 20-20 20 20 20 20 61 6e 64 |              and|
00b0 20 41 75 74 68 55 73 65-72 20 3d 20 22 2a 22 0a | AuthUse r = "*".|
00c0 20 20 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |                 |
00d0 61 6e 64 20 41 75 74 68-48 6f 73 74 20 3d 20 22 |and Auth Host = "|
00e0 2a 22 20 20 20 20 20 20-20 20 20 20 20 20 20 20 |*"               |
00f0 0a 20 20 20 20 20 20 20-20 20 20 20 20 65 6e 64 |.             end|
0100 0a 20 20 20 20 20 20 20-20 20 20 65 6e 64 20 20 |.           end  |
0110 20 20 20 0a 20 20 20 20-20 20 20 20 65 6e 64 0a |   .         end.|
0120 20 20 0a               -                        |  .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 63 00 00 00 00-                        |...c....|

net.c:609:Received packet
0000 04 01 00 63 00 00 00 00-fd 01 00 02 00 00 00 00 |...c.... ý.......|
0010 00 61 31 00 00 00 01 00-00 04 63 61 73 79 07 6b |.a1..... ..casy.k|
0020 6f 6d 6d 65 72 7a 08 55-73 65 72 41 75 74 68 09 |ommerz.U serAuth.|
0030 41 75 74 68 41 6c 6c 6f-77 30 00 00 00 01 00 00 |AuthAllo w0......|
0040 00 af 02 00 00 00 00 ae-01 00 00 d1 01 00 00 00 |.¯.....® ...Ñ....|
0050 41 fd 11 00 02 00 01 00-00 00 fd 00 00 02 00 01 |Aý...... ..ý.....|
0060 00 00 00               -                        |...|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[AuthAllow]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=2 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fd7fc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd6b0, 0x15d78d0, (nil), 0x15448b0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15918d0, 0x15918d0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 1, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1531c70, 0x15fdb10, 0x15d78d0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (3 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14c29e8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 3e 00 00 00 00-21 31 00 00 00 00 20 20 |...>.... !1....  |
0010 20 20 20 20 20 20 20 20-73 65 6c 65 63 74 20 55 |         select U|
0020 73 65 72 6e 61 6d 65 20-3d 20 6c 6f 77 65 72 28 |sername  = lower(|
0030 22 66 72 65 64 79 22 29-0a 20 20 20 20 0a       |"fredy") .    .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 49 00 00 00 00-                        |...I....|

net.c:609:Received packet
0000 04 01 00 49 00 00 00 00-61 25 00 00 00 01 00 08 |...I.... a%......|
0010 55 73 65 72 6e 61 6d 65-00 00 00 08 55 73 65 72 |Username ....User|
0020 6e 61 6d 65 10 00 00 00-02 00 00 00 af 0a 00 00 |name.... ....¯...|
0030 00 00 ae 01 00 00 d1 05-00 00 00 66 72 65 64 79 |..®...Ñ. ...fredy|
0040 fd 10 00 02 00 01 00 00-00                      |ý....... .|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[Username]
token.c:1844:	flags=10 utype=2 type=47 varint=5
token.c:1847:	colsize=10 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 10)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 10)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x11ea890, (nil), 0x15dcdb0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 5 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15bc9b0, 0x15bc9b0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 5
ct.c:1907:_ct_get_client_type(type 47, user 2, size 10)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1594730, 0x15fdb10, 0x11ea890, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (5 bytes) to type = 47 (11 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x153d6a8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 79 00 00 00 00-21 6c 00 00 00 00 20 20 |...y.... !l....  |
0010 20 20 73 65 6c 65 63 74-20 4d 61 78 69 6d 75 6d |  select  Maximum|
0020 64 61 79 73 20 3d 20 63-6f 6e 76 65 72 74 28 69 |days = c onvert(i|
0030 6e 74 2c 43 6f 6e 74 65-6e 74 73 29 20 0a 20 20 |nt,Conte nts) .  |
0040 20 20 66 72 6f 6d 20 63-61 73 79 2e 2e 4c 6f 6b |  from c asy..Lok|
0050 61 6c 65 73 20 77 68 65-72 65 20 56 61 72 69 61 |ales whe re Varia|
0060 62 6c 65 6e 4e 61 6d 65-20 3d 20 22 5a 65 69 74 |blenName  = "Zeit|
0070 73 70 61 6e 6e 65 22 0a-0a                      |spanne". .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 48 00 00 00 00-                        |...H....|

net.c:609:Received packet
0000 04 01 00 48 00 00 00 00-61 28 00 00 00 01 00 0b |...H.... a(......|
0010 4d 61 78 69 6d 75 6d 64-61 79 73 00 00 00 0b 4d |Maximumd ays....M|
0020 61 78 69 6d 75 6d 64 61-79 73 30 00 00 00 07 00 |aximumda ys0.....|
0030 00 00 26 04 00 ae 01 00-00 d1 04 00 00 00 00 fd |..&..®.. .Ñ.....ý|
0040 10 00 02 00 01 00 00 00-                        |........|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[Maximumdays]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x1594210, (nil), 0x15dcdb0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x15bc9b0, 0x15bc9b0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x13ff640, 0x15fdb10, 0x1594210, 0x15fda5c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x15d7738, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 f5 00 00 00 00-21 e8 00 00 00 00 20 20 |...õ.... !è....  |
0010 20 20 73 65 6c 65 63 74-20 0a 20 20 20 20 20 20 |  select  .      |
0020 55 73 65 72 49 64 2c 20-0a 20 20 20 20 20 20 55 |UserId,  .      U|
0030 73 65 72 48 61 75 70 74-4d 65 6e 75 2c 20 0a 20 |serHaupt Menu, . |
0040 20 20 20 20 20 55 73 65-72 50 61 73 73 77 64 44 |     Use rPasswdD|
0050 61 74 65 20 3d 20 69 73-6e 75 6c 6c 28 55 73 65 |ate = is null(Use|
0060 72 50 61 73 73 77 64 44-61 74 65 2c 20 22 30 31 |rPasswdD ate, "01|
0070 2e 30 31 2e 35 30 22 29-2c 0a 20 20 20 20 20 20 |.01.50") ,.      |
0080 44 61 79 73 3d 64 61 74-65 64 69 66 66 28 64 61 |Days=dat ediff(da|
0090 79 2c 69 73 6e 75 6c 6c-28 55 73 65 72 50 61 73 |y,isnull (UserPas|
00a0 73 77 64 44 61 74 65 2c-20 22 30 31 2e 30 31 2e |swdDate,  "01.01.|
00b0 35 30 22 29 2c 20 67 65-74 64 61 74 65 28 29 29 |50"), ge tdate())|
00c0 0a 20 20 20 20 66 72 6f-6d 20 63 61 73 79 2e 2e |.    fro m casy..|
00d0 55 73 65 72 73 20 0a 20-20 20 20 77 68 65 72 65 |Users .     where|
00e0 20 55 73 65 72 4e 61 6d-65 20 3d 20 22 66 72 65 | UserNam e = "fre|
00f0 64 79 22 0a 0a         -                        |dy"..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 cd 00 00 00 00-                        |...Í....|

net.c:609:Received packet
0000 04 01 00 cd 00 00 00 00-61 9b 00 00 00 04 00 00 |...Í.... a.......|
0010 04 63 61 73 79 07 6b 6f-6d 6d 65 72 7a 05 55 73 |.casy.ko mmerz.Us|
0020 65 72 73 06 55 73 65 72-49 64 10 00 00 00 06 00 |ers.User Id......|
0030 00 00 34 00 00 04 63 61-73 79 07 6b 6f 6d 6d 65 |..4...ca sy.komme|
0040 72 7a 05 55 73 65 72 73-0d 55 73 65 72 48 61 75 |rz.Users .UserHau|
0050 70 74 4d 65 6e 75 30 00-00 00 02 00 00 00 af 3c |ptMenu0. ......¯<|
0060 00 00 00 00 0e 55 73 65-72 50 61 73 73 77 64 44 |.....Use rPasswdD|
0070 61 74 65 00 00 00 0e 55-73 65 72 50 61 73 73 77 |ate....U serPassw|
0080 64 44 61 74 65 30 00 00-00 0c 00 00 00 6f 08 00 |dDate0.. .....o..|
0090 04 44 61 79 73 00 00 00-04 44 61 79 73 30 00 00 |.Days... .Days0..|
00a0 00 07 00 00 00 26 04 00-ae 04 00 00 00 00 00 d1 |.....&.. ®......Ñ|
00b0 2c 00 00 00 00 00 08 56-47 00 00 00 00 00 00 04 |,......V G.......|
00c0 54 60 00 00 fd 10 00 02-00 01 00 00 00          |T`..ý... .....|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=4
token.c:1837:col 0:
token.c:1838:	column_name=[UserId]
token.c:1844:	flags=10 utype=6 type=52 varint=0
token.c:1847:	colsize=2 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[UserHauptMenu]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
token.c:1837:col 2:
token.c:1838:	column_name=[UserPasswdDate]
token.c:1844:	flags=30 utype=12 type=111 varint=1
token.c:1847:	colsize=8 prec=0 scale=0
token.c:1837:col 3:
token.c:1838:	column_name=[Days]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 4
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 52, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 52
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 3, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 111, user 12, size 8)
ct.c:2303:ct_describe() datafmt->datatype = 12 server type 111
ct.c:2282:ct_describe(0x14285c0, 4, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 4
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 52, user 6, size 2)
ct.c:2303:ct_describe() datafmt->datatype = 7 server type 52
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x12d3fc0, (nil), 0x1609430)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x15fd910, 0x12de740, (nil), 0x1609468)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:2282:ct_describe(0x14285c0, 3, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 111, user 12, size 8)
ct.c:2303:ct_describe() datafmt->datatype = 12 server type 111
ct.c:1457:ct_bind(0x14285c0, 3, 0x15fd910, 0x128af80, (nil), 0x16094a0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 3
ct.c:2282:ct_describe(0x14285c0, 4, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 4, 0x15fd910, 0x1279e20, (nil), 0x16094d8)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 4
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 52, varint size 0
token.c:2111:tds_get_data(): wire column size is 2 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is -1 
token.c:2305:tds_process_row(): reading column 2 
token.c:2050:tds_get_data: type 111, varint size 1
token.c:2111:tds_get_data(): wire column size is 8 
token.c:2305:tds_process_row(): reading column 3 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x12dd990, 0x12dd990, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 52 and has length 2
ct.c:1907:_ct_get_client_type(type 52, user 6, size 2)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x13028c0, 0x15fdb10, 0x12d3fc0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(7)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 52 (2 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 2
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length -1
ct.c:1736:_ct_bind_data(): column 2 is type 111 and has length 8
ct.c:1907:_ct_get_client_type(type 111, user 12, size 8)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x13028e8, 0x15fdb10, 0x128af80, 0x15fda5c)
ct.c:2018:_ct_get_server_type(12)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 61 (8 bytes) to type = 47 (33 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 23
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 3 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x13028f0, 0x15fdb10, 0x1279e20, 0x15fda5c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 5
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x1604818, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 4e 00 00 00 00-21 41 00 00 00 00 20 20 |...N.... !A....  |
0010 20 20 20 20 73 65 6c 65-63 74 20 55 73 65 72 50 |    sele ct UserP|
0020 61 73 73 77 6f 72 64 20-66 72 6f 6d 20 63 61 73 |assword  from cas|
0030 79 2e 2e 55 73 65 72 73-20 77 68 65 72 65 20 55 |y..Users  where U|
0040 73 65 72 49 64 20 3d 20-34 34 0a 20 20 0a       |serId =  44.  .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 5d 00 00 00 00-                        |...]....|

net.c:609:Received packet
0000 04 01 00 5d 00 00 00 00-61 31 00 00 00 01 00 00 |...].... a1......|
0010 04 63 61 73 79 07 6b 6f-6d 6d 65 72 7a 05 55 73 |.casy.ko mmerz.Us|
0020 65 72 73 0c 55 73 65 72-50 61 73 73 77 6f 72 64 |ers.User Password|
0030 30 00 00 00 01 00 00 00-af 3c 00 00 00 00 ae 01 |0....... ¯<....®.|
0040 00 00 d1 0d 00 00 00 6e-46 35 75 52 6e 61 43 59 |..Ñ....n F5uRnaCY|
0050 71 39 2e 41 fd 10 00 02-00 01 00 00 00          |q9.Aý... .....|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[UserPassword]
token.c:1844:	flags=30 utype=1 type=47 varint=5
token.c:1847:	colsize=60 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x1194120, (nil), 0x15dd910)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x12dd990, 0x12dd990, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 1, size 60)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1597080, 0x15fdb10, 0x1194120, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (61 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x1604c28, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 ba 00 00 00 00-21 ad 01 00 00 00 20 20 |...º.... !­....  |
0010 20 20 20 20 20 20 64 65-63 6c 61 72 65 20 40 6d |      de clare @m|
0020 61 78 64 65 66 20 74 69-6e 79 69 6e 74 0a 20 20 |axdef ti nyint.  |
0030 20 20 20 20 20 20 73 65-6c 65 63 74 20 40 6d 61 |      se lect @ma|
0040 78 64 65 66 20 3d 20 6d-61 78 28 55 73 65 72 4d |xdef = m ax(UserM|
0050 61 6e 64 61 6e 74 44 65-66 61 75 6c 74 29 20 66 |andantDe fault) f|
0060 72 6f 6d 20 63 61 73 79-2e 2e 55 73 65 72 4d 61 |rom casy ..UserMa|
0070 6e 64 61 6e 74 20 0a 20-20 20 20 20 20 20 20 77 |ndant .         w|
0080 68 65 72 65 20 55 73 65-72 49 64 20 3d 20 34 34 |here Use rId = 44|
0090 20 61 6e 64 20 55 73 65-72 4d 61 6e 64 61 6e 74 | and Use rMandant|
00a0 41 63 63 6f 75 6e 74 20-3d 20 30 0a 20 20 20 20 |Account  = 0.    |
00b0 20 20 20 20 69 66 20 40-6d 61 78 64 65 66 20 69 |    if @ maxdef i|
00c0 73 20 6e 6f 74 20 6e 75-6c 6c 0a 20 20 20 20 20 |s not nu ll.     |
00d0 20 20 20 62 65 67 69 6e-0a 20 20 20 20 20 20 20 |   begin .       |
00e0 20 20 20 73 65 6c 65 63-74 20 6d 61 6e 64 61 6e |   selec t mandan|
00f0 74 20 3d 20 73 75 62 73-74 72 69 6e 67 28 6d 69 |t = subs tring(mi|
0100 6e 28 55 73 65 72 4d 61-6e 64 61 6e 74 29 2c 31 |n(UserMa ndant),1|
0110 2c 31 30 29 20 0a 20 20-20 20 20 20 20 20 20 20 |,10) .           |
0120 66 72 6f 6d 20 63 61 73-79 2e 2e 55 73 65 72 4d |from cas y..UserM|
0130 61 6e 64 61 6e 74 20 0a-20 20 20 20 20 20 20 20 |andant .         |
0140 20 20 77 68 65 72 65 20-55 73 65 72 49 64 20 3d |  where  UserId =|
0150 20 34 34 0a 20 20 20 20-20 20 20 20 20 20 20 20 | 44.             |
0160 61 6e 64 20 55 73 65 72-4d 61 6e 64 61 6e 74 44 |and User MandantD|
0170 65 66 61 75 6c 74 20 3d-20 40 6d 61 78 64 65 66 |efault =  @maxdef|
0180 20 0a 20 20 20 20 20 20-20 20 20 20 20 20 61 6e | .             an|
0190 64 20 55 73 65 72 4d 61-6e 64 61 6e 74 41 63 63 |d UserMa ndantAcc|
01a0 6f 75 6e 74 20 3d 20 30-0a 20 20 20 20 20 20 20 |ount = 0 .       |
01b0 20 65 6e 64 0a 20 20 20-20 0a                   | end.     .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 61 00 00 00 00-                        |...a....|

net.c:609:Received packet
0000 04 01 00 61 00 00 00 00-fd 11 00 02 00 01 00 00 |...a.... ý.......|
0010 00 fd 01 00 02 00 00 00-00 00 61 23 00 00 00 01 |.ý...... ..a#....|
0020 00 07 6d 61 6e 64 61 6e-74 00 00 00 07 6d 61 6e |..mandan t....man|
0030 64 61 6e 74 30 00 00 00-02 00 00 00 af 14 00 00 |dant0... ....¯...|
0040 00 00 ae 01 00 00 d1 04-00 00 00 45 6e 74 77 fd |..®...Ñ. ...Entwý|
0050 11 00 02 00 01 00 00 00-fd 00 00 02 00 01 00 00 |........ ý.......|
0060 00                     -                        |.|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[mandant]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=20 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 20)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fd7fc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 20)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd6b0, 0x12d24b0, (nil), 0x15dbf20)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1194410, 0x1194410, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 4
ct.c:1907:_ct_get_client_type(type 47, user 2, size 20)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x15d6280, 0x15fdb10, 0x12d24b0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (4 bytes) to type = 47 (21 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x152e018, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 01 51 00 00 00 00-21 44 01 00 00 00 20 20 |...Q.... !D....  |
0010 20 20 20 20 20 20 69 66-20 6e 6f 74 20 65 78 69 |      if  not exi|
0020 73 74 73 20 0a 20 20 20-20 20 20 20 20 20 28 73 |sts .          (s|
0030 65 6c 65 63 74 20 55 73-65 72 4d 61 6e 64 61 6e |elect Us erMandan|
0040 74 20 66 72 6f 6d 20 63-61 73 79 2e 2e 55 73 65 |t from c asy..Use|
0050 72 4d 61 6e 64 61 6e 74-0a 20 20 20 20 20 20 20 |rMandant .       |
0060 20 20 20 77 68 65 72 65-20 55 73 65 72 4d 61 6e |   where  UserMan|
0070 64 61 6e 74 3d 22 45 6e-74 77 22 0a 20 20 20 20 |dant="En tw".    |
0080 20 20 20 20 20 20 20 20-61 6e 64 20 55 73 65 72 |         and User|
0090 47 72 6f 75 70 49 44 20-3e 3d 20 32 35 30 0a 20 |GroupID  >= 250. |
00a0 20 20 20 20 20 20 20 20-29 0a 20 20 20 20 20 20 |         ).      |
00b0 20 20 20 62 65 67 69 6e-0a 20 20 20 20 20 20 20 |   begin .       |
00c0 20 20 20 20 75 70 64 61-74 65 20 63 61 73 79 2e |    upda te casy.|
00d0 2e 55 73 65 72 4d 61 6e-64 61 6e 74 0a 20 20 20 |.UserMan dant.   |
00e0 20 20 20 20 20 20 20 20-73 65 74 20 55 73 65 72 |         set User|
00f0 47 72 6f 75 70 49 44 20-3d 20 32 35 30 0a 20 20 |GroupID  = 250.  |
0100 20 20 20 20 20 20 20 20-20 77 68 65 72 65 20 55 |          where U|
0110 73 65 72 4d 61 6e 64 61-6e 74 3d 22 45 6e 74 77 |serManda nt="Entw|
0120 22 0a 20 20 20 20 20 20-20 20 20 20 20 20 20 61 |".              a|
0130 6e 64 20 55 73 65 72 49-64 20 3d 20 34 34 0a 20 |nd UserI d = 44. |
0140 20 20 20 20 20 20 20 20-65 6e 64 0a 20 20 20 20 |         end.    |
0150 0a                     -                        |.|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 1a 00 00 00 00-                        |........|

net.c:609:Received packet
0000 04 01 00 1a 00 00 00 00-fd 01 00 02 00 00 00 00 |........ ý.......|
0010 00 fd 00 00 02 00 00 00-00 00                   |.ý...... ..|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 0
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x15db468, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
net.c:741:Sending packet
0000 0f 00 02 00 00 00 00 00-21 fa 01 00 00 00 20 20 |........ !ú....  |
0010 20 20 20 20 69 66 20 6e-6f 74 20 65 78 69 73 74 |    if n ot exist|
0020 73 20 28 73 65 6c 65 63-74 20 55 73 65 72 41 63 |s (selec t UserAc|
0030 63 6f 75 6e 74 20 66 72-6f 6d 20 63 61 73 79 2e |count fr om casy.|
0040 2e 55 73 65 72 73 29 0a-20 20 20 20 20 20 62 65 |.Users).       be|
0050 67 69 6e 0a 20 20 20 20-20 20 20 20 69 6e 73 65 |gin.         inse|
0060 72 74 20 63 61 73 79 2e-2e 55 73 65 72 73 20 28 |rt casy. .Users (|
0070 55 73 65 72 49 64 2c 55-73 65 72 41 63 63 6f 75 |UserId,U serAccou|
0080 6e 74 2c 55 73 65 72 4e-61 6d 65 29 20 0a 20 20 |nt,UserN ame) .  |
0090 20 20 20 20 20 20 76 61-6c 75 65 73 20 28 30 2c |      va lues (0,|
00a0 30 2c 22 66 72 65 64 79-22 29 0a 20 20 20 20 20 |0,"fredy ").     |
00b0 20 20 20 73 65 6c 65 63-74 20 76 69 72 67 69 6e |   selec t virgin|
00c0 20 3d 20 63 6f 6e 76 65-72 74 28 62 69 74 2c 31 | = conve rt(bit,1|
00d0 29 0a 20 20 20 20 20 20-65 6e 64 0a 0a 20 20 20 |).       end..   |
00e0 20 20 20 69 66 20 6e 6f-74 20 65 78 69 73 74 73 |   if no t exists|
00f0 20 28 73 65 6c 65 63 74-20 55 73 65 72 47 72 6f | (select  UserGro|
0100 75 70 49 44 20 66 72 6f-6d 20 63 61 73 79 2e 2e |upID fro m casy..|
0110 55 73 65 72 52 69 67 68-74 73 29 0a 20 20 20 20 |UserRigh ts).    |
0120 20 20 62 65 67 69 6e 0a-20 20 20 20 20 20 20 20 |  begin.         |
0130 69 6e 73 65 72 74 20 63-61 73 79 2e 2e 55 73 65 |insert c asy..Use|
0140 72 52 69 67 68 74 73 28-55 73 65 72 47 72 6f 75 |rRights( UserGrou|
0150 70 49 44 2c 46 6f 72 6d-49 44 2c 52 69 67 68 74 |pID,Form ID,Right|
0160 4d 61 73 6b 29 0a 20 20-20 20 20 20 20 20 76 61 |Mask).         va|
0170 6c 75 65 73 20 28 32 35-30 2c 27 41 4c 4c 27 2c |lues (25 0,'ALL',|
0180 32 31 34 37 34 38 33 36-34 37 29 0a 20 20 20 20 |21474836 47).    |
0190 20 20 65 6e 64 0a 0a 20-20 20 20 20 20 64 65 63 |  end..       dec|
01a0 6c 61 72 65 20 40 41 6e-7a 61 68 6c 20 69 6e 74 |lare @An zahl int|
01b0 0a 20 20 20 20 20 20 65-78 65 63 20 40 41 6e 7a |.      e xec @Anz|
01c0 61 68 6c 20 3d 20 63 61-73 79 2e 2e 55 73 65 72 |ahl = ca sy..User|
01d0 4c 6f 67 69 6e 43 6f 72-72 65 63 74 20 22 66 72 |LoginCor rect "fr|
01e0 65 64 79 22 2c 20 22 4c-22 0a 20 20 20 20 20 20 |edy", "L ".      |
01f0 73 65 6c 65 63 74 20 41-6e 7a 61 68 6c 3d 40 41 |select A nzahl=@A|

util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 0f 00 00 00 00-6e 7a 61 68 6c 0a 0a    |........ nzahl..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 01 36 00 00 00 00-                        |...6....|

net.c:609:Received packet
0000 04 01 01 36 00 00 00 00-fd 01 00 02 00 00 00 00 |...6.... ý.......|
0010 00 fd 01 00 02 00 00 00-00 00 fd 01 00 02 00 00 |.ý...... ..ý.....|
0020 00 00 00 ff 51 00 02 00-01 00 00 00 ff 41 00 02 |...ÿQ... ....ÿA..|
0030 00 00 00 00 00 ff 41 00-02 00 00 00 00 00 ff 41 |.....ÿA. ......ÿA|
0040 00 02 00 00 00 00 00 ff-51 00 02 00 01 00 00 00 |.......ÿ Q.......|
0050 ff 41 00 02 00 00 00 00-00 ff 45 00 01 00 00 00 |ÿA...... .ÿE.....|
0060 00 00 ff 45 00 01 00 00-00 00 00 ff 45 00 01 00 |..ÿE.... ...ÿE...|
0070 00 00 00 00 ff 45 00 01-00 00 00 00 00 ff 51 00 |....ÿE.. .....ÿQ.|
0080 02 00 01 00 00 00 ff 41-00 02 00 00 00 00 00 ff |......ÿA .......ÿ|
0090 45 00 01 00 00 00 00 00-ff 45 00 01 00 00 00 00 |E....... ÿE......|
00a0 00 ff 45 00 01 00 00 00-00 00 ff 45 00 01 00 00 |.ÿE..... ..ÿE....|
00b0 00 00 00 ff 51 00 02 00-01 00 00 00 ff 41 00 02 |...ÿQ... ....ÿA..|
00c0 00 00 00 00 00 ff 41 00-02 00 00 00 00 00 ff 41 |.....ÿA. ......ÿA|
00d0 00 02 00 00 00 00 00 ff-41 00 02 00 00 00 00 00 |.......ÿ A.......|
00e0 ff 51 00 02 00 01 00 00-00 ff 51 00 02 00 01 00 |ÿQ...... .ÿQ.....|
00f0 00 00 79 01 00 00 00 fe-09 00 02 00 01 00 00 00 |..y....þ ........|
0100 61 1e 00 00 00 01 00 06-41 6e 7a 61 68 6c 00 00 |a....... Anzahl..|
0110 00 06 41 6e 7a 61 68 6c-30 00 00 00 07 00 00 00 |..Anzahl 0.......|
0120 26 04 00 ae 01 00 00 d1-04 01 00 00 00 fd 10 00 |&..®...Ñ .....ý..|
0130 02 00 01 00 00 00      -                        |......|

token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 0
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ff(DONEINPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4054) 
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  79(RETURNSTATUS)
token.c:690:tds_process_tokens: return status is 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4043) 
ct.c:3833:_ct_process_return_status(0x1428120)
mem.c:615:tds_free_all_results()
ct.c:3851:generating return status row. type = 56(int), varint_size 0
ct.c:2059:ct_cancel((nil), 0x14285c0, 6000)
ct.c:2076:CS_CANCEL_CURRENT
ct.c:3811:_ct_fetchable_results(0x14285c0)
ct.c:2086:ct_cancel() - fetching results()
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
ct.c:1729:_ct_bind_data(0x1427ce0, 0x13edaa0, 0x13edaa0, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 56 and has length 4
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, (nil))
mem.c:615:tds_free_all_results()
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fe(DONEPROC)
token.c:2340:tds_process_end: more_results = 1
		was_cancelled = 0
		error = 0
		done_count_valid = 0
token.c:2371:                rows_affected = 1
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4053) 
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=1
token.c:1837:col 0:
token.c:1838:	column_name=[Anzahl]
token.c:1844:	flags=30 utype=7 type=38 varint=1
token.c:1847:	colsize=4 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd910)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1122:ct_results(0x14285c0, 0x15fd76c)
token.c:540:tds_process_tokens(0x1428120, 0x15fd598, 0x15fd59c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fd7fc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 1
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd600)
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
ct.c:2303:ct_describe() datafmt->datatype = 8 server type 38
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd6b0, 0x1306220, (nil), 0x15dbf00)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 38, varint size 1
token.c:2111:tds_get_data(): wire column size is 4 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1192680, 0x1192680, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 38 and has length 4
ct.c:1907:_ct_get_client_type(type 38, user 7, size 4)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x14cde50, 0x15fdb10, 0x1306220, 0x15fda5c)
ct.c:2018:_ct_get_server_type(8)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 56 (4 bytes) to type = 47 (13 bytes)
cs.c:719:cs_convert() calling tds_convert
cs.c:722:cs_convert() tds_convert returned 1
cs.c:845:cs_convert() FMT_NULLTERM
cs.c:66:cs_prretcode(1)
cs.c:892:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x15de1f8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 84 00 00 00 00-21 77 00 00 00 00 20 20 |........ !w....  |
0010 20 20 20 20 20 20 20 20-73 65 6c 65 63 74 20 72 |         select r|
0020 74 72 69 6d 28 45 6d 61-69 6c 41 64 72 65 73 73 |trim(Ema ilAdress|
0030 29 2c 72 74 72 69 6d 28-48 69 6c 66 65 53 70 72 |),rtrim( HilfeSpr|
0040 61 63 68 65 29 20 0a 20-20 20 20 20 20 20 20 20 |ache) .          |
0050 20 66 72 6f 6d 20 63 61-73 79 2e 2e 55 73 65 72 | from ca sy..User|
0060 73 20 77 68 65 72 65 20-55 73 65 72 4e 61 6d 65 |s where  UserName|
0070 20 3d 20 22 66 72 65 64-79 22 0a 20 20 20 20 20 | = "fred y".     |
0080 20 20 20 0a            -                        |   .|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING
net.c:555:Received header
0000 04 01 00 5a 00 00 00 00-                        |...Z....|

net.c:609:Received packet
0000 04 01 00 5a 00 00 00 00-61 28 00 00 00 02 00 00 |...Z.... a(......|
0010 00 00 00 00 30 00 00 00-02 00 00 00 af fe 01 00 |....0... ....¯þ..|
0020 00 00 00 00 00 00 00 30-00 00 00 02 00 00 00 af |.......0 .......¯|
0030 08 00 00 00 00 ae 02 00-00 00 d1 0d 00 00 00 66 |.....®.. ..Ñ....f|
0040 72 65 64 79 40 6f 70 61-67 2e 63 68 01 00 00 00 |redy@opa g.ch....|
0050 44 fd 10 00 02 00 01 00-00 00                   |Dý...... ..|

token.c:555:processing result tokens.  marker is  61(ROWFMT2)
token.c:1740:tds5_process_result
mem.c:615:tds_free_all_results()
token.c:1764:num_cols=2
token.c:1837:col 0:
token.c:1838:	column_name=[]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=510 prec=0 scale=0
token.c:1837:col 1:
token.c:1838:	column_name=[]
token.c:1844:	flags=30 utype=2 type=47 varint=5
token.c:1847:	colsize=8 prec=0 scale=0
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4049) 
ct.c:2346:ct_res_info(0x14285c0, 801, 0x1427c88, -99999, (nil))
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fdcbc, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fdb70)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 8)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  ae(CONTROL)
token.c:122:tds_process_default_tokens() marker is ae(CONTROL)
token.c:237:Eating CONTROL token
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:666:tds_process_tokens::SET_RETURN stopping on current token
util.c:156:Changed query state from READING to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4040) 
ct.c:2346:ct_res_info(0x14285c0, 803, 0x15fda5c, -99999, (nil))
ct.c:2365:ct_res_info(): Number of columns is 2
ct.c:2282:ct_describe(0x14285c0, 1, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 1, 0x15fd910, 0x1278600, (nil), 0x13226f0)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 1
ct.c:2282:ct_describe(0x14285c0, 2, 0x15fd860)
ct.c:1907:_ct_get_client_type(type 47, user 2, size 8)
ct.c:2303:ct_describe() datafmt->datatype = 0 server type 47
ct.c:1457:ct_bind(0x14285c0, 2, 0x15fd910, 0x1524de0, (nil), 0x1322728)
ct.c:1459:ct_bind() datafmt count = 1 column_number = 2
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc2c, (nil), 0x1608)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  d1(ROW)
token.c:2305:tds_process_row(): reading column 0 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 13 
token.c:2305:tds_process_row(): reading column 1 
token.c:2050:tds_get_data: type 47, varint size 5
token.c:2111:tds_get_data(): wire column size is 1 
util.c:156:Changed query state from READING to PENDING
ct.c:1583:inside ct_fetch() process_row_tokens returned 1
ct.c:1729:_ct_bind_data(0x1427ce0, 0x1192680, 0x1192680, 0)
ct.c:1736:_ct_bind_data(): column 0 is type 47 and has length 13
ct.c:1907:_ct_get_client_type(type 47, user 2, size 510)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x15cf580, 0x15fdb10, 0x1278600, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (13 bytes) to type = 47 (511 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1736:_ct_bind_data(): column 1 is type 47 and has length 1
ct.c:1907:_ct_get_client_type(type 47, user 2, size 8)
cs.c:523:cs_convert(0x1427ce0, 0x15fda60, 0x1313f80, 0x15fdb10, 0x1524de0, 0x15fda5c)
ct.c:2018:_ct_get_server_type(0)
ct.c:2018:_ct_get_server_type(0)
cs.c:569:converting type 47 (1 bytes) to type = 47 (9 bytes)
cs.c:583:cs_convert() srctype == desttype
cs.c:619:cs_convert() desttype = character
cs.c:66:cs_prretcode(1)
cs.c:702:cs_convert() returning  CS_SUCCEED
ct.c:1518:ct_fetch(0x14285c0, -99999, -99999, -99999, 0x15fdcbc)
ct.c:1122:ct_results(0x14285c0, 0x15fdcb8)
token.c:540:tds_process_tokens(0x1428120, 0x15fdc28, 0x15fdc2c, 0x6914)
util.c:156:Changed query state from PENDING to READING
token.c:555:processing result tokens.  marker is  fd(DONE)
token.c:2340:tds_process_end: more_results = 0
		was_cancelled = 0
		error = 0
		done_count_valid = 1
token.c:2356:tds_process_end() state set to TDS_IDLE
util.c:156:Changed query state from READING to IDLE
token.c:2371:                rows_affected = 1
util.c:104:logic error: cannot change query state from IDLE to PENDING
ct.c:1179:ct_results() process_result_tokens returned 1 (type 4052) 
ct.c:1285:ct_results() results state = 2
ct.c:1286:ct_results() command type  = 148
ct.c:1287:ct_results() dynamic cmd   = 0
ct.c:1122:ct_results(0x14285c0, 0x15fd9cc)
token.c:540:tds_process_tokens(0x1428120, 0x15fd7f8, 0x15fd7fc, 0x6914)
token.c:543:tds_process_tokens() state is COMPLETED
ct.c:1179:ct_results() process_result_tokens returned 2 (type 4052) 
ct.c:237:ct_describe_cmd_state(3)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from SENT)
ct.c:705:ct_command(0x14285c0, 148, 0x14cc7f8, -9, 16)
ct.c:844:_ct_initialise_cmd(0x14285c0)
ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from READY)
ct.c:4042:rpc_clear((nil))
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(0)
ct.c:225:setting command state to IDLE (from IDLE)
ct.c:237:ct_describe_cmd_state(0)
ct.c:237:ct_describe_cmd_state(1)
ct.c:225:setting command state to BUILDING (from IDLE)
ct.c:705:ct_command(0x14285c0, 148, 0x4edbaa, -9, 32)
ct.c:237:ct_describe_cmd_state(1)
ct.c:237:ct_describe_cmd_state(2)
ct.c:225:setting command state to READY (from BUILDING)
ct.c:866:ct_send(0x14285c0)
ct.c:868:ct_send() command_type = 148
mem.c:615:tds_free_all_results()
util.c:156:Changed query state from IDLE to QUERYING
util.c:156:Changed query state from QUERYING to PENDING
net.c:741:Sending packet
0000 0f 01 00 7e 00 00 00 00-21 71 00 00 00 00 20 20 |...~.... !q....  |
0010 20 20 20 20 20 20 73 65-6c 65 63 74 20 57 61 74 |      se lect Wat|
0020 63 68 64 6f 67 20 3d 20-43 6f 6e 74 65 6e 74 73 |chdog =  Contents|
0030 20 66 72 6f 6d 20 63 61-73 79 2e 2e 47 6c 6f 62 | from ca sy..Glob|
0040 61 6c 65 73 0a 20 20 20-20 20 20 20 20 77 68 65 |ales.         whe|
0050 72 65 20 55 73 65 72 4e-61 6d 65 20 3d 20 27 2a |re UserN ame = '*|
0060 27 20 61 6e 64 20 56 61-72 69 61 62 6c 65 6e 4e |' and Va riablenN|
0070 61 6d 65 20 3d 20 27 61-75 73 27 20 0a 0a       |ame = 'a us' ..|

ct.c:237:ct_describe_cmd_state(2)
ct.c:237:ct_describe_cmd_state(3)
ct.c:225:setting command state to SENT (from READY)
ct.c:989:ct_send() succeeded
ct.c:1122:ct_results(0x14285c0, 0x15fdc2c)
token.c:540:tds_process_tokens(0x1428120, 0x15fda58, 0x15fda5c, 0x6914)
util.c:156:Changed query state from PENDING to READING


  • [freetds] FreeTDS 1.1 - missing CS_ROWFMT_RESULT row in ct_results, Fredy Paquet, 07/08/2017

Archive powered by MHonArc 2.6.24.

Top of Page