本文介绍了检查是否在mysql表中插入了一行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 大家好, 我正在用php开发一个聊天系统。因此,每当用户向另一个用户发送消息时,接收用户的聊天框应该刷新。我已经在mysql表中存储了消息。因此,只要在表中插入一条记录,我就应该重新加载聊天框。这该怎么做?我可以使用触发器吗?Hi all, I am developing a chat system in php. So whenever user sends message to another user the receiving user''s chatbox should get refreshed. I have stored messages in mysql table. So whenever one record get inserted in table i should reload the chatbox. How to do this? Can i use trigger for this?推荐答案ALTER PROCEDURE dbo.postcomments_sp_global@aaa,@output varchar(50) output // output variableASbegin tryinsert into tablename(col1)values(@aaa)set @output='Record inserted successfully... Thank you..'print @outputend trybegin catchset @output=(select error_message() as err)//error messageend catch 这篇关于检查是否在mysql表中插入了一行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-24 04:26