
July 17th, 2012, 08:11 AM
|
|
Contributing User
|
|
Join Date: Jun 2008
Posts: 254
 
Time spent in forums: 2 Days 23 h 55 m 14 sec
Reputation Power: 5
|
|
|
Which directory is SQLite working from? Win7 UAC will block attempts to write to certain directories on your hard drive.
Older versions of Delphi made a sub-directory of Program Files the location of your development directory, and many programmers put all there utility files (files they read and write to in the operation of their program) in the same directory. With Vista and above, the program directory is no longer a valid place to put files that need to be written to.
You can get around this by changing the location that SQLite works in. I haven't worked with the database before, but I'm sure there has to be a preferred location for the database to operate from.
|