in

System.Data.SQLite

An open source ADO.NET provider for the SQLite database engine

SQLite Console based application failed to execute on new environment

Last post 06-20-2009 9:35 AM by xion_more. 22 replies.
Page 1 of 2 (23 items) 1 2 Next >
Sort Posts: Previous Next
  • 05-20-2009 10:48 PM

    SQLite Console based application failed to execute on new environment

    Hi,

    I build a project to test the functionality for ADO.NET SQLite provider. The thing is , i build the project using System.Data.SQLite.dll .Its run fine on my 

    development environment. I got no problem in this. Now according to ADO.NET distribution scheme i setup a new Windows XP host and tried to run the same application over there withe following file and dependency::-

    1.  sqlite_db.exe [ Console based SQLite application]

    2. version.db [SQLite password protected  database file.]

    3. System.Data.SQLite.dll and .lib both files

    4. And some MSVCR80.*.dll file for common run time file

     

    Problem is the console-base exe file(i.e sqlite_db.exe) failed to execute on the new windows environment.

    I got error like this ::-

     ["   A fatal error occured .....*

    Please reinstall the .NET framework.]

    So, my point is why is .NET dependency comes over again even if the SQLite dll is build for stand-alone binary for distribution.

    i tried to trace the module dependency using some tools and dependency are as follows::-

    1. sqlite_db.exe (my console based application)

    2. rsaenh.dll

    3. System.Data.SQLite.dll

    4. msvcrt.dll

    5. user32.dll

    6. advapi32.dll

    7. rpcrt4.dll

    8. gdi32.dll

    9. shlwapi.dll

    10. msvcr80.dll

    11. mscoree.dll [ .NET dependency file . No idea why]

    12. kernel32.dll

    13. ntdll.ddll

    So, i belive i well explian my setup and problem.

    Can anybody help me out.

     

    thanks

     

  • 05-21-2009 7:15 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    Was your console-based application written in .NET?  When I said in my features list that I dynamically link to .NET, that was for C/C++ applications that are not compiled for .NET.  If you're using ADO.NET features, then .NET needs to be present.

    If however, you are using the raw C interfaces to sqlite using a native C/C++ application, then you don't need .NET.

     

  • 05-21-2009 10:12 PM In reply to

    Re: SQLite Console based application failed to execute on new environment

    The thing is , i m just  using console based application for connecting to sqlite databas. I calling only api for database connecting and retrieving data out of it. So, why the .NET api invovled in this. My code is just for sqlilte database nothing more .

    Now, explain me what the mistake i been doing or is there any thing i miss out or what exactly i have to do to remove my .NET dependency. 

     

    I need a sqlite replacement dll files so that i can work just like i been connected to sqlite database file.

    Tell your idea , i m very pleased by your reply...

     

    Thanks

  • 05-22-2009 7:06 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    You say "I'm calling only the api for database connecting and retrieving" -- what API?  Is your console app written in C/C++ and you are using the native sqlite3_open() API commands -- or are you using the SQLiteConnection, SQLiteDataReader and other ADO.NET-based API's?

    Can you show me the code you're using for opening and retrieving data?

  • 05-22-2009 8:11 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    Fine , take a look on my code.. ------------------------------------------------------------ #include #include #include #include "sqlite3.h" sqlite3 *db = 0; static int callback(void *NotUsed, int argc, char **argv, char **azColName) { int i; for(i=0;i> Encrypted database * version1 >> Un-encrypted database */ char *db_name; char *db_query; pkey = (char *)malloc(strlen("b123")); db_name = (char *)malloc(strlen("version.db")); db_query = (char *)malloc(strlen("select * from registereddevices")); strcpy(pkey, "bf123"); strcpy(db_name, "version.db"); strcpy(db_query, "select * from registereddevices"); rc = sqlite3_open(db_name, &db); if(rc) { sqlite3_close(db); exit(1); } else { printf("SQLITE database Status \t\t\t\t [OK]\n"); } size_pkey = strlen(pkey); rc = sqlite3_key(db, pkey, size_pkey); if(rc != SQLITE_OK) { printf("SQLite key setup \t\t\t [FAILED]\n"); } //ExecSql("SELECT * FROM users;"); rc = sqlite3_exec(db, db_query , callback, 0 , &zErrMsg); if(rc != SQLITE_OK) { printf("SQLite query \t\t\t [FAILED]\n"); } else { printf("SQLite query \t\t\t [OK]\n"); } scanf("%d", &rc); sqlite3_close(db); return 0; } --------------------------------- Above is my demo console based code for sqlite... Tell me what you think
    Filed under:
  • 05-22-2009 8:18 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    Here is Dependency walker report: --- Warning: At least one delay-load dependency module was not found. Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module. -------------------------------------------------------------------------------- Starting profile on 5/22/2009 at 8:49:36 PM Operating System: Microsoft Windows XP Professional (32-bit), version 5.01.2600 Service Pack 2 Program Executable: e:\shared\new folder\SQLITE_DB.EXE Program Arguments: 4 Starting Directory: E:\shared\New Folder\ Search Path: C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\OpenVPN\bin Options Selected: Simulate ShellExecute by inserting any App Paths directories into the PATH environment variable. Log DllMain calls for process attach and process detach messages. Log DllMain calls for all other messages, including thread attach and thread detach. Hook the process to gather more detailed dependency information. Log LoadLibrary function calls. Log GetProcAddress function calls. Log thread information. Use simple thread numbers instead of actual thread IDs. Log first chance exceptions. Log debug output messages. Use full paths when logging file names. Automatically open and profile child processes. -------------------------------------------------------------------------------- Started "e:\shared\new folder\SQLITE_DB.EXE" (process 0xEBC) at address 0x00400000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\NTDLL.DLL" at address 0x7C900000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\KERNEL32.DLL" at address 0x7C800000 by thread 1. Successfully hooked module. DllMain(0x7C900000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\NTDLL.DLL" called by thread 1. DllMain(0x7C900000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\NTDLL.DLL" returned 1 (0x1) by thread 1. DllMain(0x7C800000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\KERNEL32.DLL" called by thread 1. DllMain(0x7C800000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\KERNEL32.DLL" returned 1 (0x1) by thread 1. Injected "c:\documents and settings\manish\my documents\test_folder\DEPENDS.DLL" at address 0x08370000 by thread 1. DllMain(0x08370000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\documents and settings\manish\my documents\test_folder\DEPENDS.DLL" called by thread 1. DllMain(0x08370000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\documents and settings\manish\my documents\test_folder\DEPENDS.DLL" returned 1 (0x1) by thread 1. Loaded "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x10000000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\MSCOREE.DLL" at address 0x79000000 by thread 1. Successfully hooked module. DllMain(0x79000000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\MSCOREE.DLL" called by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsAlloc") called from "c:\windows\system32\MSCOREE.DLL" at address 0x7900746D and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsGetValue") called from "c:\windows\system32\MSCOREE.DLL" at address 0x7900747A and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsSetValue") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007487 and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsFree") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007494 and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "InitializeCriticalSectionAndSpinCount") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007B0F and returned 0x7C80B839 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79007646 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79002C63 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x790035D0 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\system32\MSCOREE.DLL" at address 0x790035E0 and returned 0x7C913425 by thread 1. DllMain(0x79000000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\MSCOREE.DLL" returned 1 (0x1) by thread 1. Loaded "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78130000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\MSVCRT.DLL" at address 0x77C10000 by thread 1. Successfully hooked module. Entrypoint reached. All implicit modules have been loaded. DllMain(0x10000000, DLL_PROCESS_ATTACH, 0x0012FD30) in "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" called by thread 1. GetProcAddress(0x79000000 [c:\windows\system32\MSCOREE.DLL], "_CorDllMain") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100362D2 and returned 0x790101BA by thread 1. LoadLibraryA("ADVAPI32.dll") called from "c:\windows\system32\MSCOREE.DLL" at address 0x7900540A by thread 1. Loaded "c:\windows\system32\ADVAPI32.DLL" at address 0x77DD0000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\RPCRT4.DLL" at address 0x77E70000 by thread 1. Successfully hooked module. DllMain(0x77E70000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\RPCRT4.DLL" called by thread 1. DllMain(0x77E70000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\RPCRT4.DLL" returned 1 (0x1) by thread 1. DllMain(0x77DD0000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\ADVAPI32.DLL" called by thread 1. DllMain(0x77DD0000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\ADVAPI32.DLL" returned 1 (0x1) by thread 1. LoadLibraryA("ADVAPI32.dll") returned 0x77DD0000 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "RegOpenKeyExW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77DD6A8F by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "RegQueryValueExW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77DD6FDF by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "RegCloseKey") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77DD6C07 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "QueryActCtxW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79006BDE and returned 0x7C8162EB by thread 1. LoadLibraryA("SHLWAPI.dll") called from "c:\windows\system32\MSCOREE.DLL" at address 0x7900540A by thread 1. Loaded "c:\windows\system32\SHLWAPI.DLL" at address 0x77F60000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\GDI32.DLL" at address 0x77F10000 by thread 1. Successfully hooked module. Loaded "c:\windows\system32\USER32.DLL" at address 0x77D40000 by thread 1. Successfully hooked module. DllMain(0x77D40000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\USER32.DLL" called by thread 1. DllMain(0x77D40000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\USER32.DLL" returned 1 (0x1) by thread 1. DllMain(0x77F10000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\GDI32.DLL" called by thread 1. DllMain(0x77F10000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\GDI32.DLL" returned 1 (0x1) by thread 1. DllMain(0x77F60000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\SHLWAPI.DLL" called by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "InitializeCriticalSectionAndSpinCount") called from "c:\windows\system32\MSVCRT.DLL" at address 0x77C379C2 and returned 0x7C80B839 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "CreateTimerQueue") called from "c:\windows\system32\SHLWAPI.DLL" at address 0x77F65BF1 and returned 0x7C82BFE6 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DeleteTimerQueue") called from "c:\windows\system32\SHLWAPI.DLL" at address 0x77F65C00 and returned 0x7C862FAB by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "CreateTimerQueueTimer") called from "c:\windows\system32\SHLWAPI.DLL" at address 0x77F65C0F and returned 0x7C82118D by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "ChangeTimerQueueTimer") called from "c:\windows\system32\SHLWAPI.DLL" at address 0x77F65C1F and returned 0x7C812733 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DeleteTimerQueueTimer") called from "c:\windows\system32\SHLWAPI.DLL" at address 0x77F65C2D and returned 0x7C821140 by thread 1. DllMain(0x77F60000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\SHLWAPI.DLL" returned 1 (0x1) by thread 1. LoadLibraryA("SHLWAPI.dll") returned 0x77F60000 by thread 1. GetProcAddress(0x77F60000 [c:\windows\system32\SHLWAPI.DLL], "UrlIsW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77F77B94 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "RegEnumKeyExW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77DD7BB9 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "RegQueryInfoKeyW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77DE3E23 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "RegEnumValueW") called from "c:\windows\system32\MSCOREE.DLL" at address 0x79005531 and returned 0x77DD7ECD by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsAlloc") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003ADD5 and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsGetValue") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003ADE2 and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsSetValue") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003ADEF and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsFree") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003ADFC and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A984 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A9FF and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003A9FF and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003AAD3 and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x1003AAE3 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "IsProcessorFeaturePresent") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100408CE and returned 0x7C80AE3A by thread 1. DllMain(0x10000000, DLL_PROCESS_ATTACH, 0x0012FD30) in "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" returned 1 (0x1) by thread 1. DllMain(0x77C10000, DLL_PROCESS_ATTACH, 0x0012FD30) in "c:\windows\system32\MSVCRT.DLL" called by thread 1. DllMain(0x77C10000, DLL_PROCESS_ATTACH, 0x0012FD30) in "c:\windows\system32\MSVCRT.DLL" returned 1 (0x1) by thread 1. DllMain(0x78130000, DLL_PROCESS_ATTACH, 0x0012FD30) in "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" called by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsAlloc") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78133001 and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsGetValue") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x7813300E and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsSetValue") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x7813301B and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FlsFree") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78133028 and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "InitializeCriticalSectionAndSpinCount") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78139654 and returned 0x7C80B839 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132BBC and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132C33 and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "EncodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132D3A and returned 0x7C9133FF by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "DecodePointer") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78132D4A and returned 0x7C913425 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "IsProcessorFeaturePresent") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x7814A9AE and returned 0x7C80AE3A by thread 1. GetProcAddress(0x77C10000 [c:\windows\system32\MSVCRT.DLL], "_set_error_mode") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78134447 and returned 0x77C35348 by thread 1. GetProcAddress(0x77C10000 [c:\windows\system32\MSVCRT.DLL], "?set_terminate@@YAP6AXXZP6AXXZ@Z") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78134463 and returned 0x77C22567 by thread 1. GetProcAddress(0x77C10000 [c:\windows\system32\MSVCRT.DLL], "_get_terminate") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x7813447F and returned NULL by thread 1. Error: The specified procedure could not be found (127). GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "FindActCtxSectionStringW") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78131DBE and returned 0x7C82FD68 by thread 1. GetProcAddress(0x7C800000 [c:\windows\system32\KERNEL32.DLL], "GetSystemWindowsDirectoryW") called from "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" at address 0x78131F1A and returned 0x7C80AD39 by thread 1. DllMain(0x78130000, DLL_PROCESS_ATTACH, 0x0012FD30) in "c:\windows\winsxs\x86_microsoft.vc80.crt_1fc8b3b9a1e18e3b_8.0.50727.762_x-ww_6b128700\MSVCR80.DLL" returned 1 (0x1) by thread 1. LoadLibraryA("ADVAPI32.dll") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x10037021 by thread 1. LoadLibraryA("ADVAPI32.dll") returned 0x77DD0000 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptAcquireContextA") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DE7AC6 by thread 1. LoadLibraryA("rsaenh.dll") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE89B8 by thread 1. Loaded "c:\windows\system32\RSAENH.DLL" at address 0x0FFD0000 by thread 1. Successfully hooked module. DllMain(0x0FFD0000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\RSAENH.DLL" called by thread 1. LoadLibraryExA("crypt32.dll", 0x00000000, LOAD_LIBRARY_AS_DATAFILE) called from "c:\windows\system32\RSAENH.DLL" at address 0x0FFEF150 by thread 1. Mapped "CRYPT32.DLL" as a data file into memory at address 0x00AF0001 by thread 1. LoadLibraryExA("crypt32.dll", 0x00000000, LOAD_LIBRARY_AS_DATAFILE) returned 0x00AF0001 by thread 1. DllMain(0x0FFD0000, DLL_PROCESS_ATTACH, 0x00000000) in "c:\windows\system32\RSAENH.DLL" returned 1 (0x1) by thread 1. LoadLibraryA("rsaenh.dll") returned 0x0FFD0000 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPAcquireContext") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDED3A by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPReleaseContext") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDE20B by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPGenKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDAC30 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPDeriveKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDAEC3 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPDestroyKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD8B48 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPSetKeyParam") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD8D20 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPGetKeyParam") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD910A by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPExportKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDBB24 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPImportKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDC08A by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPEncrypt") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD67FE by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPDecrypt") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD6C70 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPCreateHash") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD6E62 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPHashData") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD7616 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPHashSessionKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD7760 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPDestroyHash") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD7A39 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPSignHash") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDCCAC by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPVerifySignature") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDD13B by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPGenRandom") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDCAE5 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPGetUserKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD8C4A by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPSetProvParam") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD9555 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPGetProvParam") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD9684 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPSetHashParam") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFD9C4C by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPGetHashParam") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE7D59 and returned 0x0FFDA097 by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPDuplicateKey") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE8063 and returned 0x0FFDA72D by thread 1. GetProcAddress(0x0FFD0000 [c:\windows\system32\RSAENH.DLL], "CPDuplicateHash") called from "c:\windows\system32\ADVAPI32.DLL" at address 0x77DE8063 and returned 0x0FFD7C28 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptCreateHash") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DE9E19 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptHashData") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DE9C42 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptDeriveKey") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DEA1A5 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptDestroyHash") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DE9D74 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptEncrypt") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DF0900 by thread 1. GetProcAddress(0x77DD0000 [c:\windows\system32\ADVAPI32.DLL], "CryptDecrypt") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100370F8 and returned 0x77DEA2D1 by thread 1. Thread 2 started in "c:\windows\system32\KERNEL32.DLL" at address 0x7C810669. DllMain(0x7C900000, DLL_THREAD_ATTACH, 0x00000000) in "c:\windows\system32\NTDLL.DLL" called by thread 2. DllMain(0x7C900000, DLL_THREAD_ATTACH, 0x00000000) in "c:\windows\system32\NTDLL.DLL" returned 1 (0x1) by thread 2. DllMain(0x7C800000, DLL_THREAD_ATTACH, 0x00000000) in "c:\windows\system32\KERNEL32.DLL" called by thread 2. DllMain(0x7C800000, DLL_THREAD_ATTACH, 0x00000000) in "c:\windows\system32\KERNEL32.DLL" returned 1 (0x1) by thread 2. GetProcAddress(0x79000000 [c:\windows\system32\MSCOREE.DLL], "_CorDllMain") called from "e:\shared\new folder\SYSTEM.DATA.SQLITE.DLL" at address 0x100362D2 and returned 0x790101BA by thread 2. First chance exception 0x80000003 (Breakpoint) occurred in "c:\windows\system32\MSCOREE.DLL" at address 0x790101BA by thread 2. First chance exception 0xC0000005 (Access Violation) occurred in "c:\windows\system32\MSCOREE.DLL" at address 0x7900FF05 by thread 2. Second chance exception 0xC0000005 (Access Violation) occurred in "c:\windows\system32\MSCOREE.DLL" at address 0x7900FF05 by thread 2. Thread 2 exited with code -1073741819 (0xC0000005). Exited "e:\shared\new folder\SQLITE_DB.EXE" (process 0xEBC) with code -1073741819 (0xC0000005) by thread 1.
  • 05-22-2009 9:08 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    Weird ... I'll look into it.

     

  • 05-29-2009 5:04 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

     Come on .. what happen??

    Somebody working on this issue or not.

    I been waiting for reply for so long.

  • 05-29-2009 6:53 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    A week isn't that long -- especially on a freeware project that I can only devote a certain amount of my spare time on.

    I have several issues to investigate and this is only one of them.  If you'd like to help me out a bit more, please send me a copy of the binary so I can debug it:

    robert at blackcastlesoft dot com

     

  • 06-02-2009 1:16 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

     Ok , thanks for replying ..

    I m sending the binary without my database file. If you need my database file, please let me know.

     

     

  • 06-04-2009 7:58 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    Sorry for the delay -- I can't find your e-mail if you've sent it.  I'm wondering if the spamfilter picked it up.  If you can, please send the binary again, zipped up or rar'd.

    Also let me know when you've sent it so I can keep a close eye out for it.

     

  • 06-05-2009 4:56 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

     hi,

    I m sending mail back with the following details.

    Please confirm the the information given below if you recieved it.

    1. Mail Subject ::- Again  transmission:: SQL Binary file invovling ADO.NET in it

    2. Target Mail Address::-- robert at black castle soft dot com

     

    Confirm my mail..

    Thanks for co-operation.

     

  • 06-05-2009 7:33 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    I'm not getting it -- and its not in my junk mail folder.  Did you zip up the binary before attaching it?

    Also please don't post my raw e-mail address on the forums.  Webcrawlers pick those things up and I end up getting more spam.

    Have you any alternate way of sending the binary to me?

     

  • 06-05-2009 7:45 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

    Nevermind I found your latest e-mail in my Junk Mail folder.

     

  • 06-05-2009 10:44 AM In reply to

    Re: SQLite Console based application failed to execute on new environment

     Sorry, i was busy in my work . So, i forget to zip the binary.

Page 1 of 2 (23 items) 1 2 Next >
Powered by Community Server (Commercial Edition), by Telligent Systems