Re: Strange behavior by MySQL Stored Procedure

2010-06-07 Thread Manasi Save
Does anyone have any sort of any idea on how to deal with this problem? This is happening again and again and not all the time but randomly anytime.--Regards,Manasi Save  On Wed, 02 Jun 2010 06:46:56 -0400, Manasi Save wrote: Dear Venugopal, Here's the Sample Java Code Which Calls stored procedur

Re: Strange behavior by MySQL Stored Procedure

2010-06-02 Thread Manasi Save
Dear Venugopal, Here's the Sample Java Code Which Calls stored procedure :-  //get the connection to databaseConnection dbConnection = getConnection(); //create the call for procedureString procedureCallStmtStr = "Call XYZ()"; //create callable statement objectCallableStatement cs = conn.prepareCal

Re: Strange behavior by MySQL Stored Procedure

2010-05-31 Thread Venugopal Rao
: Strange behavior by MySQL Stored Procedure To: mysql@lists.mysql.com Date: Friday, 28 May, 2010, 5:44 PM Dear All,   I have one stored procedure Which inserts data into one table.   But sometimes it does not insert record. This happens when I called it from java application. But If I called same

Re: Strange behavior by MySQL Stored Procedure

2010-05-31 Thread Manasi Save
mysql Version :- 5.1.42-community-log mysql Connector/J Version :-  mysql-connector-java-5.1.6-bin.jar   Sample Java Code Which Calls stored procedure :-    //get the connection to database Connection dbConnection = getConnection();   //create the call for procedure String procedureCallStmtStr =

Re: Strange behavior by MySQL Stored Procedure

2010-05-28 Thread Anirudh Sundar
Hello Manasi, If possible can you please send in the code that you mentioned (procedure or trigger). Please give a detailed technical explanation explaining the query which you used from command line and the query used in the procedure. Please mention the table structure, show table status and fe

Re: Strange behavior by MySQL Stored Procedure

2010-05-28 Thread Mattia Merzi
2010/5/28 Manasi Save : [...] > Or am I doing something wrong? probably; you better send us another e-mail writing at least: - mysql version you are using - mysql Connector/J version you are using - piece of java code you are using to call the stored procedure - source of the stored procedure (or

Strange behavior by MySQL Stored Procedure

2010-05-28 Thread Manasi Save
Dear All,   I have one stored procedure Which inserts data into one table.   But sometimes it does not insert record. This happens when I called it from java application. But If I called same query from mysql command line. It executes successfully.   Also I have one procedure which only retrieves d