New to mysqli library - Multiple query problem
Posted on
16th Feb 2014 07:03 pm by
admin
Greetings,
I am writing a batch program that executes 3 queries on a single page. Using mysql libraries and regular queries works just fine. I am rewriting the page to include a stored procedure. The first query gets several thousand rows from a table, the second query calls a stored procedure which returns a resultset and the third query updates the table with the results from the stored procedure. Queries 2 & 3 are inside a while loop and execute once for every record from query 1.
Here is my connection string to the database:
$connect = mysqli_connect("localhost", "username", "password","database") or
die ("The database is unavailable. Please try again later.");
Query 1 = $results = mysqli_query($connect,$query)
Query 2 = $results1 = mysqli_query($connect,$query1);
Query 3 = $results2 = mysqli_query($connect,$query2);
$query = Select * from table
$query1 = Call stored Procedure
$query2 = Update table set ...
The above fails with this error message:
Warning: mysqli_fetch_row() expects parameter 1 to be mysqli_result, boolean given in pagename on line 103
If I create 3 connection variables everything works as expected.
$connect = mysqli_connect("localhost", "username", "password","database") or
die ("The database is unavailable. Please try again later.");
$connect1 = mysqli_connect("localhost", "username", "password","database") or
die ("The database is unavailable. Please try again later.");
$connect2 = mysqli_connect("localhost", "username", "password","database") or
die ("The database is unavailable. Please try again later.");
Is there a way to accomplish what I am trying to do without creating 3 identical connections to the database?
I am a noob to this so go easy on my coding practices. This code actually processes 40+ records per second on an old Dell laptop
No comments posted yet
Your Answer:
Login to answer
205
15
Other forums
Pls help with PHP
Pls can anyone direct me on how to create a user account for a customer. For example i want know if
Track downloads' status
Hello,
I need to make somehow, some system, to track whether downloads are completed or faile
Fatal error: Call to a member function fetchrow() on a non-object in C:xamppht
okay i have this query and everytime i add `item_id`=? to it... it gives me the error in the title..
ECC6 - Single sign-on
We are in the process of upgrading to ECC 6 which will support single sign on with user passwords al
Need help-Error istream header declaration
Hi Everyone ,
I am having issue with istream declaration. I am new to C programming.
can a
SCO Unix
I know this might not be the place to ask, but, can anyone tell me if SCO Unix comes with PHP built
Sending an SMS Message with ASP.NET
Often times it may be a requirement for your web application to send an SMS message. Such examples w
Most basic form question ever?
Hello,
I want to use this snippet to make sure the fields in a form are ok before processing
Simple Variable Question
Hi everyone.... again,
I am really getting into php still. Learning more every day. I love it
Comment Mod System Effects all rows...
Sorry if its confusing but here is whats going on: I have a table in a database called comments and