473,503 Members | 2,105 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

how to get result set from calling procedure?

Hi,all
I am using Mysql 5.0 But I get an error message for calling procedure
with mysql_query().
My program is shown below:
Thank & Regard.
Gary.

#define W32_LEAN_AND_MEAN
#include <windows.h>
#include <mysql.h>
#include <stdio.h>
#include <string>

int main(int argc, char** argv)
{
MYSQL* sqlid = mysql_init(0);
if (!mysql_real_connect(sqlid, "localhost", "test", "test", "test", 0,
0, CLIENT_MULTI_STATEMENTS)) {
printf("%s\n", mysql_error(sqlid));
mysql_close(sqlid);
return -1;
}
sqlid->reconnect = 1;
std::string proc = "call pro_ins_department(10, 'test',
'testprocedure')";
if (0 != mysql_query(sqlid, proc.c_str())) {
printf("operator failed:%d %s\n", mysql_errno(sqlid),
mysql_error(sqlid));
} else {
MYSQL_RES * rs = mysql_store_result (sqlid);
MYSQL_ROW row = mysql_fetch_row(rs);
unsigned __int64 id = (unsigned __int64)atoi(row[0]);
printf("get id:id=%d\n", id);
}
mysql_close(sqlid);
return 0;
}

Aug 15 '06 #1
2 5923
Gary li wrote:
Hi,all
I am using Mysql 5.0 But I get an error message for calling procedure
with mysql_query().
My program is shown below:
Thank & Regard.
Gary.

#define W32_LEAN_AND_MEAN
#include <windows.h>
#include <mysql.h>
#include <stdio.h>
#include <string>

int main(int argc, char** argv)
{
MYSQL* sqlid = mysql_init(0);
if (!mysql_real_connect(sqlid, "localhost", "test", "test", "test", 0,
0, CLIENT_MULTI_STATEMENTS)) {
printf("%s\n", mysql_error(sqlid));
mysql_close(sqlid);
return -1;
}
sqlid->reconnect = 1;
std::string proc = "call pro_ins_department(10, 'test',
'testprocedure')";
if (0 != mysql_query(sqlid, proc.c_str())) {
printf("operator failed:%d %s\n", mysql_errno(sqlid),
mysql_error(sqlid));
} else {
MYSQL_RES * rs = mysql_store_result (sqlid);
MYSQL_ROW row = mysql_fetch_row(rs);
unsigned __int64 id = (unsigned __int64)atoi(row[0]);
printf("get id:id=%d\n", id);
}
mysql_close(sqlid);
return 0;
}
you have to make sure that you the username you're using has execute
privileges on that stored procedure in the database you're connecting
to. otherwise, it looks ok to me.
Aug 15 '06 #2
But It's still the same error for using root username.

lark 写道:
Gary li wrote:
Hi,all
I am using Mysql 5.0 But I get an error message for calling procedure
with mysql_query().
My program is shown below:
Thank & Regard.
Gary.

#define W32_LEAN_AND_MEAN
#include <windows.h>
#include <mysql.h>
#include <stdio.h>
#include <string>

int main(int argc, char** argv)
{
MYSQL* sqlid = mysql_init(0);
if (!mysql_real_connect(sqlid, "localhost", "test", "test", "test", 0,
0, CLIENT_MULTI_STATEMENTS)) {
printf("%s\n", mysql_error(sqlid));
mysql_close(sqlid);
return -1;
}
sqlid->reconnect = 1;
std::string proc = "call pro_ins_department(10, 'test',
'testprocedure')";
if (0 != mysql_query(sqlid, proc.c_str())) {
printf("operator failed:%d %s\n", mysql_errno(sqlid),
mysql_error(sqlid));
} else {
MYSQL_RES * rs = mysql_store_result (sqlid);
MYSQL_ROW row = mysql_fetch_row(rs);
unsigned __int64 id = (unsigned __int64)atoi(row[0]);
printf("get id:id=%d\n", id);
}
mysql_close(sqlid);
return 0;
}
you have to make sure that you the username you're using has execute
privileges on that stored procedure in the database you're connecting
to. otherwise, it looks ok to me.
Aug 15 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
5538
by: Robin Tucker | last post by:
Hi, I have one stored procedure that calls another ( EXEC proc_abcd ). I would like to return a result set (a temporary table I have created in the procedure proc_abcd) to the calling procedure...
5
6779
by: adolf garlic | last post by:
Im trying to return xml from sql. The xml is made up of different fragments, some using FOR XML ... syntax. The result is a valid xml doc. There is a working stored proc that returns the xml In...
5
5138
by: Raquel | last post by:
This is a very simple DB2 SQLJ stored procedure. The problem is that it seems to run fine but returns NOTHING. I mean..as if nothing has happened..not resultset is returned. I am passing value...
5
8661
by: Stanley Sinclair | last post by:
I have a need to return multiple result sets from a stored procedure. Want that SP to call others to get the data. Win2003, db2 8.1.5. Can't figure out how to handle open cursors, and return...
0
2513
by: Randy Foster | last post by:
We have a stored procedure (on DB2 8.1 FP5) that returns multiple result sets which we are calling from Java (WebSphere 5.0.2.8). We can call the stored procedure from the DB2 command line...
1
1542
by: db2sysc | last post by:
All: I am writing a MAIN CALLING PROCEDURE. This call lot of procedures. Some of the CALLED PROCEDURES end with an OPEN C1 (cursor). How to I read this open cursor in my main procedure?? In java...
30
2240
by: Tim Marshall | last post by:
Here's the scenario, A2003, Jet back end, illustrated with some cut down code at the end of the post: A proc dims a snapshot recordset (dim rst as Dao.recordset) and opens it. There are several...
2
3381
by: orencs | last post by:
Hi, I am using Datareader and stored procedure in C# ADO.NET. When I am running the stored procedure in the SQL Query Analyzer and recieve two rows (as I hace expected) col1 col2 0 1 0 ...
0
1212
by: David Greenberg | last post by:
Hello I'm calling a stored procedure in VB6 using the "execute" command of rdoquery. Does anyone know how to check whether or not the execute command was succesfull or not. Not on the level of...
0
7205
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7093
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7467
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
5592
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development projectplanning, coding, testing,...
0
4685
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3175
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3166
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1519
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
397
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.