You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

931 lines
34 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Data.SqlClient;
  6. using System.Drawing;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using ManagementSystem.Utility;
  12. namespace ExportDataToFile
  13. {
  14. public partial class Form1 : Form
  15. {
  16. //參數設定
  17. int intExportIndex = -1;
  18. SqlConnection sqlSourceConn = new SqlConnection();
  19. SqlConnection sqlTargetConn = new SqlConnection();
  20. public Form1()
  21. {
  22. InitializeComponent();
  23. }
  24. private void btnSourceConnTest_Click(object sender, EventArgs e)
  25. {
  26. try
  27. {
  28. string strCheck = CheckSource();
  29. //查詢來源資料庫中的資料表
  30. string strIP = txtSourceIP.Text.Trim();
  31. string strDBName = txtSourceDBName.Text.Trim();
  32. string strID = txtSourceID.Text.Trim();
  33. string strPWD = txtSourcePWD.Text.Trim();
  34. if (strCheck == "")
  35. {
  36. if (cbSourceClass.Enabled)
  37. {
  38. LockSourceForm();
  39. switch (cbSourceClass.SelectedItem.ToString().Trim())
  40. {
  41. case "MS-SQL":
  42. sqlSourceConn = MSSQLUtility.GetConn(strIP, strDBName, strID, strPWD);
  43. ShowMSSQLSourceTables(sqlSourceConn);
  44. Application.DoEvents();
  45. break;
  46. case "MySQL":
  47. break;
  48. case "Oracle":
  49. break;
  50. case "PostgreSQL":
  51. break;
  52. }
  53. EnableExport(); //啟動匯出鈕
  54. }
  55. else
  56. {
  57. UnLockSourceForm();
  58. }
  59. }
  60. else
  61. {
  62. MessageBox.Show(strCheck);
  63. }
  64. }
  65. catch (Exception ex)
  66. {
  67. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  68. }
  69. }
  70. private void btnTargetConnTest_Click(object sender, EventArgs e)
  71. {
  72. try
  73. {
  74. string strCheck = CheckTarget();
  75. //查詢目標資料庫中的資料表
  76. string strIP = txtTargetIP.Text.Trim();
  77. string strDBName = txtTargetDBName.Text.Trim();
  78. string strID = txtTargetID.Text.Trim();
  79. string strPWD = txtTargetPWD.Text.Trim();
  80. if (strCheck == "")
  81. {
  82. if (cbTargetClass.Enabled)
  83. {
  84. LockTargetForm();
  85. switch (cbTargetClass.SelectedItem.ToString().Trim())
  86. {
  87. case "MS-SQL":
  88. sqlTargetConn = MSSQLUtility.GetConn(strIP, strDBName, strID, strPWD);
  89. ShowMSSQLTargetTableList(sqlTargetConn);
  90. Application.DoEvents();
  91. break;
  92. case "MySQL":
  93. break;
  94. case "Oracle":
  95. break;
  96. case "PostgreSQL":
  97. break;
  98. }
  99. EnableExport(); //啟動匯出鈕
  100. }
  101. else
  102. {
  103. UnLockTargetForm();
  104. }
  105. }
  106. else
  107. {
  108. MessageBox.Show(strCheck);
  109. }
  110. }
  111. catch (Exception ex)
  112. {
  113. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  114. }
  115. }
  116. private void dgvExportList_CellEndEdit(object sender, DataGridViewCellEventArgs e)
  117. {
  118. //try
  119. //{
  120. // dgvExportList.Rows[e.RowIndex].Cells["clExport"].Value = true;
  121. //}
  122. //catch (Exception ex)
  123. //{
  124. // ErrorHandler.WriteErrorLog("Form1.cs", ex);
  125. //}
  126. }
  127. private void dgvExportList_CellClick(object sender, DataGridViewCellEventArgs e)
  128. {
  129. try
  130. {
  131. if (intExportIndex != e.RowIndex)
  132. {
  133. LocatedTarget(e.RowIndex);
  134. }
  135. }
  136. catch (Exception ex)
  137. {
  138. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  139. }
  140. }
  141. private void dgvExportList_CellContentClick(object sender, DataGridViewCellEventArgs e)
  142. {
  143. try
  144. {
  145. var senderGrid = (DataGridView)sender;
  146. if (e.RowIndex >= 0)
  147. {
  148. //清除該列資料
  149. if (senderGrid.Columns[e.ColumnIndex] is DataGridViewButtonColumn)
  150. {
  151. CleanExpRow(dgvExportList, e.RowIndex);
  152. }
  153. }
  154. }
  155. catch (Exception ex)
  156. {
  157. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  158. }
  159. }
  160. private void cbTargetTable_SelectedIndexChanged(object sender, EventArgs e)
  161. {
  162. try
  163. {
  164. if (cbTargetTable.SelectedValue != null && intExportIndex != -1)
  165. {
  166. //重新修改DataGridView的ComboBox的內容
  167. switch (cbTargetClass.SelectedItem.ToString().Trim())
  168. {
  169. case "MS-SQL":
  170. ShowMSSQLTargetColumnList(sqlTargetConn, cbTargetTable.SelectedValue.ToString());
  171. break;
  172. case "MySQL":
  173. break;
  174. case "Oracle":
  175. break;
  176. case "PostgreSQL":
  177. break;
  178. }
  179. Application.DoEvents();
  180. }
  181. }
  182. catch (Exception ex)
  183. {
  184. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  185. }
  186. }
  187. private void dgvColumnMapping_CellContentClick(object sender, DataGridViewCellEventArgs e)
  188. {
  189. try
  190. {
  191. var senderGrid = (DataGridView)sender;
  192. //觸發清除事件
  193. if (senderGrid.Columns[e.ColumnIndex] is DataGridViewButtonColumn && e.RowIndex >= 0)
  194. {
  195. senderGrid.Rows[e.RowIndex].Cells["clExpColumn"].Value = false;
  196. ((DataGridViewComboBoxCell)senderGrid.Rows[e.RowIndex].Cells["clTargetColumn"]).Value = null;
  197. }
  198. }
  199. catch (Exception ex)
  200. {
  201. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  202. }
  203. }
  204. private void dgvColumnMapping_CellEndEdit(object sender, DataGridViewCellEventArgs e)
  205. {
  206. try
  207. {
  208. if (cbTargetTable.Enabled)
  209. {
  210. //dgvColumnMapping.Rows[e.RowIndex].Cells["clExpColumn"].Value = true;
  211. //dgvExportList.Rows[intExportIndex].Cells["clExport"].Value = true;
  212. }
  213. }
  214. catch (Exception ex)
  215. {
  216. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  217. }
  218. }
  219. private void btnExport_Click(object sender, EventArgs e)
  220. {
  221. try
  222. {
  223. if (cbSourceClass.SelectedIndex > 0)
  224. {
  225. string strPath = "";
  226. sfPath.AddExtension = false;
  227. sfPath.Filter = "All files (*.*)|*.*|SQL Files(*.sql)|*.sql|txt files(*.txt)|*.txt";
  228. sfPath.FileName = "Output" + DateTime.Now.ToString("_yyyyMMddHHmmss");
  229. if (sfPath.ShowDialog() == DialogResult.Cancel) //如果按下取消,放棄後面動作
  230. return;
  231. strPath = sfPath.FileName;
  232. switch (cbSourceClass.SelectedItem.ToString().Trim())
  233. {
  234. case "MS-SQL": //匯出MS-SQL檔
  235. ExportMSSQLData(sfPath.FileName,sfPath.DefaultExt);
  236. break;
  237. case "MySQL":
  238. break;
  239. case "Oracle":
  240. break;
  241. case "PostgreSQL":
  242. break;
  243. }
  244. }
  245. }
  246. catch (Exception ex)
  247. {
  248. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  249. }
  250. }
  251. private void Form1_FormClosing(object sender, FormClosingEventArgs e)
  252. {
  253. sqlSourceConn.Close();
  254. sqlSourceConn = null;
  255. sqlTargetConn.Close();
  256. sqlTargetConn = null;
  257. }
  258. private void btnMapping_Click(object sender, EventArgs e)
  259. {
  260. if (dgvColumnMapping.DataSource == null)
  261. return;
  262. //自動預設產生所有的Mapping檔案
  263. dgvExportList.Rows[intExportIndex].Cells["clMappingData"].Value = GenMappingColumn();
  264. dgvExportList.Rows[intExportIndex].Cells["clExport"].Value = true;
  265. //設定來源與目標的資料表對應
  266. if (cbTargetTable.SelectedValue != null)
  267. {
  268. dgvExportList.Rows[intExportIndex].Cells["clTargetTable"].Value = cbTargetTable.SelectedValue.ToString();
  269. }
  270. dgvExportList.Rows[intExportIndex].Cells["clWhere"].Value = txtWhere.Text.Trim();
  271. }
  272. #region 自定義功能
  273. #region MS-SQL
  274. public DataSet GetMSSQLResult(string strSQL)
  275. {
  276. DataSet dsData = new DataSet();
  277. try
  278. {
  279. using (SqlDataAdapter sqlAdapter = new SqlDataAdapter(strSQL, sqlSourceConn))
  280. {
  281. if (sqlSourceConn.State == ConnectionState.Closed) //判斷連線狀態
  282. {
  283. sqlSourceConn.Open();
  284. }
  285. sqlAdapter.Fill(dsData, "Result");
  286. }
  287. return dsData;
  288. }
  289. catch (Exception ex)
  290. {
  291. throw ex;
  292. }
  293. }
  294. private void ShowMSSQLSourceTables(SqlConnection sqlConn)
  295. {
  296. try
  297. {
  298. string strGetMSSQLTableList = "Select [name] as TableName from sys.tables order by name";
  299. dgvExportList.DataSource = MSSQLUtility.GetSQLResult(strGetMSSQLTableList, sqlConn).Tables["Result"];
  300. }
  301. catch (Exception ex)
  302. {
  303. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  304. }
  305. }
  306. private void ShowMSSQLTargetTableList(SqlConnection sqlConn)
  307. {
  308. try
  309. {
  310. string strGetMSSQLTableList = "Select [name] as TableName from sys.tables order by name";
  311. cbTargetTable.DataSource = MSSQLUtility.GetSQLResult(strGetMSSQLTableList, sqlConn).Tables["Result"];
  312. }
  313. catch (Exception ex)
  314. {
  315. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  316. }
  317. }
  318. private void ShowMSSQLSourceColumnList(SqlConnection sqlConn, string strTableName)
  319. {
  320. try
  321. {
  322. string strGetMSSQLColumnList = "Select COLUMN_NAME,DATA_TYPE From INFORMATION_SCHEMA.COLUMNS Where TABLE_NAME ='" + strTableName + "' Order by ORDINAL_POSITION";
  323. dgvColumnMapping.DataSource = MSSQLUtility.GetSQLResult(strGetMSSQLColumnList, sqlConn).Tables["Result"];
  324. }
  325. catch (Exception ex)
  326. {
  327. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  328. }
  329. }
  330. private void ShowMSSQLTargetColumnList(SqlConnection sqlConn, string strTableName)
  331. {
  332. try
  333. {
  334. string strGetMSSQLColumnList = "Select COLUMN_NAME From INFORMATION_SCHEMA.COLUMNS Where TABLE_NAME ='" + strTableName + "' Order by ORDINAL_POSITION";
  335. this.clTargetColumn.DisplayMember = "COLUMN_NAME";
  336. this.clTargetColumn.DataSource = MSSQLUtility.GetSQLResult(strGetMSSQLColumnList, sqlConn).Tables["Result"];
  337. Application.DoEvents();
  338. }
  339. catch (Exception ex)
  340. {
  341. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  342. }
  343. }
  344. private void ExportMSSQLData(string strPath,string subFileName)
  345. {
  346. int intDataCount = 0;
  347. int intMaxData = 0;
  348. string strSourceColumns = "";
  349. string strSourceCol = "";
  350. string strSourceTable = "";
  351. string strSourceType = "";
  352. string strTargetColumns = "";
  353. string strTargetCol = "";
  354. string strTargetTable = "";
  355. string strDeleteCommand = "";
  356. string strValues = "";
  357. string[] strColumns = null;
  358. string[,] strColumnResults = new string[dgvExportList.Rows.Count, 2];
  359. StringBuilder sbSelectCommand = new StringBuilder();
  360. //命令字串處理
  361. strSourceColumns = "";
  362. strTargetColumns = "";
  363. //取得欄位對應字串陣列
  364. foreach (DataGridViewRow dgvRow in dgvExportList.Rows)
  365. {
  366. if (dgvRow.Cells["clExport"].Value != null)
  367. {
  368. intDataCount = 0;
  369. intMaxData = 0;
  370. strColumns = null;
  371. sbSelectCommand.Clear();
  372. strSourceTable = "";
  373. strSourceColumns = "";
  374. strSourceType = "";
  375. strTargetTable = "";
  376. strTargetColumns = "";
  377. strDeleteCommand = "";
  378. strValues = "";
  379. DataTable dtResult = null;
  380. //取得欄位對應
  381. if (dgvRow.Cells["clMappingData"].Value != null)
  382. {
  383. strColumns = dgvRow.Cells["clMappingData"].Value.ToString().Split('|');
  384. }
  385. //取得欄位上限
  386. if (dgvRow.Cells["clMaxRecord"].Value != null)
  387. {
  388. intMaxData = Int32.Parse(dgvRow.Cells["clMaxRecord"].Value.ToString());
  389. }
  390. #region 產生來源資料查詢命令
  391. foreach (string RowData in strColumns)
  392. {
  393. strSourceCol = RowData.Substring(0, RowData.IndexOf(',')).Trim();
  394. strSourceType = RowData.Substring(RowData.IndexOf(',') + 1, RowData.IndexOf(';') - 1 - RowData.IndexOf(',')).Trim();
  395. strTargetCol = RowData.Substring(RowData.IndexOf(';') + 1).Trim();
  396. if (strTargetCol == "")
  397. {
  398. strTargetCol = strSourceCol;
  399. }
  400. if (strSourceColumns == "")
  401. {
  402. strSourceColumns += ConvertMSSQLColumnType(strSourceCol, strTargetCol, strSourceType);
  403. strTargetColumns += "[" + strTargetCol + "]";
  404. }
  405. else
  406. {
  407. strSourceColumns += "," + ConvertMSSQLColumnType(strSourceCol, strTargetCol, strSourceType);
  408. strTargetColumns += ",[" + strTargetCol + "]";
  409. }
  410. }
  411. if (dgvRow.Cells["clSourceTable"].Value != null)
  412. {
  413. strSourceTable = dgvRow.Cells["clSourceTable"].Value.ToString();
  414. sbSelectCommand.AppendLine(string.Format("Select {0} From {1} ", strSourceColumns, strSourceTable));
  415. }
  416. if (dgvRow.Cells["clWhere"].Value != null)
  417. {
  418. if (dgvRow.Cells["clWhere"].Value.ToString().Trim() != "")
  419. {
  420. sbSelectCommand.AppendLine("Where 1=1 And " + dgvRow.Cells["clWhere"].Value.ToString());
  421. }
  422. }
  423. #endregion
  424. #region 產生匯出資料語法
  425. dtResult = GetMSSQLResult(sbSelectCommand.ToString()).Tables["Result"];
  426. if (dtResult.Rows.Count > 0)
  427. {
  428. if (dgvRow.Cells["clTargetTable"].Value != null)
  429. {
  430. strTargetTable = dgvRow.Cells["clTargetTable"].Value.ToString();
  431. Utility.WriteFile(strPath + ".sql", " ");
  432. Utility.WriteFile(strPath + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable));
  433. Utility.WriteFile(strPath + ".sql", string.Format("raiserror('Now Insert {0} Datas .... ', 1, 1)", strTargetTable));
  434. Utility.WriteFile(strPath + ".sql", "Go");
  435. }
  436. //勾選清除目標資料表
  437. if (dgvRow.Cells["clTableDel"].Value != null)
  438. {
  439. strDeleteCommand = string.Format("Delete From {0} ", strTargetTable);
  440. if (dgvRow.Cells["clWhere"].Value != null)
  441. {
  442. if (dgvRow.Cells["clWhere"].Value.ToString().Trim() != "")
  443. {
  444. strDeleteCommand += "Where 1=1 And " + dgvRow.Cells["clWhere"].Value.ToString();
  445. }
  446. }
  447. Utility.WriteFile(strPath + ".sql", strDeleteCommand + ";");
  448. Utility.WriteFile(strPath + ".sql", "Go");
  449. }
  450. //處理筆數上限似資料匯出
  451. string strFileCount = "";
  452. foreach (DataRow dr in dtResult.Rows)
  453. {
  454. strFileCount = (intDataCount / intMaxData).ToString(); //切分檔案
  455. foreach (DataColumn dc in dtResult.Columns)
  456. {
  457. if (strValues == "")
  458. {
  459. strValues = ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString());
  460. }
  461. else
  462. {
  463. strValues += "," + ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString());
  464. }
  465. }
  466. if (intMaxData == 0)
  467. {
  468. //無設定最大筆數
  469. Utility.WriteFile(strPath + ".sql", string.Format("Insert Into {0} ({1}) Values ({2}) ", strTargetTable, strTargetColumns, strValues));
  470. }
  471. else
  472. {
  473. //有設定最大筆數
  474. if (strFileCount == "0")
  475. strFileCount = "";
  476. Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("Insert Into {0} ({1}) Values ({2}) ", strTargetTable, strTargetColumns, strValues));
  477. }
  478. intDataCount += 1;
  479. strValues = ""; //清除已經存在的資料
  480. }
  481. Utility.WriteFile(strPath + strFileCount + ".sql", "Go");
  482. }
  483. }
  484. #endregion
  485. }
  486. MessageBox.Show("匯出完成");
  487. }
  488. #endregion //End of MS-SQL
  489. private string CheckSource()
  490. {
  491. try
  492. {
  493. string strResult = "";
  494. if (cbSourceClass.SelectedIndex <= 0)
  495. {
  496. strResult = "請選擇來源資料庫類別";
  497. cbSourceClass.Focus();
  498. return strResult;
  499. }
  500. else
  501. {
  502. if (txtSourceIP.Text.Trim() == "")
  503. {
  504. strResult = "來源資料庫IP為必填";
  505. txtSourceIP.Focus();
  506. return strResult;
  507. }
  508. if (txtSourceDBName.Text.Trim() == "")
  509. {
  510. strResult = "來源資料庫名稱為必填";
  511. txtSourceDBName.Focus();
  512. return strResult;
  513. }
  514. if (txtSourceID.Text.Trim() == "")
  515. {
  516. strResult = "來源資料庫帳號為必填";
  517. txtSourceID.Focus();
  518. return strResult;
  519. }
  520. }
  521. return strResult;
  522. }
  523. catch (Exception ex)
  524. {
  525. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  526. return "發生不明錯誤!";
  527. }
  528. }
  529. private string CheckTarget()
  530. {
  531. try
  532. {
  533. string strResult = "";
  534. if (cbTargetClass.SelectedIndex <= 0)
  535. {
  536. strResult = "請選擇目標資料庫類別";
  537. cbTargetClass.Focus();
  538. return strResult;
  539. }
  540. else
  541. {
  542. if (txtTargetIP.Text.Trim() == "")
  543. {
  544. strResult = "目標資料庫IP為必填";
  545. txtTargetIP.Focus();
  546. return strResult;
  547. }
  548. if (txtTargetDBName.Text.Trim() == "")
  549. {
  550. strResult = "目標資料庫名稱為必填";
  551. txtTargetDBName.Focus();
  552. return strResult;
  553. }
  554. if (txtTargetID.Text.Trim() == "")
  555. {
  556. strResult = "目標資料庫帳號為必填";
  557. txtTargetID.Focus();
  558. return strResult;
  559. }
  560. }
  561. return strResult;
  562. }
  563. catch (Exception ex)
  564. {
  565. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  566. return "發生不明錯誤!";
  567. }
  568. }
  569. private void LockSourceForm()
  570. {
  571. try
  572. {
  573. cbSourceClass.Enabled = false;
  574. txtSourceIP.Enabled = false;
  575. txtSourceID.Enabled = false;
  576. txtSourceDBName.Enabled = false;
  577. txtSourcePWD.Enabled = false;
  578. btnSourceConnTest.Text = "連線中…";
  579. }
  580. catch (Exception ex)
  581. {
  582. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  583. }
  584. }
  585. private void UnLockSourceForm()
  586. {
  587. try
  588. {
  589. cbSourceClass.Enabled = true;
  590. txtSourceIP.Enabled = true;
  591. txtSourceID.Enabled = true;
  592. txtSourceDBName.Enabled = true;
  593. txtSourcePWD.Enabled = true;
  594. btnSourceConnTest.Text = "建立來源連線";
  595. }
  596. catch (Exception ex)
  597. {
  598. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  599. }
  600. }
  601. private void LockTargetForm()
  602. {
  603. try
  604. {
  605. cbTargetClass.Enabled = false;
  606. cbTargetTable.Enabled = true;
  607. cbTargetTable.SelectedIndex = -1;
  608. txtTargetIP.Enabled = false;
  609. txtTargetID.Enabled = false;
  610. txtTargetDBName.Enabled = false;
  611. txtTargetPWD.Enabled = false;
  612. btnTargetConnTest.Text = "連線中…";
  613. }
  614. catch (Exception ex)
  615. {
  616. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  617. }
  618. }
  619. private void UnLockTargetForm()
  620. {
  621. try
  622. {
  623. cbTargetClass.Enabled = true;
  624. cbTargetTable.DataSource = null;
  625. cbTargetTable.Enabled = false;
  626. txtTargetIP.Enabled = true;
  627. txtTargetID.Enabled = true;
  628. txtTargetDBName.Enabled = true;
  629. txtTargetPWD.Enabled = true;
  630. btnTargetConnTest.Text = "建立目標連線";
  631. }
  632. catch (Exception ex)
  633. {
  634. ErrorHandler.WriteErrorLog("Form1.cs", ex);
  635. }
  636. }
  637. private string GenMappingColumn()
  638. {
  639. string strExportColumns = "";
  640. string strSourceColumn = "";
  641. string strTargetColumn = "";
  642. string strSourceColType = "";
  643. //預設所有欄位均匯出
  644. foreach (DataGridViewRow dgRow in dgvColumnMapping.Rows)
  645. {
  646. //處理下拉欄位空白的問題
  647. if (dgRow.Cells["clExpColumn"].Value != null)
  648. {
  649. if ((bool)dgRow.Cells["clExpColumn"].Value == true)
  650. {
  651. if (dgRow.Cells["clSourceColumn"].Value == null)
  652. {
  653. strSourceColumn = " ";
  654. }
  655. else
  656. {
  657. strSourceColumn = dgRow.Cells["clSourceColumn"].Value.ToString();
  658. }
  659. if (dgRow.Cells["clType"].Value == null)
  660. {
  661. strSourceColType = " ";
  662. }
  663. else
  664. {
  665. strSourceColType = dgRow.Cells["clType"].Value.ToString();
  666. }
  667. if (dgRow.Cells["clTargetColumn"].Value == null)
  668. {
  669. strTargetColumn = " ";
  670. }
  671. else
  672. {
  673. strTargetColumn = dgRow.Cells["clTargetColumn"].Value.ToString();
  674. }
  675. if (strExportColumns == "")
  676. {
  677. strExportColumns += strSourceColumn + "," + strSourceColType + ";" + strTargetColumn;
  678. }
  679. else
  680. {
  681. strExportColumns += "|" + strSourceColumn + "," + strSourceColType + ";" + strTargetColumn;
  682. }
  683. }
  684. }
  685. }
  686. return strExportColumns;
  687. }
  688. private void LocatedTarget(int intRowIndex)
  689. {
  690. if (cbTargetClass.SelectedIndex >= 0 && cbTargetClass.Enabled == false)
  691. {
  692. //cbTargetTable.SelectedValue = dgvExportList.Rows[intRowIndex].Cells["clSourceTable"].Value.ToString();
  693. string strTarget = "";
  694. string[] strColumnMapping = null;
  695. if (intRowIndex != -1)
  696. {
  697. intExportIndex = intRowIndex;
  698. //設定目標Table下拉式選單的內容
  699. if (dgvExportList.Rows[intRowIndex].Cells["clTargetTable"].Value != null && dgvExportList.Rows[intRowIndex].Cells["clTargetTable"].Value.ToString() != "")
  700. {
  701. strTarget = dgvExportList.Rows[intRowIndex].Cells["clTargetTable"].Value.ToString();
  702. }
  703. else
  704. {
  705. strTarget = dgvExportList.Rows[intRowIndex].Cells["clSourceTable"].Value.ToString();
  706. }
  707. cbTargetTable.SelectedValue = strTarget;
  708. //取得欄位對應字串陣列
  709. if (dgvExportList.Rows[intRowIndex].Cells["clMappingData"].Value != null)
  710. {
  711. strColumnMapping = dgvExportList.Rows[intRowIndex].Cells["clMappingData"].Value.ToString().Split('|');
  712. }
  713. //顯示欄位對應表的內容
  714. if (cbTargetTable.SelectedValue != null)
  715. {
  716. switch (cbTargetClass.SelectedItem.ToString().Trim())
  717. {
  718. case "MS-SQL":
  719. ShowMSSQLSourceColumnList(sqlSourceConn, strTarget.ToString());
  720. Application.DoEvents();
  721. break;
  722. case "MySQL":
  723. break;
  724. case "Oracle":
  725. break;
  726. case "PostgreSQL":
  727. break;
  728. }
  729. }
  730. if (strColumnMapping != null)
  731. {
  732. string strSourceColumn = "";
  733. string strTargetColumn = "";
  734. foreach (string strColumn in strColumnMapping)
  735. {
  736. strSourceColumn = strColumn.Substring(0, strColumn.IndexOf(',')).Trim();
  737. strTargetColumn = strColumn.Substring(strColumn.IndexOf(',') + 1).Trim();
  738. foreach (DataGridViewRow dgvRow in dgvColumnMapping.Rows)
  739. {
  740. if (dgvRow.Cells["clSourceColumn"].Value.ToString() == strSourceColumn)
  741. {
  742. dgvRow.Cells[0].Value = true;
  743. }
  744. }
  745. }
  746. }
  747. else
  748. {
  749. //預設所有欄位均匯出
  750. foreach (DataGridViewRow dgRow in dgvColumnMapping.Rows)
  751. {
  752. ((DataGridViewCheckBoxCell)dgRow.Cells["clExpColumn"]).Value = true;
  753. }
  754. }
  755. //設定Where條件
  756. if (dgvExportList.Rows[intRowIndex].Cells["clWhere"].Value != null)
  757. {
  758. txtWhere.Text = dgvExportList.Rows[intRowIndex].Cells["clWhere"].Value.ToString();
  759. }
  760. else
  761. {
  762. txtWhere.Text = "";
  763. }
  764. }
  765. }
  766. }
  767. private void CleanExpRow(DataGridView senderGrid, int intRowIndex)
  768. {
  769. senderGrid.Rows[intRowIndex].Cells["clExport"].Value = false;
  770. senderGrid.Rows[intRowIndex].Cells["clTargetTable"].Value = "";
  771. senderGrid.Rows[intRowIndex].Cells["clTableDel"].Value = false;
  772. senderGrid.Rows[intRowIndex].Cells["clMaxRecord"].Value = "";
  773. senderGrid.Rows[intRowIndex].Cells["clWhere"].Value = "";
  774. senderGrid.Rows[intRowIndex].Cells["clMappingData"].Value = "";
  775. CleanMappingRow(senderGrid, intRowIndex);
  776. txtWhere.Text = "";
  777. Application.DoEvents();
  778. }
  779. private void CleanMappingRow(DataGridView senderGrid,int intRowIndex)
  780. {
  781. DataTable CleanTable = (DataTable)dgvColumnMapping.DataSource;
  782. CleanTable.Rows.Clear();
  783. dgvColumnMapping.DataSource = CleanTable;
  784. }
  785. private void EnableExport()
  786. {
  787. if (sqlSourceConn.State.ToString().ToUpper() == "OPEN" && sqlTargetConn.State.ToString().ToUpper() == "OPEN")
  788. {
  789. btnExport.Enabled = true;
  790. }
  791. }
  792. private string ConvertMSSQLColumnType(string strSourceCol, string strTargetCol, string strType)
  793. {
  794. switch (strType.ToUpper())
  795. {
  796. case "VARCHAR":
  797. return "[" + strSourceCol + "] AS " + strTargetCol ;
  798. case "VAR":
  799. return "[" + strSourceCol + "] AS " + strTargetCol ;
  800. case "INT":
  801. return "[" + strSourceCol + "] AS " + strTargetCol;
  802. case "DATETIME":
  803. return "Convert(varchar,[" + strSourceCol + "],21) AS " + strTargetCol;
  804. default:
  805. return "[" + strSourceCol + "] AS " + strTargetCol;
  806. }
  807. }
  808. private string ConvertMSSQLDataType(string strData, string strType)
  809. {
  810. if(strData == "")
  811. {
  812. return "Null";
  813. }
  814. switch (strType.ToUpper())
  815. {
  816. case "STRING":
  817. return "'" + strData.ToString().Trim() + "'";
  818. case "INT32":
  819. return strData.ToString().Trim();
  820. case "DECIMAL":
  821. return strData.ToString().Trim();
  822. default:
  823. return "'" + strData.ToString().Trim() + "'";
  824. }
  825. }
  826. #endregion
  827. }
  828. }