Reputation: 2168
Can I put a SQLite database on a host that I only have FTP access to?
Upvotes: 1
Views: 1900
Reputation: 41170
Sure, an SQLite database is just a file, and FTP is File Transfer Protocol. You will be able to put the database on the server, and get it back.
If you can execute programs, such as cgi scripts, on the server, those programs may be able to access the database as well, depending on how your host restricts the script/program.
Upvotes: 1