添加驱动程序后出现sql语句错误

时间:2012-03-16 18:16:01

标签: java sql oracle sqlj

我正在尝试编写一个使用sql数据库的java程序。我将驱动程序添加到CLASSPATH但是我在#sql'中以#in开头的sql语句中出现错误。 JGrasp说'无效字符/ 35'。我是否包含了错误的oracle驱动程序?我用了oldjdbc14.jar。我不知道什么是错的......

import java.sql.*;
import java.io.*;

public class Employee
{
    public int checkEmpID(int empID)
    {
        int employeeID = empID;
        int found = 0;

        DefaultContext cntxt = oracle.getConnection("url","user","pass",true);
        DefaultContext.setDefaultContext(cntxt);

        #sql{select Enumber into :found from Employee where Enumber = :empID};
        return found;
     }
}

0 个答案:

没有答案