Re: [sqlite] SQLITE in a Win7 Service Application [SOLVED]

2012-08-29 Thread markus ruettimann
Hi,
Thank you for your assistance. We have solved the below mentioned problem:

The reason was that the temp directory of the service did not exist - so 
sqlite was not able to create temp files in that non-existing directory.

We checked the 'TMP' and/or 'TEMP' environment variables of the service 
and noticed that the configured directory did not exist. 
Our installer does now ensure that the temp directory of the service user 
exists during the installation of our application.


=> For Java JDBC users: Please note that it is NOT sufficient to set the 
temp directory in the 'java.io.tmpdir'  settings since sqlite is an 
attached dll and uses the %TMP% or %TEMP% environment variable for that 
purpose. 


Hope this helps others with the same problem

Regards Markus



Von:markus ruettimann <markus.ruettim...@trapezegroup.com>
An: sqlite-users@sqlite.org
Datum:  15.08.2012 17:20
Betreff:    [sqlite] SQLITE in a Win7 Service Application
Gesendet von:   sqlite-users-boun...@sqlite.org



Hi,
We are facing problems when the sqlite database () is used within an 
application that runs as a Win7 service under the local system account. 
The application is written in Java and we use the sqlite-jdbc-3.7.2 JDBC 
driver.

How ever we can create a new database, reading and writing to it withount 
any problem. The only thing that is not working is the ATTACH DATABASE SQL 

command. We constantly receive a CAN_NOT_OPEN error code.

When we start the same application under a local user everything works 
fine. I have to add the both databases that are to be attached are in the 
same folder and have been created by the Application itself. There are no 
access restrictions on the database folders or files.

Does anyone know about this and / or has a solution?

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

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


Re: [sqlite] SQLITE in a Win7 Service Application

2012-08-15 Thread Keith Medcalf
Make sure account SYSTEM or NT SYSTEM AUTHORITY has change access to the 
directories containig the database files.  Note also that local system has no 
acces to network shares drives or files



Sent from Samsung Mobilemarkus ruettimann  
wrote:
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLITE in a Win7 Service Application

2012-08-15 Thread Robert Myers
If you're using impersonation, you'll run into problems doing any 
updates during the impersonation when sqlite tries to create any 
temporary files or reopen any it has closed.


You can use Process Monitor from Sysinternals (now Microsoft) to see 
exactly what the failure is with what file.


On 8/15/2012 10:19 AM, markus ruettimann wrote:

Hi,
We are facing problems when the sqlite database () is used within an
application that runs as a Win7 service under the local system account.
The application is written in Java and we use the sqlite-jdbc-3.7.2 JDBC
driver.

How ever we can create a new database, reading and writing to it withount
any problem. The only thing that is not working is the ATTACH DATABASE SQL
command. We constantly receive a CAN_NOT_OPEN error code.

When we start the same application under a local user everything works
fine. I have to add the both databases that are to be attached are in the
same folder and have been created by the Application itself. There are no
access restrictions on the database folders or files.

Does anyone know about this and / or has a solution?

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


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


Re: [sqlite] SQLITE in a Win7 Service Application

2012-08-15 Thread Teg
Hello markus,

Every Windows programmer needs to have "Procmon" installed on their
system so, they can watch their program's disk IO. I'd suggest
installing it, then using a filter to watch just your service. Then,
you can simply watch what disk IO is failing. I use it on a daily
basis. Almost as much as my debugger.

It'll probably show you a permission problem.

C

...
Test.exe 6312 ReadFileE:\Test\Db.db3SUCCESS Offset: 0, Length: 100, 
Priority: Normal
Test.exe 6312 ReadFileE:\Test\Db.db3SUCCESS Offset: 0, Length: 
4,096, I/O Flags: Non-cached, Paging I/O, Priority: Normal
Test.exe 6312 QueryOpen   E:\Test\Db.db3SUCCESS CreationTime: 6/19/2012 
9:06:58 PM, LastAccessTime:
Test.exe 6312 LockFileE:\Test\Db.db3SUCCESS Exclusive: True, 
Offset: 1,073,741,824, Length: 1, Fail Immediately: True
Test.exe 6312 LockFileE:\Test\Db.db3SUCCESS Exclusive: False, 
Offset: 1,073,741,826, Length: 510, Fail Immediately: True
Test.exe 6312 UnlockFileSingle E:\Test\Db.db3SUCCESS Offset: 1,073,741,824, 
Length: 1
Test.exe 6312 QueryOpen   E:\Test\Db.db3-journalSUCCESS CreationTime: 
6/19/2012 9:06:58 PM,
Test.exe 6312 QueryStandardInformationFile E:\Test\Db.db3SUCCESS 
AllocationSize: 106,496, EndOfFile: 106,496, NumberOfLinks: 1,
Test.exe 6312 QueryOpen   E:\Test\Db.db3-wal  NAME NOT FOUND
Test.exe 6312 QueryStandardInformationFileE:\Test\Db.db3SUCCESS 
AllocationSize: 106,496, EndOfFile: 106,496,
Test.exe 6312 ReadFileE:\Test\Db.db3SUCCESS Offset: 0, Length: 8,192
...

