LocalStorage: Difference between revisions
Jump to navigation
Jump to search
Created page with "LOCALSTORAGE(''string'' | ''variable'') '''Description''' LOCALSTORAGE allows you to save string data so it is available next time you run the program. An entry can be creat..." |
No edit summary |
||
Line 1: | Line 1: | ||
LocalStorage(''string'' | ''variable'') | |||
== Description == | |||
LocalStorage allows you to save string data so it is available next time you run the program. An entry can be created by assigning to LocalStorage.''variableName'', where ''variableName'' is chosen by you. Data is retrieved the same way. A program is allowed to store at least 5 megabytes of data in LocalStorage. The information in LocalStorage is lost if the browser cache is cleared. To be certain that you do not lose data, save it into an SQLite database instead. | |||
LocalStorage is shared among all apps deployed from the same web server. This can be useful if you have a family of apps which need to share data. | |||
Note that if the user has Private Browsing turned on, localStorage is not accessible. | Note that if the user has Private Browsing turned on, localStorage is not accessible. | ||
== Example == | |||
<pre> | <pre> | ||
Rem LocalStorage Save Example | |||
localStorage.data = "This is Data." | localStorage.data = "This is Data." | ||
(run and exit program) | (run and exit program) | ||
Rem LocalStorage Retrieve Example | |||
Print localStorage.data | Print localStorage.data | ||
Rem Test if Private Browsing is turned on | |||
Try | Try | ||
localStorage.private = "test" | localStorage.private = "test" | ||
Line 26: | Line 26: | ||
</pre> | </pre> | ||
== Output == | |||
<pre> | <pre> | ||
Line 32: | Line 32: | ||
</pre> | </pre> | ||
== Related Items == | |||
[[sessionstorage|SESSIONSTORAGE]], [[sql|SQL]] | [[sessionstorage|SESSIONSTORAGE]], [[sql|SQL]] | ||
[[Category:Language Reference]] |
Revision as of 02:05, 17 August 2012
LocalStorage(string | variable)
Description
LocalStorage allows you to save string data so it is available next time you run the program. An entry can be created by assigning to LocalStorage.variableName, where variableName is chosen by you. Data is retrieved the same way. A program is allowed to store at least 5 megabytes of data in LocalStorage. The information in LocalStorage is lost if the browser cache is cleared. To be certain that you do not lose data, save it into an SQLite database instead.
LocalStorage is shared among all apps deployed from the same web server. This can be useful if you have a family of apps which need to share data.
Note that if the user has Private Browsing turned on, localStorage is not accessible.
Example
Rem LocalStorage Save Example localStorage.data = "This is Data." (run and exit program) Rem LocalStorage Retrieve Example Print localStorage.data Rem Test if Private Browsing is turned on Try localStorage.private = "test" Catch err MsgBox "Please turn Private Browsing on" End Try
Output
This is the Data. 1