クエリを使用して行を挿入しようとしています。
SQLクエリを挿入してgroovyを使用してターゲットシステムの調整を行う方法は?
//packages
import java.sql.*;
import groovy.sql.Sql
// class
class test {
//main method
static void main(String[] args) {
//Connection:
//def sql = Sql.newInstance("jdbc:oracle:thin:@localhost:1521:orcl", "hr", "hr",
"oracle.jdbc.pool.OracleDataSource")
def sql = Sql.newInstance("jdbc:oracle:thin:@localhost:1521:orcl(sid)", "hr", "hr")
// insert new employee with Sql.executeInsert
def insertStr =
"""insert into Employee
(COL1, COL2)
values
(COL1_seq.nextval, 'hai')"""
def insertedEmployees = sql.executeInsert(insertStr)
println insertedEmployees.dump()
def insertedEmployeeId = insertedEmployees[0][0].toJdbc()
println "TABLE_NAME ${insertedcol1} added."
}
};
エラー:
java.sql.SQLException: grov.main(grov.groovy:25) で jdbc:oracle:thin:@localhost:1521:orcl(sid) に適したドライバーが見つかりません