C# 调用数据库
我给数据库里放了个目录:“F:\恩!C#\学习\C#.net培训资料\C#.net基础班\2C#面向对象基础”现在我用C# 去调用这个数据库里的目录 想对目录下的视频 进行打开 以及更新 谢各位
求代码 --------------------编程问答-------------------- 用ado.net查询数据库得到这个目录,然后直接Process.Start("xxx");或者用mediaplayer之类的播放器软件指定url进行播放。 --------------------编程问答-------------------- 顶 --------------------编程问答--------------------
string vdir;--------------------编程问答-------------------- 调用、打开、更新这些词模糊而笼统,不知道你要对视频文件到底做什么操作。 --------------------编程问答-------------------- 求大神写出代码 小弟新手 不会写 谢谢 --------------------编程问答--------------------
private void button2_Click(object sender, EventArgs e)
{
string connectionString = "server=.;database=数据库名;uid=sa;pwd=sa";
string sqlStr = "select 目录 from 表";
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(sqlStr, connection);
connection.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
vdir=reader[0].ToString();
}
reader.Close();
}
if (System.IO.Directory.Exists(vdir))
{
//如果目录存在,则打开目录下的视频 文件
}
}
顶
用ado.net查询数据库得到这个目录,然后直接Process.Start("xxx");或者用mediaplayer之类的播放器软件指定url进行播放。
string vdir;
private void button2_Click(object sender, EventArgs e)
{
string connectionString = "server=.;database=数据库名;uid=sa;pwd=sa";
string sqlStr = "select 目录 from 表";
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(sqlStr, connection);
connection.Open();
SqlDataReader reader = command.ExecuteReader();
while (reader.Read())
{
vdir=reader[0].ToString();
}
reader.Close();
}
if (System.IO.Directory.Exists(vdir))
{
//如果目录存在,则打开目录下的视频 文件
}
}
楼主起文件夹名真有一套~
补充:.NET技术 , C#