判断数据库表是否存在以及修改表名的方法

时间:2024-01-22 09:21:24 

一、判断数据库表是否存在:
首先要拿到数据库连接conn,调用DatabaseMetaData dbmd = conn.getDataMeta();之后调用如下方法:


/**
* 根据表名,判断数据库表是否存在
* @param tableName
* @return true:存在该表,false:不存在该表
*/
public boolean hasTable(String tableName) {
Init();
boolean result = false; //判断某一个表是否存在
try{
ResultSet set = dbmd.getTables (null, null, tableName, null); //获取查找结果
while (set.next()) { //如果查找结果不为空,则说明存在该表
result = true; //将返回结果置为true
}
}catch(Exception e){
e.printStackTrace();
}
return result;
}


二、修改表名:
首先依然要拿到数据库连接conn和数据库描述对象dbmd以及Statement对象st,之后调用如下方法


/**
* 修改表名
* @param srcTableName 源表名
* @param newTableName 新表名
* @return true:修改表名成功,false:修改表名失败
*/
public boolean renameTable(String srcTableName,String newTableName){
Init();
boolean result = false;
StringBuffer sql = new StringBuffer();
try{
String dataBaseType = dbmd.getDatabaseProductName(); //获取数据库类型
if(("Microsoft SQL Server").equals(dataBaseType)){ //sqlServer
try{
sql.append("EXEC sp_rename"+" "+srcTableName).append(",").append(newTableName);
int temp = 0;
temp = st.executeUpdate(sql.toString()); //执行更新操作,返回结果
if(1==temp){
result = true; //将返回值设为true
}
}catch(Exception e){
e.printStackTrace();
}
}else if(("HSQL Database Engine").equals(dataBaseType)||("MySQL").equals(dataBaseType)){ //hsql和mysql
try{
sql.append("ALTER TABLE"+" "+srcTableName+" "+"RENAME TO"+" "+newTableName);
int temp = 1;
temp = st.executeUpdate(sql.toString()); //执行更新操作,返回结果
if(0==temp){
result = true; //将返回值设为true
}
}catch(Exception e){
e.printStackTrace();
}
}else{ //尚未实现对oracle和db2判断
}
}catch(Exception e){
e.printStackTrace();
}
//System.out.println(result);
return result;
}
标签:数据库表,修改表名
0
投稿

猜你喜欢

  • Python编程使用Selenium模拟淘宝登录实现过程

    2023-08-29 00:56:53
  • python获取文件扩展名的方法

    2023-07-20 09:05:17
  • python递归打印某个目录的内容(实例讲解)

    2021-02-13 00:54:27
  • 使用pytorch进行张量计算、自动求导和神经网络构建功能

    2022-08-18 11:50:48
  • Git标签管理

    2022-02-01 18:53:06
  • 如何获取当前 select 元素的值

    2010-03-29 13:07:00
  • python如何实时获取tcpdump输出

    2021-05-05 14:41:36
  • MySQL主从延迟现象及原理分析详解

    2024-01-13 23:22:03
  • pytorch 液态算法实现瘦脸效果

    2021-12-05 19:28:17
  • 快速解决jupyter notebook启动需要密码的问题

    2023-09-27 23:56:49
  • vue3.0如何使用computed来获取vuex里数据

    2024-04-28 09:24:20
  • MySQL在Windows中net start mysql 启动MySQL服务报错 发生系统错误解决方案

    2024-01-12 21:39:42
  • Pytorch数据读取之Dataset和DataLoader知识总结

    2023-11-02 22:57:37
  • JSP基本语句用法总结

    2024-03-08 02:41:04
  • JS 实现请求调度器

    2024-04-22 22:37:24
  • SQL Server备份和灾难恢复

    2010-07-02 12:54:00
  • 解析SQL Server与ASP互操作的时间处理

    2009-02-01 16:40:00
  • Mysql 错误问题汇总(不断更新中)

    2024-01-18 23:51:22
  • mysql5.7版本root密码登录问题的解决方法

    2024-01-21 00:47:43
  • 利用Python实现模拟登录知乎

    2023-09-23 08:32:15
  • asp之家 网络编程 m.aspxhome.com