Jump to content

Don’t know how to get values from stored procedure


narutofan

Recommended Posts

If you are still determined to use a single stored procedure then you need a single query, therefore use a union. Note that I had to rearrange the order of your column selections in each part so that like types were in the same columns 

stored procedure...

CREATE PROCEDURE `timeline`(
		IN `friend` varchar(255), 
		IN `session_id` varchar(255)
		)
BEGIN
SELECT * 
FROM (
      SELECT
      'U' as source
      , update_id as up1              
      , account_name as acc           
      , user_id_u as uid              
      , author as auth                
      , type
      , time                          
      , title as tit1                 
      , update_body as u_body         
	  FROM updates as up                    
	  WHERE author IN (friend,session_id)
	  LIMIT 5
	  ) a   
UNION
SELECT * 
FROM (
      SELECT
      'GP' as source
      , gp_id
      , gname 
      , author_id
      , author_gp
      , type
      , pdate
      , title
      , data
	  FROM group_posts as gp 
	  WHERE author_gp IN (friend,session_id)
      LIMIT 5
      ) b
ORDER BY time DESC;
END

 To use

$res = $db->query("CALL timeline($friend, $session_id)");
while ($row = $res->fetch_assoc()) {
    // process row
}

 

Link to comment
Share on other sites

following @Barand advice i wrote a new function to test in but now the new problem is it brings only updates table result and not group_posts result.

here is the new function:

function totalprocedures($conn,$friend)
{
    try{
  $sql=
"select * FROM updates where `author`  ='".$friend."'   order by time desc limit 1 ;";
    

$sql.="select * FROM group_posts where `author_gp` ='".$friend."' order by pdate desc limit 1";
 
   
  $stmt=$conn->query($sql);
 // $row=$stmt->nextRowset();
 //$rows= $row->fetchAll(PDO::FETCH_BOTH);
 while($rows=$stmt->fetch()){
  return $rows;
  }
 
    } 
    catch (PDOException $e)
    {
        echo $e->getMessage();
    }
  };

i get the following result:

array(26) {
  ["update_id"]=>
  string(3) "302"
  [0]=>
  string(3) "302"
  ["update_body"]=>
  string(36) "Just type and press the post button."
  [1]=>
  string(36) "Just type and press the post button."
  ["url"]=>
  string(0) ""
  [2]=>
  string(0) ""
  ["time"]=>
  string(19) "2016-12-05 07:21:04"
  [3]=>
  string(19) "2016-12-05 07:21:04"
  ["host"]=>
  string(0) ""
  [4]=>
  string(0) ""
  ["vote_up"]=>
  string(1) "1"
  [5]=>
  string(1) "1"
  ["vote_down"]=>
  string(1) "0"
  [6]=>
  string(1) "0"
  ["title"]=>
  string(22) "You know how it works."
  [7]=>
  string(22) "You know how it works."
  ["user_id_u"]=>
  string(3) "173"
  [8]=>
  string(3) "173"
  ["account_name"]=>
  string(9) "wolverine"
  [9]=>
  string(9) "wolverine"
  ["author"]=>
  string(9) "wolverine"
  [10]=>
  string(9) "wolverine"
  ["type"]=>
  string(1) "a"
  [11]=>
  string(1) "a"
  ["data"]=>
  string(0) ""
  [12]=>
  string(0) ""
}

