public interface GrantOnStep
GRANT statement where the
 ON clause can be added.| Modifier and Type | Method and Description | 
|---|---|
GrantToStep | 
on(Name table)
Grant a privilege on a table. 
 | 
GrantToStep | 
on(String table)
Grant a privilege on a table. 
 | 
GrantToStep | 
on(Table<?> table)
Grant a privilege on a table. 
 | 
@Support(value={AURORA_MYSQL,AURORA_POSTGRES,DERBY,H2,HSQLDB,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER}) GrantToStep on(Table<?> table)
@Support(value={AURORA_MYSQL,AURORA_POSTGRES,DERBY,H2,HSQLDB,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER}) GrantToStep on(Name table)
@PlainSQL @Support(value={AURORA_MYSQL,AURORA_POSTGRES,DERBY,H2,HSQLDB,MARIADB,MYSQL,ORACLE,POSTGRES,SQLSERVER}) GrantToStep on(String table)
NOTE: When inserting plain SQL into jOOQ objects, you must guarantee syntax integrity. You may also create the possibility of malicious SQL injection. Be sure to properly use bind variables and/or escape literals when concatenated into SQL clauses!
Copyright © 2019. All rights reserved.