SQLitemanager where does it go?

Questions about the MySQL, PostgreSQL, and most other databases, as well as using it with PHP can be asked here.

Moderator: General Moderators

Post Reply
fblair
Forum Newbie
Posts: 8
Joined: Tue Feb 10, 2009 4:30 pm

SQLitemanager where does it go?

Post by fblair »

I am new to this whole arena and have a basic question.

I trying to find out if my current ISP will host things that work in PHP I have come up with another question. My ISP does not host MySQL, but can I use SQLite? I am not going to need full 'relational' type database, just some fairly flat data.

Since SQLite is not really a server, where does it go on my PC and on the host site so that PHP can see it?

Thanks,
Fred :lol:
User avatar
Weirdan
Moderator
Posts: 5978
Joined: Mon Nov 03, 2003 6:13 pm
Location: Odessa, Ukraine

Re: SQLitemanager where does it go?

Post by Weirdan »

It doesn't go anywhere, you specify path to sqlite db file when creating sql 'connection' using sqlite_open().
fblair
Forum Newbie
Posts: 8
Joined: Tue Feb 10, 2009 4:30 pm

Re: SQLitemanager where does it go?

Post by fblair »

So it only exists in the PHP code that calls and creates it? Right?
User avatar
Weirdan
Moderator
Posts: 5978
Joined: Mon Nov 03, 2003 6:13 pm
Location: Odessa, Ukraine

Re: SQLitemanager where does it go?

Post by Weirdan »

It exists as a file on disk (unless you're creating in-memory database, which is also possible).
Post Reply