===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libpg-perl-2.1.1/examples/ApachePg.pl-40-        my $cmd = $query->param('cmd');
libpg-perl-2.1.1/examples/ApachePg.pl:41:        my $result = $conn->exec($cmd);
libpg-perl-2.1.1/examples/ApachePg.pl-42-        if (PGRES_TUPLES_OK == $result->resultStatus) {
##############################################
libpg-perl-2.1.1/examples/example.newstyle-96-# do not complain when dropping $dbname
libpg-perl-2.1.1/examples/example.newstyle:97:$conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/examples/example.newstyle-98-
libpg-perl-2.1.1/examples/example.newstyle:99:$result = $conn->exec("CREATE DATABASE $dbname");
libpg-perl-2.1.1/examples/example.newstyle-100-die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/examples/example.newstyle-132-for ($i = 1; $i <= 5; $i++) {
libpg-perl-2.1.1/examples/example.newstyle:133:    $result = $conn->exec("INSERT INTO person VALUES ($i, 'Edmund Mergl')");
libpg-perl-2.1.1/examples/example.newstyle-134-    die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/examples/example.newstyle-269-
libpg-perl-2.1.1/examples/example.newstyle:270:$result = $conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/examples/example.newstyle-271-die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-91-# do not complain when dropping $dbname
libpg-perl-2.1.1/examples/example.oldstyle:92:$result = PQexec($conn, "DROP DATABASE $dbname");
libpg-perl-2.1.1/examples/example.oldstyle-93-PQclear($result);
libpg-perl-2.1.1/examples/example.oldstyle-94-
libpg-perl-2.1.1/examples/example.oldstyle:95:$result = PQexec($conn, "CREATE DATABASE $dbname");
libpg-perl-2.1.1/examples/example.oldstyle-96-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-126-
libpg-perl-2.1.1/examples/example.oldstyle:127:$result = PQexec($conn, "CREATE TABLE person (id int4, name char(16))");
libpg-perl-2.1.1/examples/example.oldstyle-128-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-132-for ($i = 1; $i <= 5; $i++) {
libpg-perl-2.1.1/examples/example.oldstyle:133:    $result = PQexec($conn, "INSERT INTO person VALUES ($i, 'Edmund Mergl')");
libpg-perl-2.1.1/examples/example.oldstyle-134-    die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-140-
libpg-perl-2.1.1/examples/example.oldstyle:141:$result = PQexec($conn, "COPY person TO STDOUT");
libpg-perl-2.1.1/examples/example.oldstyle-142-die PQerrorMessage($conn) unless PGRES_COPY_OUT eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-158-
libpg-perl-2.1.1/examples/example.oldstyle:159:$result = PQexec($conn, "BEGIN");
libpg-perl-2.1.1/examples/example.oldstyle-160-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-162-
libpg-perl-2.1.1/examples/example.oldstyle:163:$result = PQexec($conn, "DELETE FROM person");
libpg-perl-2.1.1/examples/example.oldstyle-164-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-167-
libpg-perl-2.1.1/examples/example.oldstyle:168:$result = PQexec($conn, "COPY person FROM STDIN");
libpg-perl-2.1.1/examples/example.oldstyle-169-die PQerrorMessage($conn) unless PGRES_COPY_IN eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-180-
libpg-perl-2.1.1/examples/example.oldstyle:181:$result = PQexec($conn, "END");
libpg-perl-2.1.1/examples/example.oldstyle-182-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-186-
libpg-perl-2.1.1/examples/example.oldstyle:187:$result = PQexec($conn, "SELECT * FROM person");
libpg-perl-2.1.1/examples/example.oldstyle-188-die PQerrorMessage($conn) unless PGRES_TUPLES_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-211-    $conn = PQsetdb('', '', '', '', $dbname);
libpg-perl-2.1.1/examples/example.oldstyle:212:    $result = PQexec($conn, "NOTIFY person");
libpg-perl-2.1.1/examples/example.oldstyle-213-    PQclear($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-217-
libpg-perl-2.1.1/examples/example.oldstyle:218:$result = PQexec($conn, "LISTEN person");
libpg-perl-2.1.1/examples/example.oldstyle-219-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-231-
libpg-perl-2.1.1/examples/example.oldstyle:232:$result = PQexec($conn, "SELECT * FROM person");
libpg-perl-2.1.1/examples/example.oldstyle-233-die PQerrorMessage($conn) unless PGRES_TUPLES_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-247-
libpg-perl-2.1.1/examples/example.oldstyle:248:$result = PQexec($conn, "BEGIN");
libpg-perl-2.1.1/examples/example.oldstyle-249-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-257-
libpg-perl-2.1.1/examples/example.oldstyle:258:$result = PQexec($conn, "END");
libpg-perl-2.1.1/examples/example.oldstyle-259-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/examples/example.oldstyle-286-
libpg-perl-2.1.1/examples/example.oldstyle:287:$result = PQexec($conn, "DROP DATABASE $dbname");
libpg-perl-2.1.1/examples/example.oldstyle-288-die PQerrorMessage($conn) unless PGRES_COMMAND_OK eq PQresultStatus($result);
##############################################
libpg-perl-2.1.1/Pg.3-204-\&    $conn = PQsetdb('', '', '', '', template1);
libpg-perl-2.1.1/Pg.3:205:\&    $result = PQexec($conn, "create database pgtest");
libpg-perl-2.1.1/Pg.3-206-\&    PQclear($result);
##############################################
libpg-perl-2.1.1/Pg.3-425-.Vb 1
libpg-perl-2.1.1/Pg.3:426:\&    $result = $conn->exec($query)
libpg-perl-2.1.1/Pg.3-427-.Ve
##############################################
libpg-perl-2.1.1/debian/patches/test_table_with_oids.patch-8-@@ -159,10 +159,6 @@ for ($i = 1; $i <= 5; $i++) {
libpg-perl-2.1.1/debian/patches/test_table_with_oids.patch:9:     $result = $conn->exec("INSERT INTO person VALUES ($i, 'Edmund Mergl')");
libpg-perl-2.1.1/debian/patches/test_table_with_oids.patch-10-     die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/.pc/fix_pod.patch/Pg.pm-73-
libpg-perl-2.1.1/.pc/fix_pod.patch/Pg.pm:74:    if ($result = $conn->exec($query)) {
libpg-perl-2.1.1/.pc/fix_pod.patch/Pg.pm-75-        if (2 == ($status = $result->resultStatus)) {
##############################################
libpg-perl-2.1.1/.pc/fix_pod.patch/Pg.pm-275-
libpg-perl-2.1.1/.pc/fix_pod.patch/Pg.pm:276:    $result = $conn->exec($query)
libpg-perl-2.1.1/.pc/fix_pod.patch/Pg.pm-277-
##############################################
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-108-# do not complain when dropping $dbname
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl:109:$conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-110-
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl:111:$result = $conn->exec("CREATE DATABASE $dbname");
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-112-( PGRES_COMMAND_OK eq $result->resultStatus )
##############################################
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-158-for ($i = 1; $i <= 5; $i++) {
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl:159:    $result = $conn->exec("INSERT INTO person VALUES ($i, 'Edmund Mergl')");
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-160-    die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-271-
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl:272:$result = $conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/.pc/test_table_with_oids.patch/test.pl-273-die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-108-# do not complain when dropping $dbname
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl:109:$conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-110-
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl:111:$result = $conn->exec("CREATE DATABASE $dbname");
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-112-( PGRES_COMMAND_OK eq $result->resultStatus )
##############################################
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-158-for ($i = 1; $i <= 5; $i++) {
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl:159:    $result = $conn->exec("INSERT INTO person VALUES ($i, 'Edmund Mergl')");
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-160-    die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-267-
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl:268:$result = $conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/.pc/test_fix_endcopy.patch/test.pl-269-die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/Pg.pm-73-
libpg-perl-2.1.1/Pg.pm:74:    if ($result = $conn->exec($query)) {
libpg-perl-2.1.1/Pg.pm-75-        if (2 == ($status = $result->resultStatus)) {
##############################################
libpg-perl-2.1.1/Pg.pm-275-
libpg-perl-2.1.1/Pg.pm:276:    $result = $conn->exec($query)
libpg-perl-2.1.1/Pg.pm-277-
##############################################
libpg-perl-2.1.1/test.pl-108-# do not complain when dropping $dbname
libpg-perl-2.1.1/test.pl:109:$conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/test.pl-110-
libpg-perl-2.1.1/test.pl:111:$result = $conn->exec("CREATE DATABASE $dbname");
libpg-perl-2.1.1/test.pl-112-( PGRES_COMMAND_OK eq $result->resultStatus )
##############################################
libpg-perl-2.1.1/test.pl-158-for ($i = 1; $i <= 5; $i++) {
libpg-perl-2.1.1/test.pl:159:    $result = $conn->exec("INSERT INTO person VALUES ($i, 'Edmund Mergl')");
libpg-perl-2.1.1/test.pl-160-    die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;
##############################################
libpg-perl-2.1.1/test.pl-268-
libpg-perl-2.1.1/test.pl:269:$result = $conn->exec("DROP DATABASE $dbname");
libpg-perl-2.1.1/test.pl-270-die $conn->errorMessage unless PGRES_COMMAND_OK eq $result->resultStatus;