scala連接數據庫


scala連接數據庫

使用JDBC即可:

  • 在sbt中添加對應依賴
libraryDependencies ++= Seq(
  "mysql" % "mysql-connector-java" % "5.1.33"
)
  • 在代碼中引用
import java.sql.{Connection, DriverManager}

    def insertMysql(date: String, dbDriver: String, dbAdd: String, dbTable: String, dbUser: String, dbPasswd: String, hostApk: String, aid: Long): Unit = {
      var connection:Connection = null
      try{
        Class.forName(dbDriver)
        connection = DriverManager.getConnection(dbAdd, dbUser, dbPasswd)
        val statement = connection.createStatement()

        val delSql = "delete from " + dbTable + " where dt=" + date.toInt + " and hostapk=" + """"""" + hostApk + """""""
        val insertSql = "insert into " + dbTable + "(dt, hostapk, aid)" + " values(" + date.toInt + "," + """"""" + hostApk + """"""" + "," + aid + ")"

        println("print the SQL statement:")
        println(delSql)
        println(insertSql)

        statement.execute(delSql)
        statement.execute(insertSql)
      }catch {
        case e: Exception => e.printStackTrace()
      }
      connection.close()
    }
  • 對應的參數如下:
dbDriver="com.mysql.jdbc.Driver"
dbAddr="jdbc:mysql://127.0.0.1/data"
dbTable="hah"
dbUser="hi"
dbPasswd="nihao"
參考


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM