如何从Azure数据库获取数据,以便将来使用时它会显示正确的内容?我尝试使用MobileServiceTable<>但它没有用于(),我也无法转换MobileService<>列出<>。这些问题有解决办法吗?
MobileServiceClient azur= new MobileServiceClient("https://alcoholo.azure-mobile.net/", "*Cuted*", context);
MobileServiceTable<Events> dupaka = azur.getTable(Events.class);
答案 0 :(得分:0)
以下是准备好的代码:)
public static ArrayList<Events> list = new ArrayList<Events>();
public static void refreshItemsFromTable() {
dupaka.execute(new TableQueryCallback<Events>() {
public void onCompleted(List<Events> result, int count, Exception exception, ServiceFilterResponse response) {
if (exception == null) {
//no exception hurray :)
for (Events item : result) {
list.add(item);
}
} else {
//do somthing when are exceptions
}
}
});
}