zoukankan      html  css  js  c++  java
  • 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"
    
    参考
  • 相关阅读:
    BZOJ 3033 太鼓达人(DFS+欧拉回路)
    HDU 5121 Just A Mistake
    HDU 5120 Intersection
    HDU 5119 Happy Matt Friends
    HDU 5117 Fluorescent
    BZOJ 1088: [SCOI2005]扫雷Mine
    Codeforces 994 C
    BZOJ 2242: [SDOI2011]计算器
    HDU 4609 3-idiots
    算法笔记--FFT && NTT
  • 原文地址:https://www.cnblogs.com/wswang/p/8426492.html
Copyright © 2011-2022 走看看