Search code examples
c#sqliteftp

How to use database that is on FTP server without downloading it?


I want to use SQLite database which is on FTP server without downloading it. Is it possible to use this database directly?


Solution

  • No, the FTP protocol is designed to sequentially transfer the entire contents of files. There is no way to perform random reads/writes to a file, which is necessary for SQLite (or any database program) to work.