import groovy.sql.Sql
sql = Sql.newInstance(
"jdbc:postgresql://localhost:5432/test1",
"postgres",
"postgres",
"org.postgresql.Driver")
// 指定したユーザをログイン不可能にする
sql.execute("alter user emp2 nologin")
動作環境
Groovy 1.6.3, JDK6 Update16, Postgres 8.4.0,
8.4-701JDBC4
関連情報
ALTER USER
http://www.postgresql.org/docs/8.4/interactive/sql-alteruser.html
0 件のコメント:
コメントを投稿