how to save files in the data base with jquery-fileupload multiple - jquery-file-upload

I use Jquery-fileupload blueimp and my question is how to save the files in my database? I have 8 files uploaded with the multiple upload, but I do not know how to save them in my database. can anyone help me please

Related

How to upload and retrieve pdf file in sqllite database

I want upload pdf file into sqlite and retrieve the pdf file into listview how can I do that please send me the code after I retrieve the pdf file in list view it as to open in pdf file how can I do that please help me out
Thank in advance
I personally suggest you to use the cloud firestore to your application which will be helpful to upload or access the contents of files.
you can save the files in the firebase storage and then use the links to access them and list into the listview

Where to store SQLite file from app user

In my project I have stored my sqlite(DB file) file in Document directory and also set UIFilesharingMode - NO , but now user can able to acces the file using Xcode->orginizor and also he can able to modify in table and able to change the data in that dable .
My requirement is, how I can hide or restrict user to not access that file.
If any one have any intelligent idea please share me.
Thanks.
You have to use encryption. There's no way to prevent someone accessing Documents folder and there's nowhere for you to store the sqlite file.

Update a .csv file on server from iPad programmatically

I am developing a simple iPad application that should submit some text from a form to a .csv file. I could manage to update the .csv file which is saved locally in the documents folder on my computer. However, I need to keep the file on a server, probably download the file, append data, and upload it again (Export a bulk of data to the file on server). Any idea how I could do something like that?
I guess ftp might be the easiest way, see this question
your other options likely involve writing a server-side service to post data to.

how to store files into sqlite

I m creating document files using filemanager which is text file.i want to store this files into sqlite tables?How can i store from iphone and what data types can be used?
Thank u..
Assuming your app is linked to a sqlite library, just create a database and then add tables and data. I'm not really clear where you're getting hung up.

How can i store audio file in sqlite..?

I want to save recorded file and after that i want to save in sqlite database. How it possible?
Give me some proper guideline on that..
Ayn suggestion welcomes...
Instead of storing audio file data inside SQLITE, save the files into your file-system (like inside Documents directory) & save the file names into your SQLITE database. Refer to this SO question - Upload video into SQLite