很简单论坛也可以做blog使用支持mysql,sqlserver数据库
源代码在线查看: boardbean.java
package blog;
public class BoardBean implements java.io.Serializable {
private int boardID = 0;
private String title = "";
private String content = "";
private String author = "";
private int authorID = 0;
//boardID
public void setboardID(int boardID){
this.boardID = boardID;
}
public int getboardID(){
return boardID;
}
//title
public void settitle(String title){
this.title = title;
}
public String gettitle(){
return title;
}
//content
public void setcontent(String content){
this.content = content;
}
public String getcontent(){
return content;
}
//author
public void setauthor(String author){
this.author = author;
}
public String getauthor(){
return author;
}
//authorID
public void setauthorID(int authorID){
this.authorID = authorID;
}
public int getauthorID(){
return authorID;
}
//all
public void fillAll(java.sql.ResultSet rs) throws java.sql.SQLException{
boardID = rs.getInt("boardID");
title = rs.getString("title");
content = rs.getString("content");
author = rs.getString("author");
boardID = rs.getInt("boardID");
}
}
|
相关资源 |
|
-
很简单论坛也可以做blog使用支持mysql,sqlserver数据库
-
这是个很好的学生信息管理系统
方便大家来下载也可以给老师使用
-
linux下的clock()使用例子
一个很简单的例子,可以拿去稍修改
-
图书馆管理系统,很不错!可以作毕业设计,也可以做课程设计!
-
简单的语间通信的例子代码,可以在局网上使用,也可以在公网使用。通话质量佳。
-
一个识字跑表可以做秒表使用有设置时间等应有的功能课程设计很有用
-
图书馆管理系统,很不错!可以作毕业设计,也可以做课程设计!
-
使用JBuild发送短信的原码程序,可以直接用,也可以做二次开发
|