php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #77499 PHP crashes when loading binary data from .mdb access database with pdo
Submitted: 2019-01-22 12:07 UTC Modified: 2020-10-11 04:22 UTC
Votes:2
Avg. Score:3.5 ± 0.5
Reproduced:1 of 1 (100.0%)
Same Version:0 (0.0%)
Same OS:1 (100.0%)
From: php at checkthis2 dot com Assigned: cmb (profile)
Status: No Feedback Package: PDO ODBC
PHP Version: 7.3.1 OS: Windows 2016 x64
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
34 + 30 = ?
Subscribe to this entry?

 
 [2019-01-22 12:07 UTC] php at checkthis2 dot com
Description:
------------
The same script is running on two servers:

- Windows 8.1 x64 > no errors on php 7.1
- Windows 2016 x64 > Same error on php 7.1, 7.2 and 7.3

Both servers use the same database file, but during testing I minimized the database and script to have the smallest possible test case.

When I select "TOP 1" from the database it always works. When I select "TOP 2" from the database it works 50% of the time. When I select "TOP 3" from the database it always fails.
This lead me to believe it was memory related, but "memory_get_usage(true)" doesn't change at all in the while loop.

When I remove the column with binary data from the select, it always works. The binary column contains bitmap files <100kb.

Since PHP crashes I cannot catch an error. The event viewer will show:

Faulting application name: php-cgi.exe, version: 7.3.1.0, time stamp: 0x5c36749f
Faulting module name: ucrtbase.dll, version: 10.0.14393.2636, time stamp: 0x5bda7e9c
Exception code: 0xc0000409
Fault offset: 0x000000000006e83e
Faulting process id: 0x1218
Faulting application start time: 0x01d4b246870ef93b
Faulting application path: C:\Program Files\PHP\v7.3.1\php-cgi.exe
Faulting module path: C:\Windows\System32\ucrtbase.dll
Report Id: 02434a86-94bc-4feb-8ba5-c9a1e3904429
Faulting package full name: 
Faulting package-relative application ID: 


You can download a test version of the .mdb here: https://ufile.io/mae0y





Test script:
---------------
<?php
declare(strict_types=1);

error_reporting(E_ALL); //enable error handling
ini_set('display_errors', '1'); //We show the errors by default, un set in website config

define('CRLF', "<br>");

$dbfile = realpath('test.mdb');
$connStr = 'odbc:DRIVER={Microsoft Access Driver (*.mdb, *.accdb)};charset=UTF-8; DBQ='.$dbfile.';';
$dbh = new \PDO($connStr);
$dbh->setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION);

$sth = $dbh->prepare('SELECT top 3 wmslabpic,pictogram FROM wmslabpic');
$sth->execute();
$index = 0;
while ($row = $sth->fetch(\PDO::FETCH_ASSOC)) {
  $index++;
  echo $index . CRLF;  
}

Expected result:
----------------
I expect php to give a catchable error if something is wrong or atleast that it wont crash.

