Uses of Class
com.impossibl.postgres.protocol.Notice
-
Packages that use Notice Package Description com.impossibl.postgres.jdbc com.impossibl.postgres.protocol com.impossibl.postgres.protocol.v30 com.impossibl.postgres.system -
-
Uses of Notice in com.impossibl.postgres.jdbc
Methods in com.impossibl.postgres.jdbc with parameters of type Notice Modifier and Type Method Description static SQLException
ErrorUtils. makeSQLException(Notice notice)
Converts a single error notice to a single SQLExceptionstatic SQLException
ErrorUtils. makeSQLException(String messagePrefix, Notice notice)
Converts a single error notice to a single SQLExceptionstatic SQLWarning
ErrorUtils. makeSQLWarning(Notice notice)
Converts a single warning notice to a single SQLWarningMethod parameters in com.impossibl.postgres.jdbc with type arguments of type Notice Modifier and Type Method Description static SQLException
ErrorUtils. makeSQLExceptionChain(List<Notice> notices)
Converts the given list of notices into a chained list of SQLExceptionsstatic SQLWarning
ErrorUtils. makeSQLWarningChain(List<Notice> notices)
Converts the given list of notices into a chained list of SQLWarnings -
Uses of Notice in com.impossibl.postgres.protocol
Fields in com.impossibl.postgres.protocol with type parameters of type Notice Modifier and Type Field Description protected List<Notice>
RequestExecutorHandlers.Result. notices
Methods in com.impossibl.postgres.protocol that return types with arguments of type Notice Modifier and Type Method Description List<Notice>
RequestExecutorHandlers.Result. getNotices()
Method parameters in com.impossibl.postgres.protocol with type arguments of type Notice Modifier and Type Method Description void
RequestExecutor.FunctionCallHandler. handleComplete(io.netty.buffer.ByteBuf result, List<Notice> notices)
void
RequestExecutor.PrepareHandler. handleComplete(TypeRef[] parameterTypes, ResultField[] resultFields, List<Notice> notices)
void
RequestExecutor.QueryHandler. handleComplete(String command, Long rowsAffected, Long insertedOid, TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices)
void
RequestExecutor.ResumeHandler. handleComplete(String command, Long rowsAffected, Long insertedOid, RowDataSet rows, List<Notice> notices)
void
RequestExecutorHandlers.CompositeQueryResults. handleComplete(String command, Long rowsAffected, Long insertedOid, TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices)
void
RequestExecutorHandlers.ExecuteResult. handleComplete(String command, Long rowsAffected, Long insertedOid, RowDataSet rows, List<Notice> notices)
void
RequestExecutorHandlers.PrepareResult. handleComplete(TypeRef[] parameterTypes, ResultField[] resultFields, List<Notice> notices)
void
RequestExecutorHandlers.QueryResult. handleComplete(String command, Long rowsAffected, Long insertedOid, TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices)
void
RequestExecutor.ErrorHandler. handleError(Throwable cause, List<Notice> notices)
void
RequestExecutorHandlers.Result. handleError(Throwable error, List<Notice> notices)
void
RequestExecutor.ExtendedQueryHandler. handleSuspend(TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices)
void
RequestExecutor.ResumeHandler. handleSuspend(RowDataSet rows, List<Notice> notices)
void
RequestExecutorHandlers.ExecuteResult. handleSuspend(RowDataSet rows, List<Notice> notices)
void
RequestExecutorHandlers.QueryResult. handleSuspend(TypeRef[] parameterTypes, ResultField[] resultFields, RowDataSet rows, List<Notice> notices)
-
Uses of Notice in com.impossibl.postgres.protocol.v30
Methods in com.impossibl.postgres.protocol.v30 with parameters of type Notice Modifier and Type Method Description ProtocolHandler.Action
ProtocolHandler.CommandError. error(Notice notice)
ProtocolHandler.Action
ProtocolHandler.ReportNotice. notice(Notice notice)
-
Uses of Notice in com.impossibl.postgres.system
Methods in com.impossibl.postgres.system that return Notice Modifier and Type Method Description Notice
NoticeException. getNotice()
Methods in com.impossibl.postgres.system with parameters of type Notice Modifier and Type Method Description void
NoticeException. setNotice(Notice notice)
Constructors in com.impossibl.postgres.system with parameters of type Notice Constructor Description NoticeException(Notice notice)
NoticeException(String message, Notice notice)
-