Package org.firebirdsql.jdbc.metadata
Class GetColumnPrivileges
- java.lang.Object
- 
- org.firebirdsql.jdbc.metadata.GetColumnPrivileges
 
- 
 public final class GetColumnPrivileges extends java.lang.ObjectProvides the implementation ofDatabaseMetaData.getColumnPrivileges(String, String, String, String).This implementation returns all privileges, not just from the current user. The JDBC specification is not clear on this. Looking at the Schemata (SQL standard book 11) definition of the COLUMN_PRIVILEGESview, possibly this should be restricted to the current user and userPUBLIC(and maybe active roles). This may change in a future version.- Since:
- 5
- Author:
- Mark Rotteveel
 
- 
- 
Field SummaryFields Modifier and Type Field Description protected DbMetadataMediatormediator
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GetColumnPrivilegescreate(DbMetadataMediator mediator)java.sql.ResultSetgetColumnPrivileges(java.lang.String table, java.lang.String columnNamePattern)
 
- 
- 
- 
Field Detail- 
mediatorprotected final DbMetadataMediator mediator 
 
- 
 - 
Method Detail- 
getColumnPrivilegespublic java.sql.ResultSet getColumnPrivileges(java.lang.String table, java.lang.String columnNamePattern) throws java.sql.SQLException- Throws:
- java.sql.SQLException
- See Also:
- DatabaseMetaData.getColumnPrivileges(String, String, String, String)
 
 - 
createpublic static GetColumnPrivileges create(DbMetadataMediator mediator) 
 
- 
 
-