Actual result:
--------------
[22-1-2019 12:45:13]
  Process created. BaseModule - C:\Program Files\PHP\v7.3.1\php-cgi.exe. BaseThread - System ID: 2804
  C:\Windows\SYSTEM32\ntdll.dll loaded at 0x98c60000
  Thread created. New thread - System ID: 5792
  Thread created. New thread - System ID: 2564
  Thread created. New thread - System ID: 3640
  Thread created. New thread - System ID: 5732
  Thread created. New thread - System ID: 3924
  Thread created. New thread - System ID: 5536
  Thread created. New thread - System ID: 2872
  C:\Windows\System32\KERNEL32.DLL loaded at 0x986b0000
  C:\Windows\System32\KERNELBASE.dll loaded at 0x95bb0000
  C:\Windows\System32\WS2_32.dll loaded at 0x96630000
  C:\Windows\System32\sechost.dll loaded at 0x96200000
  C:\Windows\System32\RPCRT4.dll loaded at 0x97ce0000
  C:\Windows\System32\ADVAPI32.dll loaded at 0x97e10000
  C:\Windows\System32\msvcrt.dll loaded at 0x96270000
  C:\Windows\System32\ucrtbase.dll loaded at 0x95320000
  C:\Program Files\PHP\v7.3.1\php7.dll loaded at 0x5ac90000
  C:\Windows\System32\ole32.dll loaded at 0x97f20000
  C:\Windows\System32\combase.dll loaded at 0x98990000
  C:\Windows\System32\bcryptPrimitives.dll loaded at 0x95150000
  C:\Windows\System32\GDI32.dll loaded at 0x96310000
  C:\Windows\System32\gdi32full.dll loaded at 0x96060000
  C:\Windows\System32\USER32.dll loaded at 0x963c0000
  C:\Windows\System32\win32u.dll loaded at 0x95dd0000
  C:\Windows\SYSTEM32\VCRUNTIME140.dll loaded at 0x8a6a0000
  C:\Windows\SYSTEM32\IPHLPAPI.DLL loaded at 0x94710000
  C:\Windows\SYSTEM32\DNSAPI.dll loaded at 0x94750000
  C:\Windows\SYSTEM32\bcrypt.dll loaded at 0x95010000
  C:\Windows\System32\NSI.dll loaded at 0x96700000
  C:\Program Files\PHP\v7.3.1\ext\php_curl.dll loaded at 0x5ac00000
  C:\Windows\System32\WLDAP32.dll loaded at 0x966a0000
  C:\Windows\System32\Normaliz.dll loaded at 0x96260000
  C:\Program Files\PHP\v7.3.1\libcrypto-1_1-x64.dll loaded at 0x5a8b0000
  C:\Program Files\PHP\v7.3.1\libssl-1_1-x64.dll loaded at 0x5a800000
  C:\Windows\System32\CRYPT32.dll loaded at 0x95e90000
  C:\Program Files\PHP\v7.3.1\libssh2.dll loaded at 0x80000000
  C:\Windows\System32\MSASN1.dll loaded at 0x95110000
  C:\Program Files\PHP\v7.3.1\nghttp2.dll loaded at 0x5a7c0000
  C:\Program Files\PHP\v7.3.1\ext\php_gd2.dll loaded at 0x5a310000
  C:\Program Files\PHP\v7.3.1\ext\php_gettext.dll loaded at 0x7e1d0000
  C:\Program Files\PHP\v7.3.1\ext\php_mysqli.dll loaded at 0x5a7a0000
  C:\Program Files\PHP\v7.3.1\ext\php_mbstring.dll loaded at 0x5a1b0000
  C:\Program Files\PHP\v7.3.1\ext\php_openssl.dll loaded at 0x5a770000
  C:\Program Files\PHP\v7.3.1\ext\php_soap.dll loaded at 0x5a730000
  C:\Program Files\PHP\v7.3.1\ext\php_xmlrpc.dll loaded at 0x5a710000
  C:\Program Files\PHP\v7.3.1\ext\php_pdo_odbc.dll loaded at 0x8b3d0000
  C:\Windows\SYSTEM32\ODBC32.dll loaded at 0x80300000
  C:\Windows\SYSTEM32\DPAPI.dll loaded at 0x94300000
  C:\Program Files\PHP\v7.3.1\ext\php_pdo_sqlite.dll loaded at 0x5a0e0000
  C:\Program Files\PHP\v7.3.1\ext\php_tidy.dll loaded at 0x5a680000
  C:\Program Files\PHP\v7.3.1\ext\php_pdo_sqlsrv_73_nts.dll loaded at 0x5a080000
  C:\Windows\SYSTEM32\MSVCP140.dll loaded at 0x882c0000
  C:\Program Files\PHP\v7.3.1\ext\php_sqlsrv_73_nts.dll loaded at 0x5a010000
  C:\Windows\SYSTEM32\secur32.dll loaded at 0x91940000
  C:\Windows\SYSTEM32\SSPICLI.DLL loaded at 0x94d30000
  C:\Windows\system32\mswsock.dll loaded at 0x94990000
  C:\PROGRA~1\COMMON~1\MICROS~1\OFFICE16\ACEODBC.DLL loaded at 0x59fb0000
  C:\Windows\System32\COMDLG32.dll loaded at 0x96530000
  C:\Windows\System32\shcore.dll loaded at 0x95b00000
  C:\Windows\System32\SHLWAPI.dll loaded at 0x984b0000
  C:\Windows\System32\SHELL32.dll loaded at 0x967d0000
  C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_5.82.14393.2457_none_a13eaee9d8fd5c07\COMCTL32.dll loaded at 0x7c140000
  C:\Windows\System32\cfgmgr32.dll loaded at 0x952d0000
  C:\Windows\System32\windows.storage.dll loaded at 0x95420000
  C:\Windows\System32\powrprof.dll loaded at 0x950c0000
  C:\Windows\System32\kernel.appcore.dll loaded at 0x95140000
  C:\Windows\System32\profapi.dll loaded at 0x95120000
  C:\Windows\SYSTEM32\MTXDM.DLL loaded at 0x899e0000
  C:\Windows\System32\clbcatq.dll loaded at 0x98760000
  C:\Windows\System32\comsvcs.dll loaded at 0x89bd0000
  C:\Windows\System32\OLEAUT32.dll loaded at 0x96710000
  C:\Windows\System32\msvcp_win.dll loaded at 0x95df0000
  C:\Program Files\Common Files\Microsoft Shared\Office16\mso20win32client.dll loaded at 0x59ca0000
  C:\Program Files\Common Files\Microsoft Shared\Office16\mso30win32client.dll loaded at 0x58470000
  C:\Program Files\Common Files\Microsoft Shared\Office16\mso40uiwin32client.dll loaded at 0x57b80000
  C:\Windows\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.14393.2665_none_aecc0577ddd3cc83\gdiplus.dll loaded at 0x76550000
  C:\Program Files\Common Files\Microsoft Shared\Office16\mso99Lwin32client.dll loaded at 0x573b0000
  C:\Windows\SYSTEM32\MSIMG32.dll loaded at 0x88cc0000
  C:\Windows\SYSTEM32\SLC.dll loaded at 0x934d0000
  C:\Windows\SYSTEM32\sppc.dll loaded at 0x934a0000
  C:\Program Files\Common Files\Microsoft Shared\Office16\mso.dll loaded at 0x560c0000
  C:\Windows\SYSTEM32\msi.dll loaded at 0x85310000
  C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.14393.2608_none_7ddacc7e8347078e\Comctl32.dll loaded at 0x872d0000
  C:\Windows\SYSTEM32\d2d1.dll loaded at 0x8e360000
  C:\Windows\SYSTEM32\WTSAPI32.dll loaded at 0x92960000
  C:\Windows\SYSTEM32\WINSTA.dll loaded at 0x94fa0000
  C:\Windows\SYSTEM32\dxgi.dll loaded at 0x94140000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\1033\ACEODBCI.DLL loaded at 0x59c80000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\ACEERR.DLL loaded at 0x750e0000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\ACECORE.DLL loaded at 0x59a30000
  C:\Windows\system32\odbccp32.dll loaded at 0x59a00000
  C:\Windows\SYSTEM32\VERSION.dll loaded at 0x8c8a0000
  C:\Windows\SYSTEM32\DWrite.dll loaded at 0x89590000
  C:\Windows\SYSTEM32\d3d10_1.dll loaded at 0x599c0000
  C:\Windows\SYSTEM32\d3d10_1core.dll loaded at 0x60f50000
  C:\Windows\SYSTEM32\d3d11.dll loaded at 0x90ab0000
  C:\Windows\System32\IMM32.DLL loaded at 0x98800000
  C:\Windows\System32\USERENV.dll loaded at 0x94820000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\1033\ACEWSTR.DLL loaded at 0x55fe0000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\ACEES.DLL loaded at 0x55f00000
  C:\Windows\System32\netprofm.dll loaded at 0x92750000
  C:\Windows\System32\npmproxy.dll loaded at 0x8f900000
  C:\Windows\SYSTEM32\WINHTTP.dll loaded at 0x915e0000
  C:\Windows\SYSTEM32\dhcpcsvc6.DLL loaded at 0x928c0000
  C:\Windows\SYSTEM32\dhcpcsvc.DLL loaded at 0x92820000
  C:\Windows\SYSTEM32\ondemandconnroutehelper.dll loaded at 0x86390000
  C:\Windows\SYSTEM32\urlmon.dll loaded at 0x8a8b0000
  C:\Windows\SYSTEM32\iertutil.dll loaded at 0x8f650000
  C:\Windows\SYSTEM32\WININET.dll loaded at 0x7bb20000
  C:\Windows\SYSTEM32\webio.dll loaded at 0x86ea0000
  C:\Windows\SYSTEM32\WINNSI.DLL loaded at 0x92d70000
  C:\Windows\System32\rasadhlp.dll loaded at 0x8f970000
  C:\Windows\System32\fwpuclnt.dll loaded at 0x92d00000
  C:\Windows\system32\schannel.DLL loaded at 0x944e0000
  C:\Windows\SYSTEM32\mskeyprotect.dll loaded at 0x870f0000
  C:\Windows\SYSTEM32\ncrypt.dll loaded at 0x94c10000
  C:\Windows\SYSTEM32\NTASN1.dll loaded at 0x94bd0000
  C:\Windows\system32\ncryptsslp.dll loaded at 0x87140000
  C:\Windows\SYSTEM32\webservices.dll loaded at 0x86490000
  Thread created. New thread - System ID: 3952
  Initializing control script
  Clearing any existing breakpoints
  
  Current Breakpoint List(BL)
