我想知道如何从 scala swing 应用程序访问 mongodb 数据库。我是 scala 的新手。我在 mongodb 中创建了一个名为 mydb 的数据库和一个名为 studen(rollno,name,age,city) 的集合。我只是想在 mongodb 数据库上使用 swing 执行插入、更新和删除,但我不知道要使用哪个包以及任何其他有用的信息。
我在这里附上摇摆代码。
吉斯卡拉
import swing._
import swing.event._
import swing.Component._
object Gui extends SimpleSwingApplication
{
def top = new MainFrame {
title = "Second Swing App"
val combobox = new ComboBox(List(("1"),("2"),("3"),("4"),("5"),("6"))){
}
val text1= new TextField(10){
}
val text2= new TextField(10){
}
val text3= new TextField(10){
}
val button = new Button {
text = "Clear"
}
val button1 = new Button {
text = "Save"
}
val button2 = new Button {
text = "Delete"
}
val button3 = new Button {
text = "Update"
}
val label = new Label {
text = "No button clicks registered"
}
contents = new BoxPanel(Orientation.Vertical) {
contents += combobox
contents += text1
contents += text2
contents += text3
contents += button
contents += label
contents += button1
contents += button2
contents += button3
border = Swing.EmptyBorder(30, 30, 10, 30)
}
listenTo(button)
reactions+={
case ButtonClicked(button)=>
}
}