subtypedaoimpl.java

来自「一套购物网站系统」· Java 代码 · 共 27 行

JAVA
27
字号
package com.shop.dao;


import com.shop.commerce.SubType;
import com.shop.db.chStr;
import com.shop.db.connDB;

public class SubtypeDaoImpl implements SubtypeDao {
  public SubtypeDaoImpl() {
  }
connDB conn=new connDB();
chStr chStr=new chStr();
public int insert(SubType st) {
int ret=-1;
try{
  String sql = "insert into tb_subType (superType,typename) values("+st.getsuperid()+",'" + chStr.chStr(st.gettypename()) +
      "')";
  ret = conn.executeUpdate(sql);
}catch (Exception e){
  ret=0;
}
return ret;
}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?