Eynews 简单新闻管理系 统 简单新闻管理系 统简单新闻管理系 统
源代码在线查看: showclicknumber.java
package com.v246;
public class ShowClickNumber
{
public static String getClickNumber(String id)throws Exception
{
java.sql.Connection conn=null;
java.sql.Statement stm=null;
java.sql.ResultSet rs=null;
Connections connTmp=new Connections();
String re=null;
try
{
conn=connTmp.getConnection();
stm=conn.createStatement();
rs=stm.executeQuery("select * from article where ArticleID="+id);
if(rs.next())
{
re=String.valueOf(rs.getInt("Hits"));
System.out.println("ok");
stm.executeUpdate("update article set Hits=Hits+1 where ArticleID="+id);
}
else
{
re="数据错误";
}
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
if(rs!=null)rs.close();
if(stm!=null)stm.close();
if(conn!=null)conn.close();
}
return re;
}
public static void main(String args[])
{
try
{
System.out.println(getClickNumber("80"));
}
catch(Exception e)
{
e.printStackTrace();
}
}
}
|
相关资源 |
|
-
简单新闻管理系统一个采用Access数据库的新闻管理系统
-
主要功能: ·新闻采用在线编辑器,可以象使用word一样编辑新闻 ·可web上传图片,新闻内其它网站图片自动下载 ·无限级目录分类 ·可设头条新闻和图片新闻 ·新闻点评功能
-
简单的VB信息管理系统 SQL数据库 简单的查询,删除,添加功能 并能生成报表
-
简单计算器(带密码“111111”) 进行简单的数字计算 包括“+” “-” “*” “/” “乘方”
-
简单的链表数据结构算法。简单的链表数据结构算法程序
-
条件语句if,then,else的简单优先法,输出三地址码,显示简单优先矩阵.
-
简单封装数据库表的类的一个简单的例子:
http://www.delphifans.com/SoftView/SoftView_1476.html
-
这是用JAVA编写的简单的登陆程序,希望大家喜欢,特简单
|