博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
往数据库插入一个数据
阅读量:5957 次
发布时间:2019-06-19

本文共 314 字,大约阅读时间需要 1 分钟。

String sql="Insert into haas1(id,name,major) values('101','hz','电信')";

PreparedStatement pstmt=conn.prepareStatement(sql);

int n=pstmt.executeUpdate();

if(n==1){%>数据插入操作成功!<br><%}
else{%>数据插入失败!<br><%}

if(pstmt!=null){pstmt.close();}
if(conn!=null){conn.close();}%>

转载于:https://www.cnblogs.com/pgone/p/7698822.html

你可能感兴趣的文章
centos7 修改mac地址
查看>>
<script>标签的加载解析执行
查看>>
恢复rm删除的文件(ext3
查看>>
账户注销完自动登录账户,并且不需要再点击屏幕的账户头像
查看>>
【Interface&navigation】按钮(29)
查看>>
Extjs4.x (MVC)Controller中refs以及Ext.ComponentQuery解析
查看>>
Server-01 How to Find the Remote Desktop Port
查看>>
Java--接口、抽象与继承
查看>>
通过IP判断登录地址
查看>>
Oracle闪回技术
查看>>
利用单壁路由实现vlan间路由
查看>>
hello world
查看>>
CentOS 7 配置yum本地base源和阿里云epel源
查看>>
python 学习导图
查看>>
生成树
查看>>
(MYSQL) Unknown table 'a' in MULTI DELETE的解决办法
查看>>
作为一个程序员必备的素质
查看>>
Webpack入门教程十四
查看>>
HDU - 3564 Another LIS(LIS+线段树)
查看>>
深入浅出JavaScript (五) 详解Document.write()方法
查看>>