java的prepareStatement操作ecshop商品信息
2013-06-07 11:37 来源:www.chinab4c.com 作者:ecshop专家
java的prepareStatement操作ecshop商品信息,我们知道当你想将java做为ecshop后台服务的时候,我们可以使用java去操作数据,然后把结构返回给php用来显示,这样可以提高java处理业务的性能,也能提高php负责简单数据处理的优势,特别在大数据操作下,用java操作ecshop数据库,是非常好的,我们就来介绍java的prepareStatement来操作mysql数据库
import java.sql.*;
import java.util.*;
public class pr {
public static void main(String[] args){
PreparedStatement st;
try {
Class.forName("com.mysql.jdbc.Driver");
Connection conn = DriverManager.getConnection("jdbc:mysql://172.168.16.23:3306/icmall","root","123456");
st = conn.prepareStatement("select * from ecs_goods where goods_id =?");
st.setInt(1,1);
ResultSet res = st.executeQuery();
while(res.next()){
System.out.println(res.getString("goods_name"));
//s.executeUpdate("update ecs_goods set goods_number=goods_number+1 where goods_id='"+res.getInt("goods_id")+"'");
st=conn.prepareStatement("select * from ecs_goods where goods_name=?");
st.setString(1,res.getString("goods_name"));
ResultSet res1 = st.executeQuery();
while(res1.next()){
System.out.println(res.getString("goods_name"));
st = conn.prepareStatement("update ecs_goods set goods_number=goods_number+1 where goods_id=?");
st.setInt(1,res.getInt("goods_id"));
st.executeUpdate();
}
}
} catch(Exception e){
e.printStackTrace();
}
}
}
来源:http://www.chinab4c.com
最近更新
常用插件
- ecshop分类树中统计商品数
最近忙于开发其他项目,在不少朋友不断要求和催促的情况下,做出了该小...
- ecshop降价通知登记插件
ecshop降价通知登记插件,主要是为了方便某些客户,对商品价格要求比...
- ecshop通用红包编码
很多时候,为了结合促销,必须扩展一下ecshop的红包功能。ecshop的红包...
- ecshop购物车功能改进[插件
ecshop购物车功能改进[插件套餐]主要是我们最近开发工作和开发项目中。...
- ecshop红包修改成满多少减
我们在长期使用ecshop的时候,我们可以发现。ecshop的红包是一个非常强...