and so on.


Wednesday, August 15, 2012, 11:19:52 AM, you wrote:

mr> Hi,
mr> We are facing problems when the sqlite database () is used within an 
mr> application that runs as a Win7 service under the local system account.
mr> The application is written in Java and we use the sqlite-jdbc-3.7.2 JDBC
mr> driver.

mr> How ever we can create a new database, reading and writing to it withount
mr> any problem. The only thing that is not working is the ATTACH DATABASE SQL
mr> command. We constantly receive a CAN_NOT_OPEN error code.

mr> When we start the same application under a local user everything works
mr> fine. I have to add the both databases that are to be attached are in the
mr> same folder and have been created by the Application itself. There are no
mr> access restrictions on the database folders or files.

mr> Does anyone know about this and / or has a solution?

mr> Kind regards
mr> Markus
mr> ___
mr> sqlite-users mailing list
mr> sqlite-users@sqlite.org
mr> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users




-- 
Best regards,
 Tegmailto:t...@djii.com

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


Re: [sqlite] SQLITE in a Win7 Service Application

2012-08-15 Thread Mohd Radzi Ibrahim
On Wed, Aug 15, 2012 at 11:19 PM, markus ruettimann <
markus.ruettim...@trapezegroup.com> wrote:

> Hi,
> We are facing problems when the sqlite database () is used within an
> application that runs as a Win7 service under the local system account.
> The application is written in Java and we use the sqlite-jdbc-3.7.2 JDBC
> driver.
>
> How ever we can create a new database, reading and writing to it withount
> any problem. The only thing that is not working is the ATTACH DATABASE SQL
> command. We constantly receive a CAN_NOT_OPEN error code.
>
> When we start the same application under a local user everything works
> fine. I have to add the both databases that are to be attached are in the
> same folder and have been created by the Application itself. There are no
> access restrictions on the database folders or files.
>
> Does anyone know about this and / or has a solution?
>
>
Could you check the security issue or path for the attached database.
___
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users


Re: [sqlite] SQLITE in a Win7 Service Application

2012-08-15 Thread Simon Slavin

On 15 Aug 2012, at 4:19pm, markus ruettimann 
 wrote:

> How ever we can create a new database, reading and writing to it withount 
> any problem. The only thing that is not working is the ATTACH DATABASE SQL 
> command. We constantly receive a CAN_NOT_OPEN error code.

Thank you for your good description of the problem, and what similar things 
/do/ work.

The usual cause of this is that you specify the database filename only, not 
which folder it's in, and the application is using a folder you weren't 
expecting.  Is there a chance that this is your problem ?  Can you temporarily 
change the application to specify the full path, from 'C:' on down, just to 
check that it is looking in the right folder ?

Another cause is that inside your ATTACH command you have used the wrong 
quotes, or no quotes at all around the filename.  For instance

ATTACH "second.sqlite" AS db2

is wrong, you should be using single quotes, not double quotes.

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


[sqlite] SQLITE in a Win7 Service Application

2012-08-15 Thread markus ruettimann
Hi,
We are facing problems when the sqlite database () is used within an 
application that runs as a Win7 service under the local system account. 
The application is written in Java and we use the sqlite-jdbc-3.7.2 JDBC 
driver.

How ever we can create a new database, reading and writing to it withount 
any problem. The only thing that is not working is the ATTACH DATABASE SQL 
command. We constantly receive a CAN_NOT_OPEN error code.

When we start the same application under a local user everything works 
fine. I have to add the both databases that are to be attached are in the 
same folder and have been created by the Application itself. There are no 
access restrictions on the database folders or files.

Does anyone know about this and / or has a solution?

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