Azure, ToDo, , .
Azure mobile SDK - . SDK
Sqlite wrapper storage
, .
com.microsoft.windowsazure.mobileservices.table.sync.localstore.SQLiteLocalStore
, , .
SDK Android .
, SDK
. , pull
, .
, MobileServiceSyncTable<YourClass> mTable
if (condition)
{
mTable.pull(queryTable,queryId).get();
}
queryTable . , mTable
Query queryTable = mClient.getTable(YourClass.class).select();
, , Azure. . SDK ,
pull. .
iOS
Azure SDK
iOS
.
mTable.read(queryTable).get();
, , - /, - SDK . -, . - , PLS,
Once you get access to the SDK and API links, the classes below can be considered important.
1) com.microsoft.windowsazure.mobileservices.MobileServiceClient
2) com.microsoft.windowsazure.mobileservices.table.sync.MobileServiceSyncTable
3) com.microsoft.windowsazure.mobileservices.table.sync.MobileServiceSyncContext
4) com.microsoft.windowsazure.mobileservices.table.sync.localstore.SQLiteLocalStore
5) com.microsoft.windowsazure.mobileservices.table.query.Query
source
share