DefaultConnectionIdentifier.jndiName = "jdbc/myOracleDb"
I really need to specify a default schema too... (For Hibernate, I
would specify this in persistence.xml.) Is there a way to specify a
default schema?
java.util.NoSuchElementException: key not found: mytablename
at scala.collection.Map$class.default(Map.scala:169) [scala-
library-2.7.7.jar:na]
at scala.collection.mutable.HashMap.default(HashMap.scala:33)
[scala-library-2.7.7.jar:na]
at scala.collection.Map$class.apply(Map.scala:80) [scala-
library-2.7.7.jar:na]
at scala.collection.mutable.HashMap.apply(HashMap.scala:33)
[scala-library-2.7.7.jar:na]
at net.liftweb.mapper.Schemifier$$anonfun$6$$anonfun$apply
$8.apply(Schemifier.scala:193) [lift-mapper-1.1-M8.jar:1.1-M8]
at net.liftweb.mapper.Schemifier$$anonfun$6$$anonfun$apply
$8.apply(Schemifier.scala:193) [lift-mapper-1.1-M8.jar:1.1-M8]
at net.liftweb.mapper.Schemifier$.net$liftweb$mapper$Schemifier
$$using(Schemifier.scala:44) [lift-mapper-1.1-M8.jar:1.1-M8]
at net.liftweb.mapper.Schemifier$$anonfun$6.apply
(Schemifier.scala:193)[lift-mapper-1.1-M8.jar:1.1-M8]
at net.liftweb.mapper.Schemifier$$anonfun$6.apply
(Schemifier.scala:187)[lift-mapper-1.1-M8.jar:1.1-M8]
Basically, I am looking for the Lift equivalent to:
hibernate.default_schema
(See section 3.4: http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html
)