• 2022-06-05
    要在Statement对象stmt上执行SELECT语句“select*fromAddress”,可以使用________。
    A: stmt.execute("select*fromAddress");
    B: stmt.executeQuery("select*fromAddress");
    C: stmt.executeUpdate("select*fromAddress");
    D: stmt.query("select*fromAddress");
  • 举一反三