导航:首页 > 图片大全 > Openwrite如何导入图片

Openwrite如何导入图片

发布时间:2023-07-11 18:01:51

如何在数据库中同时保存文本和图片

  1. 向数据库中保存不同类型的文件,和在数据库中保存图片是一样的。就是向数据库以byte形式存入

  2. 向数据库中保存不同类型的文件,和在数据库中保存图片是一样的。就是向数据库以byte形式存入

  3. 然后就是写入数据库,代码如下:

FileInfo fi = new FileInfo( txtFileName.Text );// Replace with your file name
if ( fi.Exists
{
byte[] bData = null;

int nNewFileID = 0;

// Read file data into buffer

using ( FileStream fs = fi.OpenRead() )
{

bData = new byte[fi.Length];

int nReadLength = fs.Read( bData,0, (int)(fi.Length) );

}

// Add file info into DB

string strQuery = "INSERT INTO FileInfo "

+ " ( FileName, FullName, FileData ) "

+ " VALUES "

+ " ( @FileName, @FullName, @FileData ) "

+ " SELECT @@IDENTITY AS 'Identity'";

SqlCommand sqlComm = new SqlCommand( strQuery, sqlConn );

sqlComm.Parameters.Add( "@FileName", fi.Name );

sqlComm.Parameters.Add( "@FullName", fi.FullName );

sqlComm.Parameters.Add( "@FileData", bData );
// Get new file ID

SqlDataReader sqlReader = sqlComm.ExecuteReader();

if( sqlReader.Read() )

{

nNewFileID = int.Parse(sqlReader.GetValue(0).ToString());

}
sqlReader.Close();
sqlComm.Dispose();

if( nNewFileID > 0 )
{
// Add new item in list view

ListViewItem itmNew = lsvFileInfo.Items.Add( fi.Name );

itmNew.Tag = nNewFileID;
}
}

4.而读出的代码如下:

// Get new file name

stringstrFullName =
dlgFBSave.SelectedPath;

if( strFullName[strFullName.Length - 1] != '//'
)

strFullName
+= @"/";

strFullName +=
lsvFileInfo.SelectedItems[0].Text;

stringstrQuery = "SELECT FileData FROM FileInfo
"

+
" WHERE FileID = " + lsvFileInfo.SelectedItems[0].Tag.ToString();

SqlDataAdapter
sqlDAdapter =newSqlDataAdapter(strQuery,sqlConn);

DataSet
sqlRecordSet =newDataSet();

byte[] bData =null;

//Get file data from DB

try

{

sqlDAdapter.Fill(
sqlRecordSet, "FileInfo" );

foreach( DataRow drinsqlRecordSet.Tables["FileInfo"].Rows)

{

if( dr["FileData"] != DBNull.Value )

bData
= (byte[] )dr["FileData"];

}

}

catch(SqlException sqlErr)

{

MessageBox.Show(
sqlErr.Message );

}

catch

{

MessageBox.Show(
"Failed to read data from DB!" );

}

sqlRecordSet.Dispose();

sqlDAdapter.Dispose();

if( bData !=null)

{

// Save file

FileInfo
fi =newFileInfo( strFullName
);

if( !fi.Exists )

{

//Create the file.

using(FileStream fs = fi.Create())

{

fs.Write(
bData, 0, bData.Length);

}

}

else

{

//Create the file.

using(FileStream fs =
fi.OpenWrite())

{

fs.Write(
bData, 0, bData.Length);

}

}

}

阅读全文

与Openwrite如何导入图片相关的资料

热点内容
短发染色发型图片 浏览:466
学扎头发简单发型图片 浏览:965
好看的山景海景图片高清 浏览:536
word插入的图片打印出来不清楚 浏览:212
女生背包的图片大全 浏览:262
六年级英语思维导图图片简单又漂亮人教版 浏览:901
女生真人古装图片大全图片大全 浏览:538
手机如何把图片调成黑白线条 浏览:521
word文档怎么把图片调整到右边 浏览:688
希望还能再遇到文字图片 浏览:759
上房图片动漫 浏览:496
男生拿红伞的图片 浏览:1001
单眼皮的男生适合什么眉毛图片 浏览:906
一年四季的樱花高清图片 浏览:742
文字控梦想图片 浏览:996
美英女孩图片 浏览:255
子琦文字图片 浏览:705
迷你3D小女孩图片 浏览:785
感冒痊愈图片可爱 浏览:111
望海图片男生 浏览:176