import groovy.sql.Sql
sql = Sql.newInstance(
"jdbc:postgresql://localhost:5432/test1",
"postgres",
"postgres",
"org.postgresql.Driver")
query = """
COPY employee FROM 'C:/share/20091114a/employee.csv' WITH CSV
"""
// CSVファイルからデータを取り込む
sql.execute(query)
動作環境
Groovy 1.6.3, JDK6 Update16, Postgres 8.4.0,
8.4-701JDBC4
関連情報
COPY
http://www.postgresql.org/docs/8.4/interactive/sql-copy.html
0 件のコメント:
コメントを投稿