i have several html pages at sqlite3 which are connect with specific id. how can i dynamically load html from sqlite at runtime ?
-
what means of html in sqlite3?how can you save html page in sqlite3?are you talking abt url as string in sqlite3?pls elaboratechikka.anddev– chikka.anddev2011-01-28 11:24:48 +00:00Commented Jan 28, 2011 at 11:24
-
Hi chirag, please take to look at to my sqlite image, i just save html files under description field and have to generate those html files with specific idx. any ideas ?geekmyo– geekmyo2011-01-28 11:36:06 +00:00Commented Jan 28, 2011 at 11:36
-
@chirag shah: HTML is just plain text, so he can save it in a text field. However, if the HTML contains images, he has a problem.Stefan Steiger– Stefan Steiger2011-01-28 11:59:11 +00:00Commented Jan 28, 2011 at 11:59
Add a comment
|
2 Answers
You can use WebView's loadData or loadDataWithBaseURL methods to load the fetched text as HTML or you can save the fetched text as a HTML file then use loadURL method to load that file.