gpt4 book ai didi

android - Ormlite 与 MySQL

转载 作者:行者123 更新时间:2023-11-29 04:52:29 28 4
gpt4 key购买 nike

我正在开发需要数据库的 Android 应用程序。我有使用 Hibernate 的经验,但我没有尝试过,因为我听说它对 Android 来说太多了。

我按照这个不错的教程 [1] 使用 sqlite 设置 ormlite。但我需要使用像 MySQL 这样的真正的数据库。有没有关于将 MySQL 与 ormlite 一起使用的好教程?

  1. http://logic-explained.blogspot.com/2011/12/using-ormlite-in-android-projects.html

最佳答案

Is there any good tutorial out there for using MySQL with ormlite?

没有,但是你可以看看 HelloAndroidH2 示例程序,它在 Android 上使用 JDBC 连接到 H2 数据库:

http://ormlite.com/android/examples/

您可以使用 ormlite-core 和 ormlite-jdbc 包,而不是使用 ormlite-core 和 ormlite-android 包。在示例程序中你可以看到:

connectionSource =
new JdbcConnectionSource(
"jdbc:h2:/data/data/helloandroidh2/databases/helloAndroidH2");

该 JDBC URI 将 H2 数据库存储在本地 Android 存储中。相反,您将使用类似以下的内容作为您的数据库 URI:

jdbc:mysql://my-database-host/my-database-name

使用此方法让我担心的一件事是 JDBC 不受 Android 的正式支持。在下一个 Android 代码发布之前,您可能会发现一切正常。仅供引用。

关于android - Ormlite 与 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10159365/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com