views:

17

answers:

1

hi all,

in my application i uploaded sqlite database on the server. problem is that i have no knowledge how to access the database from the server in my application.

Please tell me anyone how i access database from the server.

A: 

Since SQLite is a flat file database, there's no way to access it via server (because it doesn't have one duhhh). Best approach would be either by downloading the database into your sandbox and opening it from there. Or create a simple API to manipulate the database via PHP for example.

ps. please accept answers, otherwise nobody will be willing to help you!

dusker