public interface User extends QueryPart
GRANT
and REVOKE
statements.
Example:
// Assuming import static org.jooq.impl.DSL.*;
using(configuration)
.grant(privilege("SELECT"))
.on(ACTOR)
.to(user("MY_USER"))
.execute();
Instances can be created using DSL.user(Name)
and overloads.
Modifier and Type | Method and Description |
---|---|
String |
getName()
The name of the user.
|
String getName()
Copyright © 2020. All rights reserved.