Returns the error message of the last operation on the connection

Property definitions

postgresql $ NativePostgres :: error
  # Returns the error message of the last operation on the connection
  fun error: String import CString.to_s `{
    char * error = PQerrorMessage(self);
    return CString_to_s(error);
  `}
lib/postgresql/native_postgres.nit:125,3--129,4