c# 判断sqllite 表是不是存在

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 判断sqllite 表是不是存在相关的知识,希望对你有一定的参考价值。

private static string DataFilePath = “数据库在硬盘上的位置”;
private static SQLiteConnection SqlConnection=new SQLiteConnection("data source=" + DataFilePath);
SQLiteCommand cmd = SqlConnection.CreateCommand();
cmd.CommandText = “select * from sqlite_master where [type]='table' and [name]='表名称'”;
DataSet ds = new DataSet();
SQLiteDataAdapter da = new SQLiteDataAdapter(cmd);
da.Fill(ds);
//然后判断ds.Tables[0].Rows.Count大于0就是表存在,否则就是不存在
参考技术A private static string DataFilePath = “数据库在硬盘上的位置”;
private static SQLiteConnection SqlConnection=new SQLiteConnection("data source=" + DataFilePath);
SQLiteCommand cmd = SqlConnection.CreateCommand();
cmd.CommandText = “select * from sqlite_master where [type]='table' and [name]='表名称'”;
DataSet ds = new DataSet();
SQLiteDataAdapter da = new SQLiteDataAdapter(cmd);
da.Fill(ds);
//然后判断ds.Tables[0].Rows.Count大于0就是表存在,否则就是不存在

C# 判断一个目录(路径)是不是存在

如题~。。。。。。

比如一个textbox里面写上c:\hh,怎么样判断它是否存在?

不存在就创建这个目录
各位的回答很好,我知道把分给谁了,怎么办?

后来的就不要回答了,我就看到前面五个~怎么给分啊

1、引用 System.IO

string path = this.TextBox1.Text.Trim();

if (Directory.Exists(path))//判断是否存在

Response.Write("已存专在");

else

Response.Write("不存在,正在创建属");

Directory.CreateDirectory(path);//创建新路径

2、System.IO.Directory到这个对象里去找,有好多方法。

if(Directory.Exists(@"c:\\hh")==false)

Directory.CreateDirectory(@"c:\\\\hh")

是判断是否存在

扩展资料:

C#

声明

[ComVisibleAttribute(true)]

public class FileStream : Stream

C++

声明

[ComVisibleAttribute(true)]

public ref class FileStream : public Stream

参考资料来源:百度百科-filestream

参考技术A 判断一个路径是否存在
System.IO.Directory.Exists(@"C:\hh"); 返回值为bool,存在的话为true,注意已经要加上@,否则要写成双反斜线:C:\\hh。
创建一个路径
System.IO.Directory.CreateDirectory(@"C:\hhh"); 返回值为创建好的目录的信息,关于这里的@和上面一样。
参考技术B 那就直接创建目录,如果已存在就覆盖...目录覆盖不会影响目录里的数据的。... 参考技术C 引用 System.IO
string path = this.TextBox1.Text.Trim();
if (Directory.Exists(path))//判断是否存在

Response.Write("已存在");

else

Response.Write("不存在,正在创建");
Directory.CreateDirectory(path);//创建新路径
本回答被提问者采纳
参考技术D Directory.Exists()

我是沙发啊,呵呵

以上是关于c# 判断sqllite 表是不是存在的主要内容,如果未能解决你的问题,请参考以下文章

c#里面怎么判断数据库是不是存在

c#中怎样判断access数据库是不是存在

c#,判断2个dataTable是不是一样的问题。。

C# 判断一个目录(路径)是不是存在

C# 判断图片链接是不是存在

在C#中如何判断一个文件是不是存在?请各位告知下,越详细越好。