I want to use SQLite database which is on FTP server without downloading it. Is it possible to use this database directly?
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.