急用:怎么用C#语言判断SQL数据库中已经存在某个表格了啊?????????

例如:现在有个表格warn_info,我想判断数据库graph中是否存在这个表,用C#语言哦... 例如:现在有个表格warn_info,我想判断数据库graph中是否存在这个表,用C#语言哦 展开
 我来答
保会通软件
2011-05-11 · TA获得超过636个赞
知道小有建树答主
回答量:370
采纳率:71%
帮助的人:181万
展开全部
这人最好,直接给你个过程,调用即可。
#region 判断数据库表是否存在,通过指定专用的连接字符串,执行一个不需要返回值的SqlCommand命令。
/// <summary>
/// 判断数据库表是否存在,返回页头,通过指定专用的连接字符串,执行一个不需要返回值的SqlCommand命令。
/// </summary>
/// <param name="tablename">bhtsoft表</param>
/// <returns></returns>
public static bool CheckExistsTable(string tablename)
{
String tableNameStr = "select count(1) from sysobjects where name = '" + tablename + "'";
using (SqlConnection con = new SqlConnection(ConnectionString))
{
con.Open();
SqlCommand cmd = new SqlCommand(tableNameStr, con);
int result = Convert.ToInt32(cmd.ExecuteScalar());
if (result == 0)
{
return false;
}
else
{
return true;
}
}
}
#endregion
灵芝有味温馨3403
2011-05-11 · TA获得超过212个赞
知道答主
回答量:402
采纳率:0%
帮助的人:243万
展开全部
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
//引用命名空间
using System.Data.OleDb;

namespace 代码绑定
{
public partial class Form1 : Form
{
//添加绑定对象,就是前面学过的Ado.net对象

OleDbDataAdapter da;//数据适配器
DataSet ds;//数据集
OleDbCommandBuilder DCB;//命令管理器
BindingSource bs;//绑定源对象

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
//连接字符串
string strCon = "Provider=Microsoft.jet.oledb.4.0;data source=" + AppDomain.CurrentDomain.BaseDirectory + "student.mdb; ";
//添加查询语句
string StrSelect = "select 学号,姓名,性别 from dzsw1";
//初始化数据适配器及数据集
da = new OleDbDataAdapter(StrSelect ,strCon);
ds = new DataSet();
//填充数据到数据集
da.Fill(ds, "dzsw");
DCB = new OleDbCommandBuilder(da);
//初始化绑定源对象
bs = new BindingSource();
bs.DataSource = ds.Tables[0] ;
//绑定DataGridView
dataGridView1.DataSource = bs;
//绑定 文本框
textBox1.DataBindings.Add("Text", bs, "姓名");
//绑定 列表框
listBox1.DataSource = bs;
listBox1.DisplayMember = "姓名";
//绑定组合框
comboBox1.DataSource = bs;
comboBox1.DisplayMember = "姓名";

}

private void button2_Click(object sender, EventArgs e)
{
//指针后移
bs.Position++;
}

private void button1_Click(object sender, EventArgs e)
{
//指针前移
bs.Position--;
}

private void button3_Click(object sender, EventArgs e)
{
//更新数据
da.Update(ds.Tables[0]);
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
yang805465433
2011-05-11
知道答主
回答量:5
采纳率:0%
帮助的人:0
展开全部
把这个sql语句在C#中写一个方法进行判断就可以了啊
select * from dbo.sysobjects where id = object_id(N '[dbo].[warn_info] ') and OBJECTPROPERTY(id, N 'IsUserTable ') = 1
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式