Skip to content

Commit 2f93647

Browse files
committed
Updates for improved implementation
1 parent 00ca66e commit 2f93647

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

powerapps-docs/maker/canvas-apps/functions/function-savedata-loaddata.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: powerapps
77
ms.topic: reference
88
ms.custom: canvas
99
ms.reviewer: anneta
10-
ms.date: 11/07/2015
10+
ms.date: 01/31/2019
1111
ms.author: gregli
1212
search.audienceType:
1313
- maker
@@ -24,14 +24,14 @@ The **LoadData** function re-loads a collection by name that was previously save
2424

2525
Use these functions to improve app startup performance by caching data in the **[App.OnStart](../controls/control-screen.md#additional-properties)** formula on a first run and then re-loading the local data on subsequent runs. These functions can also be used to add [simple offline capabilities](../offline-apps.md) to your app.
2626

27-
Storage is encrypted and in a private ___location on the local device, isolated from other users and other apps.
28-
2927
These functions cannot be used inside a browser either when authoring the app in the Studio or running the app in the Web Player. Use a native player on a device to test your app during development.
3028

3129
These functions are limited by the amount of available app memory as they operate on an in-memory collection. Available memory can vary depending on the device and operating system, the memory used by the PowerApps player, and the complexity of the app in terms of screens and controls. if you store more than a few megabytes of data, test your app with expected scenarios on the devices you expect to be used. You should generally expect to have between 30 and 70 megabytes of available memory.
3230

3331
**LoadData** doesn't create the collection; the function only fills an existing collection. You must first create the collection with the correct [columns](../working-with-tables.md#columns) by using **[Collect](function-clear-collect-clearcollect.md)**. The loaded data will be appended to the end of the collection; use the **[Clear](function-clear-collect-clearcollect.md)** function first if you would like to start with a clean slate.
3432

33+
Storage is encrypted and in a private ___location on the local device, isolated from other users and other apps.
34+
3535
## Syntax
3636
**SaveData**( *Collection*, *Name* )<br>**LoadData**( *Collection*, *Name* [, *IgnoreNonexistentFile* ])
3737

0 commit comments

Comments
 (0)