[22-1-2019 12:45:16]
  Thread exited. Exiting thread - System ID: 3952. Exit code - 0x00000000
  Thread created. New thread - System ID: 5268
  Thread created. New thread - System ID: 5148
  Thread created. New thread - System ID: 5944
  C:\Windows\SYSTEM32\D3D10Warp.dll loaded at 0x8f2e0000
  Thread created. New thread - System ID: 4004
[22-1-2019 12:45:27]
  Exception 0XE06D7363 on thread 2804. DetailID = 1
  Exception 0XE06D7363 on thread 2804. DetailID = 2
  Thread created. New thread - System ID: 3292
  Exception 0XE06D7363 on thread 2804. DetailID = 3
  Exception 0XE06D7363 on thread 2804. DetailID = 4
  Exception 0XE06D7363 on thread 2804. DetailID = 5
  Exception 0XE06D7363 on thread 2804. DetailID = 6
  Exception 0XE06D7363 on thread 2804. DetailID = 7
  Exception 0XE06D7363 on thread 2804. DetailID = 8
  Exception 0XE06D7363 on thread 2804. DetailID = 9
  Exception 0XE06D7363 on thread 2804. DetailID = 10
  Exception 0XE06D7363 on thread 2804. DetailID = 11
  Exception 0XE06D7363 on thread 2804. DetailID = 12
  Exception 0XE06D7363 on thread 2804. DetailID = 13
  Exception 0XE06D7363 on thread 2804. DetailID = 14
  Thread created. New thread - System ID: 4468
  Thread created. New thread - System ID: 2640
  Thread created. New thread - System ID: 944
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  Thread created. New thread - System ID: 5592
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  Thread created. New thread - System ID: 4116
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  Thread created. New thread - System ID: 5728
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
[22-1-2019 12:45:28]
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL Unloaded from 0x89a10000
  C:\Program Files\Common Files\Microsoft Shared\OFFICE16\VBAJET32.DLL loaded at 0x89a10000
