我如何在room数据库和mysql数据库中存储数据下面是我的代码

nnsrf1az  于 2021-06-20  发布在  Mysql
关注(0)|答案(0)|浏览(230)

这是我的应用程序改造界面

@FormUrlEncoded
@POST("sendorder.php")
Call<order> sendOrder(@Field("name") String name,
@Field("link") String link,
@Field("amount") int amount,
@Field("price") double price);

下面是我的 try catch 方法将数据存储到我的房间数据库中,我还希望数据存储在mysql数据库中。我该怎么做呢?或者说这是可能的吗?

builder.setNegativeButton("CONFIRM", new DialogInterface.OnClickListener() {

@Override
public void onClick(DialogInterface dialogInterface, int i) {
  dialogInterface.dismiss();
  try {
    mService = Common.getAPI();
    Cart cartItem = new Cart();
    cartItem.name = txt_product_dialog.getText().toString();
    cartItem.amount = Integer.parseInt(number);
    cartItem.price = finalPrice;
    cartItem.link = foodList.get(position).Link;
    Common.cartRepository.insertToCart(cartItem);
    Log.d("KANZEN_DEBUG", new Gson().toJson(cartItem));
    Toast.makeText(context, "Successfully Added To Your Order!",Toast.LENGTH_SHORT).show();
  } catch (Exception ex) {
      Toast.makeText(context, ex.getMessage(),Toast.LENGTH_SHORT).show();
  }
}});

builder.setView(itemView);
builder.show();

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题