Hi,
I am new to lift .
I am using mapper framework.
i have table emp with name ,salary, location columns


 now i want to put query to find employee whose salary is less than
10000  and greater that 1000 and location is California.

For this i am using BySql query...as foolows ->

val emp_List = emp_details.findAll(BySql("salary between ? and ?,
1000,10000",IHaveValidatedThisSQL("pravin",""2009-08-03)));

but when i compileing this i get following error ->

java.io.IOException: MALFORMED[1]
        at scala.tools.nsc.io.SourceReader$.decode(SourceReader.scala:
134)
        at scala.tools.nsc.io.SourceReader.read(SourceReader.scala:95)
        at scala.tools.nsc.io.SourceReader.read(SourceReader.scala:46)
        at scala.tools.nsc.io.SourceReader.read(SourceReader.scala:65)
        at scala.tools.nsc.Global.getSourceFile(Global.scala:211)
        at scala.tools.nsc.Global.getSourceFile(Global.scala:217)
        at scala.tools.nsc.Global$Run$$anonfun$compile$1.apply
(Global.scala:667)
        at scala.tools.nsc.Global$Run$$anonfun$compile$1.apply
(Global.scala:667)
        at scala.List.map(List.scala:805)
        at scala.tools.nsc.Global$Run.compile(Global.scala:667)
        at scala.tools.nsc.Main$.process(Main.scala:73)
        at scala.tools.nsc.Main$.main(Main.scala:87)
        at scala.tools.nsc.Main.main(Main.scala)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke
(NativeMethodAccessorImpl.java:39)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke
(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:597)
        at org.scala_tools.maven.executions.MainHelper.runMain
(MainHelper.java:105)
        at org.scala_tools.maven.executions.MainWithArgsInFile.main
(MainWithArgsInFile.java:26)
error: IO error while decoding C:\Documents and Settings\pravin_karne
\Scala_workspace\mobworx\src\main\scala\com\mobworx\snip
pet\DisplayResults.scala with UTF-8
Please try specifying another one using the -encoding option
one error found



So what is cause of this error and is there other way to find it out


Thanks in advance
-Pravin

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Lift" group.
To post to this group, send email to liftweb@googlegroups.com
To unsubscribe from this group, send email to 
liftweb+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to