[22-1-2019 12:45:29]
  Exception 0XE06D7363 on thread 3292. DetailID = 15
[22-1-2019 12:45:33]
  Second chance exception - 0XE06D7363 caused by thread with System ID: 3292 DetailID = 15
  Thread exited. Exiting thread - System ID: 5792. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 3640. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 3924. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 2872. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5268. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5944. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 944. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5592. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5728. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 2640. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 4468. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 4004. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 4116. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5148. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5536. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 5732. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 2564. Exit code - 0xffffffff
  Thread exited. Exiting thread - System ID: 2804. Exit code - 0xffffffff
  Process exited. Exit code - 0xffffffff

***********************
*  EXCEPTION DETAILS  *
***********************

DetailID = 1
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal485+0x573
		mso30win32client!Ordinal890+0x127
		mso30win32client!Ordinal792+0x7b6
		mso30win32client!Ordinal1248+0x861
		mso30win32client!Ordinal1248+0xa10
		mso30win32client!Ordinal462+0x4b
		mso30win32client!Ordinal522+0x8ae
		mso40uiwin32client!Ordinal2954+0x14
		mso99Lwin32client!Ordinal88+0x1b
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 2
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal332+0x19a7
		mso30win32client!Ordinal1055+0x1f08d
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal462+0x4b
		mso30win32client!Ordinal522+0x8ae
		mso40uiwin32client!Ordinal2954+0x14
		mso99Lwin32client!Ordinal88+0x1b
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 3
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal344+0x5efa2
		mso30win32client!Ordinal1248+0xaaf
		mso30win32client!Ordinal23+0xd1
		mso30win32client!Ordinal1325+0x39
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x16c6
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x1b72
		mso!Ordinal312+0xb0
		mso!Ordinal3564+0xf47
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 4
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal1524+0xf5f
		mso30win32client!Ordinal1055+0x1df3d
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal23+0xd1
		mso30win32client!Ordinal1325+0x39
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x16c6
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x1b72
		mso!Ordinal312+0xb0
		mso!Ordinal3564+0xf47
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 5
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal344+0x5efa2
		mso30win32client!Ordinal1248+0xaaf
		mso30win32client!Ordinal23+0xd1
		mso30win32client!Ordinal1325+0x39
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x13ff
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x1065
		mso!Ordinal462+0x7c
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x128e
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 6
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal1524+0xf5f
		mso30win32client!Ordinal1055+0x1df3d
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal23+0xd1
		mso30win32client!Ordinal1325+0x39
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x13ff
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x1065
		mso!Ordinal462+0x7c
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x128e
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 7
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal344+0x5efa2
		mso30win32client!Ordinal1248+0xaaf
		mso30win32client!Ordinal23+0x2d
		mso!Ordinal3862+0x12f
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 8
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal1524+0xf5f
		mso30win32client!Ordinal1055+0x1dda5
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal23+0x2d
		mso!Ordinal3862+0x12f
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 9
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal344+0x5efa2
		mso30win32client!Ordinal1248+0xaaf
		mso30win32client!Ordinal23+0xd1
		mso30win32client!Ordinal1325+0x39
		mso!Ordinal3862+0x146
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 10
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal1524+0xf5f
		mso30win32client!Ordinal1055+0x1df3d
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal23+0xd1
		mso30win32client!Ordinal1325+0x39
		mso!Ordinal3862+0x146
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 11
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal344+0x5efa2
		mso30win32client!Ordinal1248+0xaaf
		mso30win32client!Ordinal1346+0x5d
		mso30win32client!Ordinal894+0x6d
		mso!Ordinal3862+0x164
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 12
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal182+0x67
		mso30win32client!Ordinal1055+0x1d129
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal894+0x6d
		mso!Ordinal3862+0x164
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 13
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal344+0x5efa2
		mso30win32client!Ordinal1248+0xaaf
		mso30win32client!Ordinal1389+0x2f
		mso!Ordinal3862+0x183
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 14
	Count:    1
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso30win32client!Ordinal1524+0xf5f
		mso30win32client!Ordinal1055+0x1dd45
		VCRUNTIME140+0x1030
		VCRUNTIME140!is_exception_typeof+0x1018
		ntdll!RtlCaptureContext+0x3c3
		mso30win32client!Ordinal1389+0x2f
		mso!Ordinal3862+0x183
		mso!Ordinal3862+0xd9
		mso!Ordinal3862+0x3d
		mso!Mso::CollaborationPropertyStore::ISyncIntegrationRegistryAccessor::CreateInstance+0x12a3
		mso!Ordinal5063+0x342
		mso!Ordinal4013+0xb7
		ACECORE+0x2db8
		ACECORE+0x2c32
		ACEODBC!SQLGetConnectAttrW+0xa42
		ACEODBC!SQLDriverConnectW+0x8f
		ODBC32!SQLAllocHandle+0xbe7
		ODBC32!SQLAllocHandle+0x777
		comsvcs!DispManGetContext+0xb3a
		comsvcs!DispManGetContext+0x7a4
		ODBC32!SQLAllocHandle+0x1c6
		ODBC32!SQLAllocHandle+0x33d
		ODBC32!SQLDriverConnectW+0x902
		ODBC32!SQLDriverConnect+0x216
		php_pdo_odbc+0x1cf4
		php7!pdo_handle_error+0x1e34
		php7!zend_get_property_info+0x352
		php7!execute_ex+0x2f
		php7!zend_execute+0x130
		php7!zend_execute_scripts+0xa7
		php7!php_execute_script+0x2af
		php_cgi+0x7d2a
		php_cgi+0x3658
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21


