急用:怎么用C#语言判断SQL数据库中已经存在某个表格了啊?????????
3个回答
展开全部
这人最好,直接给你个过程,调用即可。
#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
#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
展开全部
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]);
}
}
}
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]);
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
把这个sql语句在C#中写一个方法进行判断就可以了啊
select * from dbo.sysobjects where id = object_id(N '[dbo].[warn_info] ') and OBJECTPROPERTY(id, N 'IsUserTable ') = 1
select * from dbo.sysobjects where id = object_id(N '[dbo].[warn_info] ') and OBJECTPROPERTY(id, N 'IsUserTable ') = 1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询