Re: Adding on-line data to sqlLite question
Jorge Villalobos <[email protected]>
| Newsgroups | gmane.comp.mozilla.devel.layout,gmane.comp.mozilla.devel.xpfe |
|---|---|
| Message-ID | <[email protected]> |
On 11/12/11 11:06 AM, paniz alipour wrote: > Hello All My Friend, > > I am developing an extension which has database and work with SqlLite. > > I want to know whether it is possible to insert data online to this > extension. > > Maybe it would be better to explain it in this way: > > I have a database with some default data on database,I publish this > extension,many people are using it. > > after some days I find some new information I want to add it to > database.can I add data on-line,so that > > users can use the new data on database.Is it possible and how? > > And would you please tell me how can I use sqlLite?would you please > introduce any reference? > > Please guide me > > Thanks > You could push an update of the extension that adds the new data for existing users, or create an API so that your extension connects to it and downloads the new data without having to update it every time. It's hard to know what would work best without any more context about it, though. - Jorge