0
Как подключить метод контроллера Scala.js с помощью базы данных mySQL?Как я могу подключитьScala.js с базой данных mySQL?
Это то, что я до сих пор:
case class data(user_d: String, udid: String, image: String)
object mysqlDAO {
def findById(udid: Long): Option[data] = {
val connection = DriverManager.getConnection("jdbc:mysql://localhost:3307/umo", "root", "")
try {
val statement = connection.prepareStatement("""select * from messages where udid = ?""")
statement.setLong(1, udid)
val rs = statement.executeQuery()
if (rs.next())
Option(new data(rs.getString(1), rs.getString(2), rs.getString(3)))
else
Option.empty
} finally {
connection.close()
}
}
}