我正在尝试在需要我使用 sqlj 的数据库课程中做作业。它应该连接到我计算机上运行的 SQL 数据库。将示例代码复制并粘贴到 Netbeans 中时,出现编译错误:
package sqlj.runtime does not exist: import sqlj.runtime.*;
import java.sql.*;
import java.io.*;
import sqlj.runtime.*;
import sqlj.runtime.ref.*;
import oracle.sqlj.runtime.*;
public class A10Q1 {
public static void main(String[] args) {
DefaultContext cntxt = oracle.getConnection("url", "user", "pswd", true);
}
}
我更改了 getConnection 函数的输入。