我有一个只有一个表的新SAP ASE数据库,该表只有三列 - 两个varchar列和一个image列。
使用从SAP ASE数据库的开发人员版本获取的纯ADO.NET提供程序我只是尝试使用文件内容将记录插入此表 - 我的第一个试验是使用3kb文件,它的工作方式与魅力。然后,我拿了一张大约900kb的PDF(肯定不到1MB),应用程序给了我一个超时;那个丑陋的事实是,不知何故,整个数据库已被阻止 - 我不得不重新启动服务以使其再次运行。
所以,现在让我们来看看代码 - 如果有人能引导我走向正确的方向,我将非常感激。
static void Main(string[] args)
{
using (AseConnection aseConnection =
new AseConnection(
"data source=...;initial catalog=...;User ID=...;Password=...;Port=...;ConnectionIdleTimeout=600;CommandTimeOut=0;ConnectionTimeOut=0;Pooling=False;TextSize=10000000")
)
{
aseConnection.Open();
Console.WriteLine(aseConnection.State.ToString());
AseCommand setTextSizeCommand = new AseCommand("SET TEXTSIZE 10000000", aseConnection);
setTextSizeCommand.ExecuteNonQuery();
byte[] fileContent = File.ReadAllBytes(@"d:\adonet.pdf");
//byte[] fileContent = File.ReadAllBytes(@"d:\rack.txt");
AseCommand aseCommand = new AseCommand("insert into xxx(web_id, doc_name, doc_file) values(?, ?, ?)", aseConnection);
aseCommand.Parameters.Add(0, AseDbType.VarChar, 20).Value = "100";
aseCommand.Parameters.Add(1, AseDbType.VarChar, 100).Value = "fisier";
aseCommand.Parameters.Add(2, AseDbType.Image, fileContent.Length).Value = fileContent;
aseCommand.NamedParameters = false;
aseCommand.CommandTimeout = 65000;
aseCommand.ExecuteNonQuery();
}
}
ASE Client dll的版本是16.0.2.2。
非常感谢!
答案 0 :(得分:1)
为了解决这个问题,我不得不从头开始创建一个新的数据库,但这次我从头开始给它更多的空间(1GB而不是6MB - 默认值)。
现在一切都像魅力一样。
谢谢