如何在scala中访问mongodb数据库?

时间:2010-11-03 06:46:37

标签: scala scala-swing

我想知道如何从scala swing应用程序访问mongodb数据库。 我是scala的新手。我在mongodb中创建了一个名为mydb的数据库,并创建了一个名为studen(rollno,name,age,city)的集合。我只是想在mongodb数据库上使用swing执行插入,更新和删除,但我不知道使用哪个包以及任何其他有用的信息。

我正在附上摆动代码。

Gui.scala

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)=>


}  
}

1 个答案:

答案 0 :(得分:3)

您可以在Scala中使用MongoDB Java driver,也可以使用Casbah,一个围绕Java驱动程序的Scala包装器。