DetailID = 15
	Count:    2
	Exception #:  0XE06D7363
	Stack:        
		KERNELBASE!RaiseException+0x68
		VCRUNTIME140!CxxThrowException+0xad
		mso20win32client!Ordinal789+0x26018
		mso20win32client!Ordinal789+0x264f8
		mso20win32client!Ordinal1367+0x335af
		mso20win32client!Ordinal857+0x1a39e
		mso20win32client!Ordinal857+0x82f4
		mso20win32client!Ordinal857+0x8271
		mso20win32client!Ordinal1301+0x7ea
		mso20win32client!Ordinal182+0x410
		mso20win32client!Ordinal182+0x327
		mso20win32client!Ordinal899+0xcdf
		mso20win32client!Ordinal899+0x16bd
		mso20win32client!Ordinal720+0x2809
		mso20win32client!Ordinal720+0x2d74
		KERNEL32!BaseThreadInitThunk+0x14
		ntdll!RtlUserThreadStart+0x21





***********************
*  EXCEPTION SUMMARY  *
***********************

	|--------------------|
	| Count | Exception  |
	|--------------------|
	| 16    | 0XE06D7363 |
	|--------------------|

Debugging Overhead Cost:
	Total Elapsed Ticks = 20422 (100%)
	Total Ticks Spent in Debugger Engine = 6734 (33%)
	Total Ticks Spent in Crash Rule Script = 12640 (62%)


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-09-30 12:50 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2020-09-30 12:50 UTC] cmb@php.net
> You can download a test version of the .mdb here:
> https://ufile.io/mae0y

Apparently, that link has expired.  Could you please upload the
.mdb file again?
 [2020-09-30 15:06 UTC] php at checkthis2 dot com
-Status: Feedback +Status: Assigned
 [2020-09-30 15:06 UTC] php at checkthis2 dot com
I have reuploaded the file to: https://ufile.io/nx4y85lb
 [2020-09-30 15:32 UTC] cmb@php.net
-Status: Assigned +Status: Feedback
 [2020-09-30 15:32 UTC] cmb@php.net
Thanks for the file!

I cannot reproduce, though; neither with current PHP 7.3, nor with
PHP 7.3.1.  For me, the expected results are shown. The provided
error information is unfortunately not helpful here.  Could you
please provide a backtrace with debug symbols[1], and an ODBC
backtrace[2] of running the script?

[1] <https://bugs.php.net/bugs-generating-backtrace-win32.php>
[2] <https://docs.microsoft.com/en-us/sql/odbc/admin/setting-tracing-options>
 [2020-10-11 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 13:01:27 2024 UTC