MySQL query working directly but not through .NET connection

2009-07-25 Thread John Meyer
Here's the query: INSERT INTO USERS(USER_ID,USER_NAME,USER_SCREENNAME,USER_DESCRIPTION,USER_FOLLOWERS,USER_IMAGE,USER_FRIENDS,USER_LOCATION,USER_CREATEDAT) VALUES('31264066','Justin Wienkers','BabyVegaz','I’m your secondhand news/yeah. That and an (aspiring) screenwriter, trained journalist,

Re: Why doesn't mySQL stop a query when the browser tab is closedL

2009-07-25 Thread Eric Bergen
PHP will notice if the browser has disconnected when it tries to write data. If it detects the browser has disconnected it will stop script execution. You can control what php should do in the event of a disconnect with the ignore_user_abort() function. See the connection handling page for more