对于编程对齐,我要编写一个原型。 现在我只想找代码1的方法。 该方法应该读取语言环境.csv文件,并将其作为BLOB(二进制大对象)保存在外部服务器上的数据库中。 但是,我对C#很新,而且我已经习惯了Java。我不确定BLOB是什么,某种字节数组还是什么?
到目前为止,我的程序可以
数据库表名为tblUsers。
我试图将其插入的字段是BlobFile,其数据类型为varbinary(8000)。
我甚至不知道数据类型是否正确。
我想要的只是保存在服务器上的表中的.csv文件。
“字符串或二进制数据将被截断。该语句已被终止。” 不幸的是,我可以理解这意味着我的.csv文件有点与表中的数据类型不匹配。 我不知道如何将你链接到.csv,但它看起来像:
4.012 3.012 1.312 3.321 4.232
等等。 这是C#代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.IO;
namespace WindowsFormsApplication8
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string filePath = "C:/Users/Soeren/Desktop/epilepsi - semester/EpilepsiEKG/Patient1_Reciprocal_HFpower_x1.csv";
FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
string line = fs.ReadLine();
string[] value = line.Split(',');
BinaryReader reader = new BinaryReader(fs);
byte[] BlobValue = reader.ReadBytes((int)fs.Length);
fs.Close();
reader.Close();
//FILE READ!
SqlConnection con = new SqlConnection(@"Data Source=webhotel10.iha.dk;Initial Catalog=F13ST2ITS2201270867;Persist Security Info=True;User ID=F13ST2ITS2201270867;Password=F13ST2ITS2201270867");
SqlCommand com = new SqlCommand("insert into tblUsers(BlobFilename,BlobFile) values(@BlobFilename,@Blobfile)", con);
SqlParameter BlobFileNameParam = new SqlParameter("@BlobFileName", SqlDbType.NChar);
SqlParameter BlobFileParam = new SqlParameter("@BlobFile", SqlDbType.Binary);
com.Parameters.Add(BlobFileNameParam);
com.Parameters.Add(BlobFileParam);
BlobFileNameParam.Value = filePath.Substring(filePath.LastIndexOf("/") + 1);
BlobFileParam.Value = BlobValue;
try
{
com.Connection.Open();
com.ExecuteNonQuery();
MessageBox.Show(BlobFileNameParam.Value.ToString() + " saved to database.", "BLOB Saved", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "Save Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
finally
{
com.Connection.Close();
}
}
}
}
答案 0 :(得分:1)
声明BlobFileParam参数的方式,它是一个固定长度的二进制参数,大小为0(未指定大小)。您尝试插入长度大于指定大小(0)的数据。 尝试将参数BlobFileParam的size属性设置为正确的长度;我还认为SqlDbType.VarBinary可能是参数类型的更好选择。