我可以将Android应用程序连接到计算机上的MySQL数据库吗?只需告诉我一种方式或一个库名,然后让我用google搜索一下即可。
最佳答案
Java的MySQL连接器也适用于Kotlin。您可以从https://dev.mysql.com/downloads下载
然后您可以像这样kotlint:
val connectionProps = Properties()
connectionProps.put("user", username)
connectionProps.put("password", password)
try {
Class.forName("com.mysql.jdbc.Driver").newInstance()
conn = DriverManager.getConnection(“url”, connectionProps)
} catch (ex: SQLException) {
// handle any errors
ex.printStackTrace()
} catch (ex: Exception) {
// handle any errors
ex.printStackTrace()
}
关于android - 如何使用Kotlin将计算机中托管的MySQL连接到Android应用程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51640161/