Jump to content

PHP Mysql procedure works after 4 tries


Andural69

Recommended Posts

1st -Wasn't positive if this is the right subforum to post a mysql\php combo problem, but since it seems to be on the PHP end, I went with it.

 

using SQLyog Enterprise for windows

 

 

I've created small procedures, tested, worked fine.  I then created a big stored proc in mysql, one that inserts into the main table but also links over to like 7 or so other tables.  So this procedure checks for existing, inserts if needed and grabs the ids of several records.  Then inserts into the main table.  I run this proc from SQLyog over and over, np, works great.  Now, I run mysql code and for some wacked out reason, it works on the 4th attempt, every time.  click, nothing, click nothing, click nothing, click, it works, and I can only guess at some sort of timeout or connection problem.

 

So, any suggestions on what is causing this or how to go about debugging this?  I've checked the variables I'm sending it, that all appears to be fine.  I'm also just clicking the back button then my submit button when doing it, so it's the same data on the 4th attempt.

 

 

If needed, the procedure is around 200 lines long, including the in parameters and everything in there.  Most of the calls prior to the big insert are like the following

 

 

set @refereeid := 0;

 

select @refereeid := Referee_id

FROM Referee_t

where LName = _RefereeLName

and FName = _RefereeFName;

 

if (@refereeid = 0) then

insert into Referee_t

values(0, _RefereeLName, _RefereeFName);

 

select @refereeid := LAST_INSERT_ID();

end if;

 

 

I'm going to go to bed soon since I'm running out of ideas.  Any help would be appreciated.  ty.

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.