我自己写的聊天室源代码(一)

聊天室|源代码

/*表结构设计*/
/* Microsoft SQL Server - Scripting            */
/* Server: SQL2                    */
/* Database: chat                    */
/* Creation Date 00-4-28 12:55:20             */
/* dbo:chat*/
/* dbopassword:chat001*/
/**/
/*用户动作表*/
if exists (select * from sysobjects
        where id = object_id('dbo.user_acction_table') and
          sysstat & 0xf = 3)
    drop table dbo.user_acction_table
GO

/**/
/*用户表情表*/
if exists (select * from sysobjects
        where id = object_id('dbo.user_bq_table') and
          sysstat & 0xf = 3)
    drop table dbo.user_bq_table
GO

/**/
/*用户朋友表*/
if exists (select * from sysobjects
        where id = object_id('dbo.user_friend_table') and
          sysstat & 0xf = 3)
    drop table dbo.user_friend_table
GO

/**/
/*用户进入/退出表*/
if exists (select * from sysobjects
        where id = object_id('dbo.user_hello_table') and
          sysstat & 0xf = 3)
    drop table dbo.user_hello_table
GO

/**/
/*用户信息表*/
if exists (select * from sysobjects
        where id = object_id('dbo.user_info_table') and
          sysstat & 0xf = 3)
    drop table dbo.user_info_table
GO

/**/
CREATE TABLE dbo.user_acction_table (
    user_name char (50) NOT NULL ,        /*用户名称*/
    acction_name char (50) NOT NULL ,    /*动作代码*/
    user_acction char (200) NOT NULL     /*动作内容*/
)
GO

/**/
CREATE TABLE dbo.user_bq_table (
    user_name char (50) NOT NULL ,        /*用户名称*/
    user_bq char (50) NOT NULL         /*用户表情*/
)
GO

/**/
CREATE TABLE dbo.user_friend_table (
    user_name char (50) NOT NULL ,        /*用户名称*/
    user_friend char (50) NOT NULL         /*用户朋友名称*/
)
GO

/**/
CREATE TABLE dbo.user_hello_table (
    user_name char (50) NOT NULL ,        /*用户名称*/
    come_in char (200) NOT NULL ,        /*用户进入语*/
    go_out char (200) NULL             /*用户退出语*/
)
GO

/**/
CREATE TABLE dbo.user_info_table (
    user_name char (50) NOT NULL ,        /*用户名称*/
    user_password char (50) NOT NULL ,    /*用户口令*/
    user_sex char (50) NOT NULL ,        /*用户性别*/
    user_email char (50) NULL ,        /*用户e_mail*/
    user_quesstion char (50) NULL ,        /*提示问题*/
    user_answer char (50) NULL ,        /*答案*/
    user_ip char (20) NOT NULL ,        /*用户IP*/
    user_flag int NOT NULL             /*用户权限0超级用户,*/
                        /*1普通管理员*/

时间: 2024-10-30 20:20:55

我自己写的聊天室源代码(一)的相关文章

我自己写的聊天室源代码(十

聊天室|源代码                 for i = 1 to my_point                    if i = my_point then                        session("ss_oldpoint") = my_point - 1                        if session("ss_oldpoint") < 1 then                            

我自己写的聊天室源代码(前言)

聊天室|源代码 1.本系统完全基于ASP开发,使用application,session2.要求浏览器支持cookie3.系统数据源明:chat4.本系统有以下BUG:(1)不能支持使用:"(2)大量说话时,有可能造成某次不能浏览(3)我实在太懒了^O^5.剩下的都是

我自己写的聊天室源代码(七)

聊天室|源代码 *****************************聊天处理******************************<%'chatadmin.asp%><%response.buffer = true%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title

我自己写的聊天室源代码(八)

聊天室|源代码 ************************不能进入聊天室*************************<%'nochat.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>不能进入聊天室</title><meta name=&qu

我自己写的聊天室源代码(九)

聊天室|源代码 *************************表情设置**************************<%'optionbq.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>表情设置</title><meta name="

我自己写的聊天室源代码(六)

聊天室|源代码 *************************用户自杀*************************<%'deleteuser.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>用户自杀</title><meta name=&quo

我自己写的聊天室源代码(四)

聊天室|源代码 *********************用户注册***************************************<%'用户注册,userinsert.asp%><%response.buffer = true%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312">&l

我自己写的聊天室源代码(三)

聊天室|源代码 1.用户信息管理用于层次标识无意义<%'useradmin.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><title>用户信息管理</title><meta name="GENERATOR" content="Micr

我自己写的聊天室源代码(二)

聊天室|源代码 <%'初始登录页,default.asp%><html> <head><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><meta name="GENERATOR" content="Microsoft FrontPage 3.0"><title>登录聊天