BBS论坛 论文 BBS论坛 论文 BBS论坛 论文 BBS论坛 论文 BBS论坛 论文 BBS论坛 论文
2022-03-15 22:59:01 578KB BBS论文
1
三层架构的BBS论坛代码,含有数据库.完全实现了BBS的功能
2022-03-14 20:58:38 1.31MB ASP SQL 代码 数据库
1
基于javaweb的bbs论坛,数据库mysQL,tomcat7,
2022-03-06 21:41:42 4.7MB javaweb论坛
1
Jokul Forum 是 ASP.Net 论坛中的新成员,致力于为您打造基于Windows平台最优秀的论坛产品。 Jokul Forum 是一款采用ASP.Net(MVC)与Microsoft SQL Server构建的高效论坛解决方案,可以帮助您轻松搭建并管理论坛。 Jokul Forum 社区论坛软件 vv1.5.5234.2更新
2022-03-02 17:49:10 2.84MB php社区论坛源码 JokulForum BBS 论坛源码
1
这是我们软件工程大作业,我做的一个BBS论坛,是用html+div+mysql+javascript做的,下载后,将文件FD_BBS直接放到wamp的www文件夹下面就可以直接运行了,不过我的端口是81,如果遇到端口不对的地方,自己改一下就行了,还有就是里面我还将我自己的数据库导出来了,后缀为.sql的即为导出来的,弄好后你可以导入到mysql里面试试,这个仅仅是个模板,界面做的感觉还是不错的,里面具备了一般的论坛所拥有的所有的东西,可以供大家学习,另外还加入了自己的一些元素,尤其是换头像的那一个。希望对大家有帮助,分值设定的5分,虽然有点高,但是我觉得很值,如果大家有什么不懂得,可以给我留言
2022-03-01 12:11:57 10.25MB BBS 论坛
1
BBS论坛管理系统 毕业论文 ASP.NET C# 毕业设计作品。
2022-02-28 16:12:23 1.53MB BBS论坛管理系统 毕业论文 ASP.NET C#
1
数据库创建代码: 1:用户表:(users) userid(主键),username(用户名),password(密码),sex(性别),head(头像),regdate(注册日期) 2:类别表:(types) tid(主键),type 3:技术表:(technic) teid(主键),tename(技术名),tsum(拥有帖子数量),tid(引用类别表主键) 4:帖子表:(card) cid(主键),title(标题),content(内容),outtime(发帖时间),uptime(修改帖子的时间),csum(回帖数量),tename(属于哪个技术), userid(引用用户表外键) 5:回帖表:(restore) rid(主键),rtitle(标题),rcontent(内容),routtime(发帖时间),ruptime(修改帖子的时间),tename(属于哪个技术), userid(引用用户表外键),cid(引用帖子表主键) --用户表:(users) -- Create table create table USERS ( USERID INTEGER not null, USERNAME VARCHAR2(20) not null, PASSWORD VARCHAR2(20) not null, SEX VARCHAR2(20) not null, HEAD VARCHAR2(20) not null, REGDATE DATE not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table USERS add constraint PK_USERID primary key (USERID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); --类别表:(types) -- Create table create table TYPES ( TID INTEGER not null, TYPE VARCHAR2(20) not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table TYPES add constraint PK_TID primary key (TID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); --技术表:(technic) -- Create table create table TECHNIC ( TEID INTEGER not null, TENAME VARCHAR2(20) not null, TSUM INTEGER not null, TID INTEGER not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table TECHNIC add constraint PK_TEID primary key (TEID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table TECHNIC add constraint FK_TID foreign key (TID) references TYPES (TID); --帖子表:(card) -- Create table create table CARD ( CID INTEGER not null, TITLE VARCHAR2(20) not null, CONTENT VARCHAR2(100) not null, OUTTIME DATE not null, UPTIME DATE not null, CSUM INTEGER not null, TENAME VARCHAR2(20) not null, USERID INTEGER ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table CARD add constraint PK_CID primary key (CID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table CARD add constraint FK_USERID foreign key (USERID) references USERS (USERID); --回帖表:(restore) -- Create table create table RESTORE ( RID INTEGER not null, RTITLE VARCHAR2(20) not null, RCONTENT VARCHAR2(100) not null, ROUTTIME DATE not null, RUPTIME DATE not null, TENAME VARCHAR2(20) not null, USERID INTEGER not null, CID INTEGER not null ) tablespace SYSTEM pctfree 10 pctused 40 initrans 1 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); -- Create/Recreate primary, unique and foreign key constraints alter table RESTORE add constraint PK_RID primary key (RID) using index tablespace SYSTEM pctfree 10 initrans 2 maxtrans 255 storage ( initial 64K minextents 1 maxextents unlimited ); alter table RESTORE add constraint FK_CID foreign key (CID) references CARD (CID); alter table RESTORE add constraint FK_UID foreign key (USERID) references USERS (USERID); --序列号 -- Create sequence create sequence SEQ_CID minvalue 1 maxvalue 9999999999 start with 1 increment by 1 cache 20 order; --seq_userid -- Create sequence create sequence SEQ_USERID minvalue 1 maxvalue 9999991 start with 1 increment by 1 cache 20 order; --seq_tid -- Create sequence create sequence SEQ_TID minvalue 1 maxvalue 99999 start with 1 increment by 1 cache 20 order; --seq_teid -- Create sequence create sequence SEQ_TEID minvalue 1 maxvalue 999999 start with 1 increment by 1 cache 20 order; --seq_rid -- Create sequence create sequence SEQ_RID minvalue 1 maxvalue 99999 start with 1 increment by 1 cache 20 order;
2022-02-24 09:47:45 1.22MB bbs论坛
1
今年刚做的毕业设计,已经把bbs的基本功能全部实现,只要你按照说明来导入文件,运行绝对没问题,页面也做的很人性化,希望能够给你帮助!jsp页面,需要装入MySql,myeclipse5.5开发工具!数据库文件自己导入!
2022-02-17 11:41:53 3.08MB java jsp bbs 毕业设计
1
用三层架构写的一个BBS论坛系统,包括数据库的
2022-02-09 09:58:07 302KB 三层架构 BBS
1
非常完整的论坛设计方案,表的结构设计得很完善,也很详细,标明有主键外键,表之间的关系,整个表结构包括有文章管理,会员的管理,站点的统计,和自定义样式等,里面一共有60多个表,绝对值得您下载!
2022-02-09 09:17:59 355KB BBS 数据库 java 论坛
1