当我最终研究完解决问题的所有不同方法时,编写代码真的很简单。我根本没有使用 BCP。
我为要在文本文件中提取的信息创建了变量。
- 文件名
- 日期(来自原始创建日期的 SQL 表)
- 案例编号(要链接到的第 3 方程序的内部标识符)
- 描述(取自 SQL 表来描述文档)
然后我让应用程序开始工作 一次将代码写入 PDF
using (SqlConnection Conn = new SqlConnection(strSQLConn))
{
//open the connection
Conn.Open();
Console.WriteLine("the connection is open");
//Variables needed for looping
DateTime Today = System.DateTime.Now;
DateTime StartDate = Convert.ToDateTime("2008-06-11 00:00:00");
//DateTime StartDate = Today.AddDays(-10);
Console.WriteLine("Converting the Documents from " + StartDate.ToString() + " - TO - " + Today.ToString());
Console.WriteLine("Press Any Key to continue.");
Console.ReadLine();
int RecordCount = 0;
ulong ByteCount = 0;
int i = 1;
foreach (DateTime day in EachDay(StartDate, Today))
{
String strDay = day.ToString();
// Create a SQLCommand to retrieve Data
SqlCommand getRecords = new SqlCommand("spRecapturePDF", Conn);
getRecords.CommandType = CommandType.StoredProcedure;
getRecords.Parameters.Add(new SqlParameter("@OneDay", strDay));
SqlDataReader reader = getRecords.ExecuteReader();
//stuff exporting the binary code to the PDF format
FileStream fs;
BinaryWriter bw;
int buffersize = 100;
byte[] outbyte = new byte[buffersize];
long retval;
long startIndex = 0;
int j = 1;
while (reader.Read())
{
strFileName = reader.GetString(0) + "-" + i + "-" + j;
strDock_no = reader.GetString(0);
dtFiledate = reader.GetDateTime(2);
strDescription = reader.GetString(4);
fs = new FileStream("c:\\FolderName\\" + strFileName + ".pdf", FileMode.OpenOrCreate, FileAccess.Write);
bw = new BinaryWriter(fs);
startIndex = 0;
retval = reader.GetBytes(1,startIndex,outbyte,0,buffersize);
while (retval == buffersize)
{
bw.Write(outbyte);
bw.Flush();
startIndex += buffersize;
retval = reader.GetBytes(1,startIndex,outbyte,0,buffersize);
}
//write the remaining buffer.
bw.Write(outbyte,0,(int)retval);
ByteCount = ByteCount + Convert.ToUInt64(fs.Length);
bw.Flush();
//close the output file
bw.Close();
fs.Close();
//need to write to the Text file here.
TextWriter tw = new StreamWriter(path,true);
tw.WriteLine(strDock_no + "~" + dtFiledate.ToString() + "~" + "c:\\FolderName\\" + strFileName + ".pdf" + "~" + strDescription);
tw.Close();
// increment the J variable for the Next FileName
j++;
RecordCount++;
}
//close the reader and the connection
reader.Close();
i++;
}
Console.WriteLine("Number of Records Processed: " + RecordCount.ToString());
Console.WriteLine("for a Total of : " + ByteCount + " Bytes");
Decimal MByteCount = new Decimal(2);
MByteCount = Convert.ToDecimal(ByteCount) / 1024 / 1024;
Decimal GByteCount = new Decimal(2);
GByteCount = MByteCount / 1024;
Console.WriteLine("Total MBs : " + MByteCount.ToString() + " MB");
Console.WriteLine("Total GBs : " + GByteCount.ToString() + " GB");
Console.WriteLine("Press Enter to Continue ...");
Console.ReadLine();
}
本准则包含在foreach
从开始日期到结束日期逐日进行的声明中。在该foreach
语句中,应用程序调用了一个存储过程,该存储过程被赋予了指定的日期来调用当天输入的记录。
变量i
并被j
创建是因为即使我有相同的案例编号,我也需要有一个唯一的文件名。 i
代表这一天(因为我在我的 select 语句中一天一天过去)并j
代表了 select 语句中那一天的记录号。
theforeach
和while
循环被封闭在 a 中using(conn)
,因此无论什么连接最终都会关闭。
在 while 循环结束时,我写入了文本文件。文本文件是在所有循环之外创建的,这样我就可以附加文件而不是覆盖它。该代码是:
string path = @"c:\\FolderName\\TextFile.txt";
if (!File.Exists(path))
{
TextWriter tw = new StreamWriter(path, false);
tw.WriteLine("Dock_No~Date~FileName(Location)~Description");
tw.Close();
}
我希望这对其他人有帮助。我省略了我正在寻找的功能所不需要的所有代码Console.Writeline
。Console.ReadLine
我还添加了一些代码来计算写入的字节数和一些代码来计算处理的记录。这只是有趣的东西,我需要在最后清理有趣的东西。
这些是从 SQL Server 中的 Blob 字段中完成大量 PDF 提取所需的勇气,减去一些 Connection Mumbo Jumbo
Foreach 日设置
这是我用来按照foreach
我想要的方式进行工作的代码。
static public IEnumerable<DateTime> EachDay(DateTime Startdate, DateTime EndDate)
{
for (var day = Startdate.Date; day.Date <= EndDate.Date; day = day.AddDays(1))
yield return day;
}