(still don't know what he meant by normal queries)

Link to comment
Share on other sites

40 minutes ago, Barand said:
On 1/13/2020 at 2:51 AM, Barand said:

That's because, by default, MySQL will not run multiple queries.

 

then how come these ppl can run multiple normal queries and get results pl check this stackoverflow page for my confusion and advice on the same as a gut feeling i know that there is a way out there to produce both the tables result.

Edited by narutofan
Link to comment
Share on other sites

On 1/12/2020 at 9:21 PM, Barand said:

That's because, by default, MySQL will not run multiple queries. You can turn on multiple client queries but that will probably give you even more problems.

Perhaps you should also have read the rest of that reply.

P.S.

+-----------------------------------------------------------------------------+
|                                Multiple queries                             |
+----------------------------------------+------------------------------------+
|              CONS                      |               PROS                 |
+----------------------------------------+------------------------------------+
|                                        |                                    |
|   1 - more complicated to use          |                                    |
|                                        |        Can't think of any          |
|   2 - they open wide the door to some  |      significant advantages        |
|       seriously catastrophic hacks     |                                    |
|                                        |                                    |
+----------------------------------------+------------------------------------+

 

Edited by Barand
Link to comment
Share on other sites

finally i got the output to separate both the tables results:

sample output:

Array
(
    [0] => Array
        (
            [0] => Array
                (
                    [update_id] => 396
                    [0] => 396
                    [update_body] => <div>Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. Morbi ac felis.</div>
<div>&nbsp;</div>
<div>Etiam sit amet orci eget eros faucibus tincidunt. Pellentesque commodo eros a enim.</div>
<div>&nbsp;</div>
<div>Cras ultricies mi eu turpis hendrerit fringilla. Cras id dui.<a class="btn btn-link" href="hash_sys.php?tag=bart"> !bart </a></div>
                    [1] => <div>Praesent porttitor, nulla vitae posuere iaculis, arcu nisl dignissim dolor, a pretium mi sem ut ipsum. Morbi ac felis.</div>
<div>&nbsp;</div>
<div>Etiam sit amet orci eget eros faucibus tincidunt. Pellentesque commodo eros a enim.</div>
<div>&nbsp;</div>
<div>Cras ultricies mi eu turpis hendrerit fringilla. Cras id dui.<a class="btn btn-link" href="hash_sys.php?tag=bart"> !bart </a></div>
                    [url] => 
                    [2] => 
                    [time] => 2019-12-23 13:20:47
                    [3] => 2019-12-23 13:20:47
                    [host] => 
                    [4] => 
                    [vote_up] => 0
                    [5] => 0
                    [vote_down] => 0
                    [6] => 0
                    [title] => 1```---
                    [7] => 1```---
                    [user_id_u] => 142
                    [8] => 142
                    [account_name] => aboutthecreator
                    [9] => aboutthecreator
                    [author] => aboutthecreator
                    [10] => aboutthecreator
                    [type] => a
                    [11] => a
                    [data] => 
                    [12] => 
                )

        )

    [1] => Array
        (
            [0] => Array
                (
                    [gp_id] => 104
                    [0] => 104
                    [pid] => 0
                    [1] => 0
                    [gname] => MEP news
                    [2] => MEP news
                    [author_gp] => aboutthecreator
                    [3] => aboutthecreator
                    [type] => 0
                    [4] => 0
                    [title] =>  3 Etiam feugiat lorem non metusIn consectetuer turpis ut velit
                    [5] =>  3 Etiam feugiat lorem non metusIn consectetuer turpis ut velit
                    [data] => <div>Etiam iaculis nunc ac metus. !qwerty bPraesent egestas tristique nibh.</div><div><br></div><div>Fusce ac felis sit amet ligula pharetra condimentum. Integer ante arcu, !bart accumsan a, consectetuer eget, posuere ut, mauris.</div><div><br></div><div>Proin viverra, ligula sit amet ultrices semper, ligula arcu tristique sapien, a accumsan nisi mauris ac eros. Sed in libero ut nibh placerat accumsan.</div><div><br></div><div>Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi. Sed a libero.</div>
                    [6] => <div>Etiam iaculis nunc ac metus. !qwerty bPraesent egestas tristique nibh.</div><div><br></div><div>Fusce ac felis sit amet ligula pharetra condimentum. Integer ante arcu, !bart accumsan a, consectetuer eget, posuere ut, mauris.</div><div><br></div><div>Proin viverra, ligula sit amet ultrices semper, ligula arcu tristique sapien, a accumsan nisi mauris ac eros. Sed in libero ut nibh placerat accumsan.</div><div><br></div><div>Phasellus leo dolor, tempus non, auctor et, hendrerit quis, nisi. Sed a libero.</div>
                    [pdate] => 2019-12-19 22:29:42
                    [7] => 2019-12-19 22:29:42
                    [vote_up] => 0
                    [8] => 0
                    [vote_down] => 0
                    [9] => 0
                    [group_id] => 25
                    [10] => 25
                    [author_id] => 142
                    [11] => 142
                )

        )

)

code that i tried is to separate the queries in a array and call it inside a function and returned the results in an array like this, Hope it might help someone in the future:

 

function totalprocedures($conn,$v)
{
    
        try {
      $sqlArray= array(
 
     array(
         "query"=> "select * FROM updates where `author`  =?   order by time desc limit 1 ",
          "bindvalue"=> array($v)
         ),
        array(
         "query"=>"select * FROM group_posts where `author_gp` =? order by pdate desc limit 1",
         "bindvalue"=>array($v)
         
         
     )
     );
     
    

do
{
   $stmt=$conn->prepare($sqlArray[0]["query"]);
           $stmt->execute($sqlArray[0]['bindvalue']);
        
           $rows=$stmt->fetchAll();  

    
} while($stmt->nextRowset());        
            

   
        
        
           do
        {
           $stmt1=$conn->prepare($sqlArray[1]["query"]);
           $stmt1->execute($sqlArray[1]['bindvalue']);
           $rows1=$stmt1->fetchAll();
           return array($rows,$rows1);
        }while($stmt1->nextRowset());
       
       }   catch (Exception $exc) {
            echo $exc->getMessage();
        }      
        } 

@Barand and @all thanks for your help , pl forgive me if i looked ignorant

Link to comment
Share on other sites

As I said, you can not execute queries like this ...

$sql =  "select * FROM updates where `author`  ='".$friend."'   order by time desc limit 1 ;";
$sql .= "select * FROM group_posts where `author_gp` ='".$friend."' order by pdate desc limit 1";

… where you are attempting to put multiple queries in a single string.

However I was wrong regarding the stored procedure, for which I apologise. After further experimentation, I have found that several queries inside a procedure will work...

CREATE PROCEDURE `timeline`(
            IN theauthor VARCHAR(255)
            )
BEGIN
    SELECT
        update_id              
      , account_name           
      , user_id_u            
      , author           
      , type
      , time                          
      , title               
      , update_body  
    FROM updates                    
    WHERE author = theauthor
    LIMIT 5;

    SELECT
        gp_id
      , gname 
      , author_id
      , author_gp
      , type
      , pdate
      , title
      , data
      FROM group_posts 
      WHERE author_gp = theauthor
      LIMIT 5;
END

To process  (PDO) ...

$results = $db->query("CALL timeline($friend)");
do {
    $timeline_data[] = $results->fetchAll();
} while ($results->nextRowset());

//view results
echo '<pre>', print_r($timeline_data, 1), '</pre>';

 

Alternatively, there is the function you last posted (rewritten)

function totalprocedures($conn,$v)
{
    $results = [];
    
    $sqlArray = [

        [
             "query"     => "SELECT * FROM updates WHERE `author` = ? ORDER BY time DESC LIMIT 1 ",
             "bindvalue" => [$v]
        ],
        [
             "query"     =>"SELECT * FROM group_posts WHERE `author_gp` = ? ORDER BY pdate DESC LIMIT 1",
             "bindvalue" => [$v]
        ]
    ];

    foreach ($sqlArray as $qry) {
        $stmt=$conn->prepare($qry["query"]);
        $stmt->execute($qry['bindvalue']);
        $results[] = $stmt->fetchAll();
    }
    return $results;   
} 

 

Link to comment
Share on other sites

On 1/15/2020 at 3:46 PM, Barand said:

I apologise.

@Barandno need to apologise ,everybody make mistakes.

i have tweaked the query & code to prevent repeated values from populating the timeline for some silly mistake that i made its not working and i couldn't figure it out.

here is the code:



function totalprocedures($conn, $v, $update_id1, $gp_id1) {
    foreach ($update_id1 as $v1) {


        $unique_up = array_unique($v1);
        $implode1 = implode(",", $unique_up);
    }

    foreach ($gp_id1 as $j => $v2) {



        $unique_gp = array_unique($v2);
        $implode2 = implode(",", $unique_gp);
    }

    foreach ($v as $i) {

        $implode_v = "'" . implode("','", $v) . "'";
    }
//return print_r($implode_v);echo '<implode1:-> ';print_r($implode1);echo 'implode2:-';print_r($implode2);
    $imp1 = implode(',', array_fill(1, count($v), '?'));
    $imp2 = implode(',', array_fill(1, count($v), '?'));
    $imp_u = implode(',', array_fill(1, count($v1), '?'));
    $imp_g = implode(',', array_fill(1, count($v2), '?'));
    $sqlArray = array(
        array(
            "query" => "select * FROM updates where `author`  in({$imp1})  and update_id not in ({$imp_u}) order by time desc limit 1 ",
            "bindvalue" => $implode_v,
            "stopvalue" => $implode1
        ),
        array(
            "query" => "select * FROM group_posts where `author_gp` in({$imp2}) and gp_id not in({$imp_g}) order by pdate desc limit 1",
            "bindvalue" => $implode_v,
            "stopvalue" => $implode2
        )
    );



    do {
        try {
            $stmt = $conn->prepare($sqlArray[0]["query"]);
            $stmt1 = $conn->prepare($sqlArray[1]["query"]);

            $stmt->execute([$sqlArray[0]['bindvalue'], $sqlArray[0]['stopvalue']]);
            $rows = $stmt->fetchAll();

            $stmt1->execute([$sqlArray[0]['bindvalue'], $sqlArray[0]['stopvalue']]);
            $rows1 = $stmt1->fetchAll();
             return print_r($sqlArray);

            return print_r([$rows, $rows1]);
        } catch (Exception $exc) {
            echo $exc->getMessage();
        }
    } while ($stmt->nextRowset() && $stmt1->nextRowset());
}

The $sqlArray prints like this:

Array ( 
[0] => Array (
[query] => select * FROM updates where `author` in(?,?,?,?) and update_id not in (?,?,?,?,?) order by time desc limit 1
[bindvalue] => 'wolverine','aboutthecreator','jayson','shan2batman'
[stopvalue] => 302,396,307,386, ) 
[1] => Array ( 
[query] => select * FROM group_posts where `author_gp` in(?,?,?,?) and gp_id not in(?,?,?) order by pdate desc limit 1 
[bindvalue] => 'wolverine','aboutthecreator','jayson','shan2batman'
[stopvalue] => 104,91, ) 

And i get an empty array like this if i run the function:

Array ( [0] => Array ( ) [1] => Array ( ) )

 

Link to comment
Share on other sites

You need to end up with something like

$stmt->execute( [ 'wolverine', 'aboutthecreator', 'jayson', 'shan2batman', 104, 91, 123 ] );

so if $bindvalue and $stopvalue are both arrays then you can merge them.

$stmt->execute( array_merge($bindvalue, $stopvalue) );

Make sure the number of values in the array matches the number of "?" in the query.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.