私はいくつかのレコードを含むExcelファイルを持っていて、1秒以内にそのリフレッシュを記録します。すべてのレコードをSQL Serverデータベースに保存したい。だから私の意図は、500ミリ秒ごとにこのファイルから私のデータベースにデータを読み込むことです。私は正常にデータを読んで私のデータベースに保存することができました。しかし、数分後、応答が遅くなり応答しない状態になります。Cで500ミリ秒ごとにExcelファイルからデータを読み取る#
Excel._Application excel = (Excel._Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application");
clsDBOLiveData objDBOLiveData = new clsDBOLiveData();
clsDatabase objDatabase = new clsDatabase();
private static System.Timers.Timer aTimerLive_1;
private static System.Timers.Timer aTimerHist_1;
private static System.Timers.Timer aTimerLive_2;
private static System.Timers.Timer aTimerHist_2;
//Here I declare all variables.
public TradeData()
{
SetTimer1_Data();
SetTimer2_Data();
SetTimerHist_1_Data();
SetTimerHist_2_Data();
}
private void SetTimerLiveMCX_1_Data()
{
aTimerLive_1 = new System.Timers.Timer(500);
aTimerLive_1.Elapsed += OnTimedEvent_1;
aTimerLive_1.AutoReset = true;
aTimerLive_1.Enabled = true;
}
private void OnTimedEvent_1(Object source, ElapsedEventArgs e)
{
try
{
Excel.Workbook workbook = excel.Workbooks[1];
Excel.Worksheet workSheet = workbook.Worksheets.get_Item(1);
Excel.Range range = workSheet.UsedRange;
for (int j = 3; j < range.Rows.Count; j = j + 5)
{
if ((range.Cells[j, 2] as Excel.Range).Value2 == null || Convert.ToString((range.Cells[j, 2] as Excel.Range).Value2)=="")
continue;
clsDBOLiveData objDBOLiveData = new clsDBOLiveData();
objDBOLiveData.SYMBOL_NAME = (string)(range.Cells[j, 8] as Excel.Range).Value2;
objDBOLiveData.BAR_TIME= (double)(range.Cells[j, 2] as Excel.Range).Value2;
objDBOLiveData.HIGH= (decimal)(range.Cells[j, 3] as Excel.Range).Value2;
objDBOLiveData.LAST = (decimal)(range.Cells[j, 4] as Excel.Range).Value2;
objDBOLiveData.LOW = (decimal)(range.Cells[j, 5] as Excel.Range).Value2;
objDBOLiveData.OPEN = (decimal)(range.Cells[j, 6] as Excel.Range).Value2;
objDBOLiveData.VOLUME = (decimal)(range.Cells[j, 7] as Excel.Range).Value2;
objDBOLiveData.STATUS = (string)(range.Cells[j, 9] as Excel.Range).Value2;
string strErrorMgs = "";
if (!objDatabase.SaveData_1(objDBOLiveData, ref strErrorMgs)){}
}
}
catch(Exception ex)
{
}
}
このサンプルのように、リリースまたは廃棄してください。http://stackoverflow.com/questions/158706/how-to-properly-clean-up-excel-interop-objects –
ヒントは一切役立ちましたか? –