Re: [sqlite] How to fix sqlite issue

2013-11-13 Thread Jan Nijtmans
2013/11/13 Sqlite Dog :
> 1) download zip with latest SQLite DLL from http://sqlite.org/download.html;

I downloaded the latest iTunes, and had a look. The SQLite dll is here:
   C:\Program Files (x86)\Common Files\Apple\Apple Application
Support\SQLite3.dll
But there is also an iTunes directory:
   C:\Program Files (x86)\iTunes\
which contain dll's and exe's which depend on SQLite3.dll.
Coping the SQLite3.dll from the Apple directory to the iTunes directory should
fix your problem. There is a zlib1.dll there too which isn't the
official version
either. BAD! I would copy this one too, in order to prevent any problem with
iTunes. I think this should be reported to Apple!

2013/11/13 Richard Hipp :
> Note to the community at large:  THIS IS WHY YOU SHOULD STATICALLY LINK
> YOUR APPLICATIONS AGAINST SQLITE!
This is what I always recommend too. But it can be relaxed a little bit:
- If your system provides a sqlite dll/so file (e.g. Cygwin/ubuntu)
you can use it,
  but then you need to test your application on the lowest system version you
  intend to support. Then don't distribute your own DLL!
- If you choose to compile your own DLL and distribute it, NEVER give it the
  same name as a system/official DLL if the DLL is not the same.

However the rule is, it's clear that iTunes violates it.

Regards,
   Jan Nijtmans
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] How to fix sqlite issue

2013-11-12 Thread Sqlite Dog
Hi,

perhaps, this can help:

1) download zip with latest SQLite DLL from http://sqlite.org/download.html;
2) unzip it to c:\temp;
3) copy c:\temp\sqlite3.dll to Windows\System32 folder;
4) if there is already sqlite3.dll in Windows\System32 and it's locked,
overwrite it with InUse.exe (http://support.microsoft.com/kb/228930);
5) reboot;
6) if some software is still complaining, delete sqlite3.dll from app's
folder.

Since SQLite is (mostly :) backwards compatible these steps will force
wrongful app to use latest sqlite3.dll in system32 instead of the one it
was installed with.

I'm not sure if this would definitely work, but I would give it a try. The
problem can arise if app uses some specifically built DLL that's not
compatible in some way with the default one.

And it's not clear how to perform step 6 - find complaining app's folder.



2013/11/12 Norma Richey 

> Hello,
>
>
>
> I am having problem with an error that is appearing whenever I startup my
> computer.  This happened when I downloaded the latest update of iTunes.
>
>
>
> The issue is as follows:
>
> The procedure entry point sqlite3-wal-checkpoint could not be located in
> the
> dynamic library SQLite3.dll.
>
>
>
> I previously had an issue with the AppleSyncNotifier.exe Entry Point Not
> Found but it was a little different and I was able to fix it.  I tried the
> same fix but it did not work.  I am not real tech savvy so if you can
> direct
> me that would be great.
>
>
>
> Any assistance would be most appreciated.  Thanks in advance.
>
>
>
> Norma Richey
>
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



-- 
Regards,
SqliteDog support team
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] How to fix sqlite issue

2013-11-12 Thread Richard Hipp
On Tue, Nov 12, 2013 at 1:22 PM, Norma Richey  wrote:

> Hello,
>
>
>
> I am having problem with an error that is appearing whenever I startup my
> computer.  This happened when I downloaded the latest update of iTunes.
>
>
>
> The issue is as follows:
>
> The procedure entry point sqlite3-wal-checkpoint could not be located in
> the
> dynamic library SQLite3.dll.
>
>
Note to the community at large:  THIS IS WHY YOU SHOULD STATICALLY LINK
YOUR APPLICATIONS AGAINST SQLITE!

I am very appreciative of Norma who actually read the instructions and sent
a message to the mailing list.  (Thank you Norma!)  Normally, people just
phone me up.  Sometimes late at night. Often the callers are angry and vent
their frustrations on me.

If anybody has any suggestions for Norma, and the countless others like her
who have similar DLL problems, please post them here so that I can write
them up and put them someplace where Google can easily find them.  Thanks.


>
>
> I previously had an issue with the AppleSyncNotifier.exe Entry Point Not
> Found but it was a little different and I was able to fix it.  I tried the
> same fix but it did not work.  I am not real tech savvy so if you can
> direct
> me that would be great.
>
>
>
> Any assistance would be most appreciated.  Thanks in advance.
>
>
>
> Norma Richey
>
> ___
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>



-- 
D. Richard Hipp
d...@sqlite.org
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


[sqlite] How to fix sqlite issue

2013-11-12 Thread Norma Richey
Hello,

 

I am having problem with an error that is appearing whenever I startup my
computer.  This happened when I downloaded the latest update of iTunes.  

 

The issue is as follows:

The procedure entry point sqlite3-wal-checkpoint could not be located in the
dynamic library SQLite3.dll.

 

I previously had an issue with the AppleSyncNotifier.exe Entry Point Not
Found but it was a little different and I was able to fix it.  I tried the
same fix but it did not work.  I am not real tech savvy so if you can direct
me that would be great.

 

Any assistance would be most appreciated.  Thanks in advance.

 

Norma Richey

___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users