C#或者VB,如何把各种文件保存进数据库?
我现在主要是要把视频的文件保存进去,读出来,该怎么做?Excel等也一样吗?最好有个函数,实现功能就行了,不用太详细复制、网址的也可以,能用就行...
我现在主要是要把视频的文件保存进去,读出来,该怎么做?
Excel等也一样吗?
最好有个函数,实现功能就行了,不用太详细
复制、网址的也可以,能用就行 展开
Excel等也一样吗?
最好有个函数,实现功能就行了,不用太详细
复制、网址的也可以,能用就行 展开
展开全部
首先,将你要保存音频文件的数据库表的列的数据类型设置为image(for sqlserver);
然后,将要保存的文件以流的形式读取到一个byte[]中;
最后使用标准的insert语句就可以了。
下面附上示例代码
创建项目
1. 添加一个名为RWTest的表到 SQL Server MYTest 数据库。 表字段设置如下:
a. 唯一标识字段名称为"ID",类型为Int。
b. 名称为"Description"的VarChar类型的字段,字段长度为50。
c. 名称为"ImgField" 的Image 类型的字段。
2. 启动 Visual Studio .NET, 并创建一个新的 Visual C# Windows 应用程序项目。
3. 从工具栏中拖两个Button 控件到默认窗体, Form1。
4. 在属性窗口中修改Name为buttonFileToDB, Text 属性为从文件保存到数据库, 然后修改Name为buttonDBToFile ,Text 属性为从数据库保存到文件。
5 从工具栏放置2个TextBox和1个PictureBox控件:Name属性分别为:textBoxGetID, textBoxGetDescription, pictureBoxGetImage, 显示从数据库读出的ID,Description,ImgField字段。
源码实例
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.SqlClient;
using System.IO;
using System.Collections;
//数据库说明:MyTest数据库,RWTest表,包含3列:ID(int),Description(varchar(50),ImgField(Image)
namespace RWImgSQL
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void buttonFileToDB_Click(object sender, EventArgs e)
{
SqlConnection sqlConnection = new SqlConnection("Data Source = liuxueqin; Initial Catalog=MyTest;Integrated Security=True");
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter("Select * from RWTest", sqlConnection);
SqlCommandBuilder sqlCommandBuilder = new SqlCommandBuilder(sqlDataAdapter);
DataSet dataSet = new DataSet("RWTest");
sqlDataAdapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;//确定现有 DataSet 架构与传入数据不匹配时需要执行的操作。
String CurrentExeName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
string ImageFile = System.IO.Path.GetDirectoryName(CurrentExeName) + "\\F1.jpg";
System.IO.FileStream fileStream = new FileStream(ImageFile, FileMode.OpenOrCreate, FileAccess.ReadWrite);
byte[] myData = new byte[fileStream.Length];
fileStream.Read(myData, 0, System.Convert.ToInt32(fileStream.Length));//从流中读取字节块,并将数据写入到该缓冲区
fileStream.Close();
try
{
sqlDataAdapter.Fill(dataSet, "RWTest");
//DataRow表示DataTable中的一行数据
System.Data.DataRow dataRow;
dataRow = dataSet.Tables["RWTest"].NewRow();
dataRow1["ID"] = 1;
dataRow1["Description"] = "This would be description text";
dataRow1["ImgField"] = myData;
dataSet.Tables["RWTest"].Rows.Add(dataRow);
sqlDataAdapter.Update(dataSet, "RWTest");
sqlConnection.Close();
MessageBox.Show("写入数据库成功!", " 信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
if (sqlConnection.State == ConnectionState.Open)
{
sqlConnection.Close();
}
MessageBox.Show("写入数据库失败"+ex.Message, " 信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void buttonDBToFile_Click(object sender, EventArgs e)
{
SqlConnection sqlConnection = new SqlConnection("Data Source=liuxueqin;Initial Catalog=MyTest;Integrated Security=True");
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter("Select * from RWTest", sqlConnection);
SqlCommandBuilder sqlCommandBuilder = new SqlCommandBuilder(sqlDataAdapter);
DataSet dataSet = new DataSet("RWTest");
byte[] MyData = new byte[0];
sqlDataAdapter.Fill(dataSet, "RWTest");
DataRow myRow;
myRow = dataSet.Tables["RWTest"].Rows[0];
MyData = (byte[])myRow["imgField"];
int ArraySize = MyData.GetUpperBound(0);
String CurrentExeName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
string ImageFile = System.IO.Path.GetDirectoryName(CurrentExeName) + "\\F2.jpg";
FileStream fs = new FileStream(ImageFile, FileMode.OpenOrCreate, FileAccess.Write);
fs.Write(MyData, 0, ArraySize);
fs.Close();
//---在界面上的2个textBox和1个pictureBox,用来显示从数据库中读出的ID,Description,ImageField字段
textBoxGetID.Text = myRow["ID"].ToString();
textBoxGetDescription.Text = myRow["Description"].ToString();
pictureBoxGetImage.Image = Image.FromFile(ImageFile);
if (sqlConnection.State == ConnectionState.Open)
{
sqlConnection.Close();
}
MessageBox.Show(" 从数据库读出数据成功!", " 信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
然后,将要保存的文件以流的形式读取到一个byte[]中;
最后使用标准的insert语句就可以了。
下面附上示例代码
创建项目
1. 添加一个名为RWTest的表到 SQL Server MYTest 数据库。 表字段设置如下:
a. 唯一标识字段名称为"ID",类型为Int。
b. 名称为"Description"的VarChar类型的字段,字段长度为50。
c. 名称为"ImgField" 的Image 类型的字段。
2. 启动 Visual Studio .NET, 并创建一个新的 Visual C# Windows 应用程序项目。
3. 从工具栏中拖两个Button 控件到默认窗体, Form1。
4. 在属性窗口中修改Name为buttonFileToDB, Text 属性为从文件保存到数据库, 然后修改Name为buttonDBToFile ,Text 属性为从数据库保存到文件。
5 从工具栏放置2个TextBox和1个PictureBox控件:Name属性分别为:textBoxGetID, textBoxGetDescription, pictureBoxGetImage, 显示从数据库读出的ID,Description,ImgField字段。
源码实例
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.SqlClient;
using System.IO;
using System.Collections;
//数据库说明:MyTest数据库,RWTest表,包含3列:ID(int),Description(varchar(50),ImgField(Image)
namespace RWImgSQL
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void buttonFileToDB_Click(object sender, EventArgs e)
{
SqlConnection sqlConnection = new SqlConnection("Data Source = liuxueqin; Initial Catalog=MyTest;Integrated Security=True");
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter("Select * from RWTest", sqlConnection);
SqlCommandBuilder sqlCommandBuilder = new SqlCommandBuilder(sqlDataAdapter);
DataSet dataSet = new DataSet("RWTest");
sqlDataAdapter.MissingSchemaAction = MissingSchemaAction.AddWithKey;//确定现有 DataSet 架构与传入数据不匹配时需要执行的操作。
String CurrentExeName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
string ImageFile = System.IO.Path.GetDirectoryName(CurrentExeName) + "\\F1.jpg";
System.IO.FileStream fileStream = new FileStream(ImageFile, FileMode.OpenOrCreate, FileAccess.ReadWrite);
byte[] myData = new byte[fileStream.Length];
fileStream.Read(myData, 0, System.Convert.ToInt32(fileStream.Length));//从流中读取字节块,并将数据写入到该缓冲区
fileStream.Close();
try
{
sqlDataAdapter.Fill(dataSet, "RWTest");
//DataRow表示DataTable中的一行数据
System.Data.DataRow dataRow;
dataRow = dataSet.Tables["RWTest"].NewRow();
dataRow1["ID"] = 1;
dataRow1["Description"] = "This would be description text";
dataRow1["ImgField"] = myData;
dataSet.Tables["RWTest"].Rows.Add(dataRow);
sqlDataAdapter.Update(dataSet, "RWTest");
sqlConnection.Close();
MessageBox.Show("写入数据库成功!", " 信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
if (sqlConnection.State == ConnectionState.Open)
{
sqlConnection.Close();
}
MessageBox.Show("写入数据库失败"+ex.Message, " 信息提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void buttonDBToFile_Click(object sender, EventArgs e)
{
SqlConnection sqlConnection = new SqlConnection("Data Source=liuxueqin;Initial Catalog=MyTest;Integrated Security=True");
SqlDataAdapter sqlDataAdapter = new SqlDataAdapter("Select * from RWTest", sqlConnection);
SqlCommandBuilder sqlCommandBuilder = new SqlCommandBuilder(sqlDataAdapter);
DataSet dataSet = new DataSet("RWTest");
byte[] MyData = new byte[0];
sqlDataAdapter.Fill(dataSet, "RWTest");
DataRow myRow;
myRow = dataSet.Tables["RWTest"].Rows[0];
MyData = (byte[])myRow["imgField"];
int ArraySize = MyData.GetUpperBound(0);
String CurrentExeName = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
string ImageFile = System.IO.Path.GetDirectoryName(CurrentExeName) + "\\F2.jpg";
FileStream fs = new FileStream(ImageFile, FileMode.OpenOrCreate, FileAccess.Write);
fs.Write(MyData, 0, ArraySize);
fs.Close();
//---在界面上的2个textBox和1个pictureBox,用来显示从数据库中读出的ID,Description,ImageField字段
textBoxGetID.Text = myRow["ID"].ToString();
textBoxGetDescription.Text = myRow["Description"].ToString();
pictureBoxGetImage.Image = Image.FromFile(ImageFile);
if (sqlConnection.State == ConnectionState.Open)
{
sqlConnection.Close();
}
MessageBox.Show(" 从数据库读出数据成功!", " 信息提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
展开全部
如何将文件导入数据库。举个例子 :将文件上传到数据库某个表中。
string strDocExt; //保存上传文件的类型
string[] allowtypes ={ ".jpg", ".JPG", ".PDF", ".ppt"};//上传文件类型
try
{
strDocExt = System.IO.Path.GetExtension(Upload.FileName).ToLower); //获得上传文件的类型
//将上传文件存入数据库,用数据流的方法
intDocLen = Upload.PostedFile.ContentLength;
string MIMEtype = Upload.PostedFile.ContentType.ToString(); //获得上传文件扩展名
byte[] Docbuffer = new byte[intDocLen];
Stream objStream;
objStream = Upload.PostedFile.InputStream; ;
objStream.Read(Docbuffer, 0, intDocLen);
objStream.Close();
objStream.Dispose();
SqlConnection sqlConn = new SqlConnection();//建立数据库联接
sqlConn.Open();
string strInsert = "INSERT 表名 Filename VALUES(@Filename)";
SqlCommand com = new SqlCommand();
com.CommandText = strInsert;
com.Connection = sqlConn;
SqlParameter prm5 = new SqlParameter("@Filename", SqlDbType.VarChar, 50);
prm5.Direction = ParameterDirection.Input;
com.Parameters.Add(prm5);
prm5.Value = Path.GetFileName(Upload.PostedFile.FileName);
com.ExecuteNonQuery();
sqlConn.Close();
}
string strDocExt; //保存上传文件的类型
string[] allowtypes ={ ".jpg", ".JPG", ".PDF", ".ppt"};//上传文件类型
try
{
strDocExt = System.IO.Path.GetExtension(Upload.FileName).ToLower); //获得上传文件的类型
//将上传文件存入数据库,用数据流的方法
intDocLen = Upload.PostedFile.ContentLength;
string MIMEtype = Upload.PostedFile.ContentType.ToString(); //获得上传文件扩展名
byte[] Docbuffer = new byte[intDocLen];
Stream objStream;
objStream = Upload.PostedFile.InputStream; ;
objStream.Read(Docbuffer, 0, intDocLen);
objStream.Close();
objStream.Dispose();
SqlConnection sqlConn = new SqlConnection();//建立数据库联接
sqlConn.Open();
string strInsert = "INSERT 表名 Filename VALUES(@Filename)";
SqlCommand com = new SqlCommand();
com.CommandText = strInsert;
com.Connection = sqlConn;
SqlParameter prm5 = new SqlParameter("@Filename", SqlDbType.VarChar, 50);
prm5.Direction = ParameterDirection.Input;
com.Parameters.Add(prm5);
prm5.Value = Path.GetFileName(Upload.PostedFile.FileName);
com.ExecuteNonQuery();
sqlConn.Close();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
转换成二进制流吧
public Byte[] getbytes(string filepath)
{
FileStream file = new FileStream(filepath, FileMode.Open, FileAccess.Read);
Byte[] bytBLOBData = new Byte[file.Length];
file.Read(bytBLOBData, 0, bytBLOBData.Length);
file.Close();
return bytBLOBData;
}
然后..就是将转换成二进制码的数据插入数据库中..下面是简单的也是重要的sql语句..
if (this.pictureBox1.Image != null)
{
string sql = “你的Insert”
Byte[] bytBLOBData = getphoto(openFileDialog1.FileName);
cmd.Parameters.Add(new OleDbParameter("", OleDbType.Binary, bytBLOBData.Length, ParameterDirection.Input, true, 0, 0, null, DataRowVersion.Default, bytBLOBData));
}
public Byte[] getbytes(string filepath)
{
FileStream file = new FileStream(filepath, FileMode.Open, FileAccess.Read);
Byte[] bytBLOBData = new Byte[file.Length];
file.Read(bytBLOBData, 0, bytBLOBData.Length);
file.Close();
return bytBLOBData;
}
然后..就是将转换成二进制码的数据插入数据库中..下面是简单的也是重要的sql语句..
if (this.pictureBox1.Image != null)
{
string sql = “你的Insert”
Byte[] bytBLOBData = getphoto(openFileDialog1.FileName);
cmd.Parameters.Add(new OleDbParameter("", OleDbType.Binary, bytBLOBData.Length, ParameterDirection.Input, true, 0, 0, null, DataRowVersion.Default, bytBLOBData));
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
excel等其他数据库都有2进制保存数据的方法,视频和图像一样,均可以用2进制保存进去。
不过可以考虑保存路径,文件保存到特定目录,毕竟保存整个视频到数据库会很那个的。
真想搞进去,可以查查如何保存2进制数据吧,
不过可以考虑保存路径,文件保存到特定目录,毕竟保存整个视频到数据库会很那个的。
真想搞进去,可以查查如何保存2进制数据吧,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你说的那些是不能保存到数据表中的,你只能把那段视频文件在程序下的相对路径保存在某一字段中。读取的时候读取保存路径相对应的文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询