无刷新聊天室(短信陪聊程序) - 用户UI用存储过程写的聊天室程序 - 业务逻辑$cut$
/****** Object: Stored Procedure dbo.chat Script Date: 2004-10-8 11:15:11 ******/
CREATE proc (dbo).(chat)
--chat '13588144652','MY','278810','571','1'
@phone nvarchar(11),
@Content nvarchar(512),
@srcPhone nvarchar(20), --端口
@Province nvarchar(20), --省份
@debug int, --调试
@LinkID nvarchar(20)='0'
as
declare
@msgBody nvarchar(512), --发送消息
@roomid int, --房间ID
@roomname nvarchar(20), --房间名称
@online int, --在线人数
@state int, --用户状态
@userid int, --用户ID
@nickname nvarchar(20), --用户昵称
@tonickname nvarchar(20), --对方昵称
@sex nvarchar(2), --性别
@chat bit, --是否接受群聊
@clew nvarchar(512), --提示语
@tophone nvarchar(11), --接收号码
@welcome nvarchar(512), --欢迎词
@FeeCode int,
@FeeType int,
@FeeSevID nvarchar(20),
@MtTemp int
--错误检查
if @Content = '' or @Content is null or len(@phone)<>11 begin
return
end
回复:用存储过程写的聊天室程序 2004-10-07 8:20 AM 小灰
让各位见笑了,用企业管理器写的。猜到是做什么的了吗?呵呵,短信聊天室
当前评分 2.8 , 共有 33 人参与
- Currently 2.757576/5 Stars.
- 1
- 2
- 3
- 4
- 5