摘要: String strInsertSql = "Insert into table sets(x,y) values(?,'123')";PreparedStatement pstmt = con.prepareStatement(strInsertSql); Object rspTelegram = new String(STR_TELE_01); pstmt.setObject(1, rspTelegram); pstmt.executeUpdate(); pstmt.close(); 阅读全文
posted @ 2009-02-16 10:48 yanpeng 阅读(219) 评论(0) 推荐(0) 编辑