|
@ -12,6 +12,7 @@ using System.Threading.Tasks; |
|
|
using System.Windows.Forms; |
|
|
using System.Windows.Forms; |
|
|
using Npgsql; |
|
|
using Npgsql; |
|
|
using MySqlConnector; |
|
|
using MySqlConnector; |
|
|
|
|
|
using Oracle.ManagedDataAccess.Client; |
|
|
using ManagementSystem.Utility; |
|
|
using ManagementSystem.Utility; |
|
|
|
|
|
|
|
|
namespace ExportDataToFile |
|
|
namespace ExportDataToFile |
|
@ -26,14 +27,17 @@ namespace ExportDataToFile |
|
|
string strTargetClass = ""; |
|
|
string strTargetClass = ""; |
|
|
|
|
|
|
|
|
//MS-SQL
|
|
|
//MS-SQL
|
|
|
SqlConnection sqlMSSourceConn = new SqlConnection(); |
|
|
|
|
|
SqlConnection sqlMSTargetConn = new SqlConnection(); |
|
|
|
|
|
|
|
|
SqlConnection sqlMSSourceConn = null; //new SqlConnection();
|
|
|
|
|
|
SqlConnection sqlMSTargetConn = null; //new SqlConnection();
|
|
|
//PostgreSQL
|
|
|
//PostgreSQL
|
|
|
NpgsqlConnection sqlPsgSourceConn = new NpgsqlConnection(); |
|
|
|
|
|
NpgsqlConnection sqlPsgTargetConn = new NpgsqlConnection(); |
|
|
|
|
|
|
|
|
NpgsqlConnection sqlPsgSourceConn = null; //new NpgsqlConnection();
|
|
|
|
|
|
NpgsqlConnection sqlPsgTargetConn = null; //new NpgsqlConnection();
|
|
|
//MySQL
|
|
|
//MySQL
|
|
|
MySqlConnection sqlMySourceConn = new MySqlConnection(); |
|
|
|
|
|
MySqlConnection sqlMyTargetConn = new MySqlConnection(); |
|
|
|
|
|
|
|
|
MySqlConnection sqlMySourceConn = null; //new MySqlConnection();
|
|
|
|
|
|
MySqlConnection sqlMyTargetConn = null; //new MySqlConnection();
|
|
|
|
|
|
//Oracle
|
|
|
|
|
|
OracleConnection sqlOraSourceConn = null; //new OracleConnection();
|
|
|
|
|
|
OracleConnection sqlOraTargetConn = null; //new OracleConnection();
|
|
|
|
|
|
|
|
|
public Form1() |
|
|
public Form1() |
|
|
{ |
|
|
{ |
|
@ -67,6 +71,10 @@ namespace ExportDataToFile |
|
|
switch (cbSourceClass.SelectedItem.ToString().Trim()) |
|
|
switch (cbSourceClass.SelectedItem.ToString().Trim()) |
|
|
{ |
|
|
{ |
|
|
case "MS-SQL": |
|
|
case "MS-SQL": |
|
|
|
|
|
//MS-SQL
|
|
|
|
|
|
sqlMSSourceConn = new SqlConnection(); |
|
|
|
|
|
sqlMSTargetConn = new SqlConnection(); |
|
|
|
|
|
|
|
|
sqlMSSourceConn = MSSQLUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
sqlMSSourceConn = MSSQLUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
if (sqlMSSourceConn == null) |
|
|
if (sqlMSSourceConn == null) |
|
|
{ |
|
|
{ |
|
@ -77,6 +85,10 @@ namespace ExportDataToFile |
|
|
Application.DoEvents(); |
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
|
case "MySQL": |
|
|
case "MySQL": |
|
|
|
|
|
//MySQL
|
|
|
|
|
|
sqlMySourceConn = new MySqlConnection(); |
|
|
|
|
|
sqlMyTargetConn = new MySqlConnection(); |
|
|
|
|
|
|
|
|
sqlMySourceConn = MySQLUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
sqlMySourceConn = MySQLUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
if (sqlMySourceConn == null) |
|
|
if (sqlMySourceConn == null) |
|
|
{ |
|
|
{ |
|
@ -88,10 +100,25 @@ namespace ExportDataToFile |
|
|
Application.DoEvents(); |
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
//Oracle
|
|
|
|
|
|
sqlOraSourceConn = new OracleConnection(); |
|
|
|
|
|
sqlOraTargetConn = new OracleConnection(); |
|
|
|
|
|
|
|
|
|
|
|
sqlOraSourceConn = OracleUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
|
|
|
if (sqlOraSourceConn == null) |
|
|
|
|
|
{ |
|
|
|
|
|
MessageBox.Show("連線失敗,請查詢連線資訊"); |
|
|
|
|
|
} |
|
|
|
|
|
dtResult = ShowOracleTableList(sqlOraSourceConn, strDBName); |
|
|
|
|
|
|
|
|
strSourceClass = "Oracle"; |
|
|
strSourceClass = "Oracle"; |
|
|
Application.DoEvents(); |
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
|
|
|
//PostgreSQL
|
|
|
|
|
|
sqlPsgSourceConn = new NpgsqlConnection(); |
|
|
|
|
|
sqlPsgTargetConn = new NpgsqlConnection(); |
|
|
|
|
|
|
|
|
sqlPsgSourceConn = PostgreSQLUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
sqlPsgSourceConn = PostgreSQLUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
if (sqlPsgSourceConn == null) |
|
|
if (sqlPsgSourceConn == null) |
|
|
{ |
|
|
{ |
|
@ -157,6 +184,8 @@ namespace ExportDataToFile |
|
|
Application.DoEvents(); |
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
sqlOraTargetConn = OracleUtility.GetConn(strIP, strDBName, strID, strPWD, strPort); |
|
|
|
|
|
dtResult = ShowOracleTableList(sqlOraTargetConn, strDBName); |
|
|
strTargetClass = "Oracle"; |
|
|
strTargetClass = "Oracle"; |
|
|
Application.DoEvents(); |
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
@ -167,7 +196,6 @@ namespace ExportDataToFile |
|
|
break; |
|
|
break; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
//cbTargetTable.ValueMember = "name";
|
|
|
|
|
|
cbTargetTable.DataSource = dtResult; |
|
|
cbTargetTable.DataSource = dtResult; |
|
|
cbTargetTable.SelectedIndex = -1; |
|
|
cbTargetTable.SelectedIndex = -1; |
|
|
blTargetConnStatus = true; |
|
|
blTargetConnStatus = true; |
|
@ -177,6 +205,7 @@ namespace ExportDataToFile |
|
|
else |
|
|
else |
|
|
{ |
|
|
{ |
|
|
UnLockTargetForm(); |
|
|
UnLockTargetForm(); |
|
|
|
|
|
Form1_FormClosing(null,null); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
else |
|
|
else |
|
@ -253,7 +282,8 @@ namespace ExportDataToFile |
|
|
this.clTargetColumn.DisplayMember = "Field"; |
|
|
this.clTargetColumn.DisplayMember = "Field"; |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
|
|
|
|
|
|
dtResult = ShowOracleColumnList(sqlOraTargetConn, cbTargetTable.SelectedValue.ToString()); |
|
|
|
|
|
this.clTargetColumn.DisplayMember = "COLUMN_NAME"; |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
dtResult = ShowPostgreSQLColumnList(sqlPsgTargetConn, cbTargetTable.SelectedValue.ToString()); |
|
|
dtResult = ShowPostgreSQLColumnList(sqlPsgTargetConn, cbTargetTable.SelectedValue.ToString()); |
|
@ -314,7 +344,7 @@ namespace ExportDataToFile |
|
|
ExportToMySQLData(sfPath.FileName, sfPath.DefaultExt); |
|
|
ExportToMySQLData(sfPath.FileName, sfPath.DefaultExt); |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
|
|
|
|
|
|
ExportToOracleData(sfPath.FileName, sfPath.DefaultExt); |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
ExportToPostgreSQLData(sfPath.FileName, sfPath.DefaultExt); |
|
|
ExportToPostgreSQLData(sfPath.FileName, sfPath.DefaultExt); |
|
@ -332,20 +362,25 @@ namespace ExportDataToFile |
|
|
private void Form1_FormClosing(object sender, FormClosingEventArgs e) |
|
|
private void Form1_FormClosing(object sender, FormClosingEventArgs e) |
|
|
{ |
|
|
{ |
|
|
//MS-SQL
|
|
|
//MS-SQL
|
|
|
sqlMSSourceConn.Close(); |
|
|
|
|
|
|
|
|
//sqlMSSourceConn.Close();
|
|
|
sqlMSSourceConn = null; |
|
|
sqlMSSourceConn = null; |
|
|
sqlMSTargetConn.Close(); |
|
|
|
|
|
|
|
|
//sqlMSTargetConn.Close();
|
|
|
sqlMSTargetConn = null; |
|
|
sqlMSTargetConn = null; |
|
|
//PostgreSQL
|
|
|
//PostgreSQL
|
|
|
sqlPsgSourceConn.Close(); |
|
|
|
|
|
|
|
|
//sqlPsgSourceConn.Close();
|
|
|
sqlPsgSourceConn = null; |
|
|
sqlPsgSourceConn = null; |
|
|
sqlPsgTargetConn.Close(); |
|
|
|
|
|
|
|
|
//sqlPsgTargetConn.Close();
|
|
|
sqlPsgTargetConn = null; |
|
|
sqlPsgTargetConn = null; |
|
|
//MySQL
|
|
|
//MySQL
|
|
|
sqlMySourceConn.Close(); |
|
|
|
|
|
|
|
|
//sqlMySourceConn.Close();
|
|
|
sqlMySourceConn = null; |
|
|
sqlMySourceConn = null; |
|
|
sqlMyTargetConn.Close(); |
|
|
|
|
|
|
|
|
//sqlMyTargetConn.Close();
|
|
|
sqlMyTargetConn = null; |
|
|
sqlMyTargetConn = null; |
|
|
|
|
|
//Oracle
|
|
|
|
|
|
//sqlOraSourceConn.Close();
|
|
|
|
|
|
sqlOraSourceConn = null; |
|
|
|
|
|
//sqlOraTargetConn.Close();
|
|
|
|
|
|
sqlOraTargetConn = null; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private void btnMapping_Click(object sender, EventArgs e) |
|
|
private void btnMapping_Click(object sender, EventArgs e) |
|
@ -566,16 +601,24 @@ namespace ExportDataToFile |
|
|
cbTargetTable.SelectedIndex = -1; |
|
|
cbTargetTable.SelectedIndex = -1; |
|
|
cbTargetTable.Enabled = false; |
|
|
cbTargetTable.Enabled = false; |
|
|
|
|
|
|
|
|
//dgvExportList.DataSource = null;
|
|
|
|
|
|
//dgvExportList.Refresh();
|
|
|
|
|
|
//dgvColumnMapping.DataSource = null;
|
|
|
|
|
|
//dgvColumnMapping.Refresh();
|
|
|
|
|
|
sqlMSSourceConn.Close(); |
|
|
|
|
|
sqlMSTargetConn.Close(); |
|
|
|
|
|
sqlPsgSourceConn.Close(); |
|
|
|
|
|
sqlPsgTargetConn.Close(); |
|
|
|
|
|
sqlMySourceConn.Close(); |
|
|
|
|
|
sqlMyTargetConn.Close(); |
|
|
|
|
|
|
|
|
//sqlMSSourceConn.Close();
|
|
|
|
|
|
//sqlMSTargetConn.Close();
|
|
|
|
|
|
//sqlPsgSourceConn.Close();
|
|
|
|
|
|
//sqlPsgTargetConn.Close();
|
|
|
|
|
|
//sqlMySourceConn.Close();
|
|
|
|
|
|
//sqlMyTargetConn.Close();
|
|
|
|
|
|
//sqlOraSourceConn.Close();
|
|
|
|
|
|
//sqlOraTargetConn.Close();
|
|
|
|
|
|
|
|
|
|
|
|
sqlMSSourceConn = null; |
|
|
|
|
|
sqlMSTargetConn = null; |
|
|
|
|
|
sqlPsgSourceConn = null; |
|
|
|
|
|
sqlPsgTargetConn = null; |
|
|
|
|
|
sqlMySourceConn = null; |
|
|
|
|
|
sqlMyTargetConn = null; |
|
|
|
|
|
sqlOraSourceConn = null; |
|
|
|
|
|
sqlOraTargetConn = null; |
|
|
|
|
|
|
|
|
btnImportXML.Enabled = true; |
|
|
btnImportXML.Enabled = true; |
|
|
btnExportXML.Enabled = false; |
|
|
btnExportXML.Enabled = false; |
|
|
btnExport.Enabled = false; |
|
|
btnExport.Enabled = false; |
|
@ -745,6 +788,7 @@ namespace ExportDataToFile |
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
dtResult = GetOracleResult(strSelectCommand, sqlOraSourceConn).Tables["Result"]; |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
@ -768,7 +812,6 @@ namespace ExportDataToFile |
|
|
{ |
|
|
{ |
|
|
//無設定最大筆數
|
|
|
//無設定最大筆數
|
|
|
Utility.WriteFile(strPath + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + ".sql", string.Format("raiserror('Now Insert {0} Datas .... ', 1, 1)", strTargetTable)); |
|
|
|
|
|
Utility.WriteFile(strPath + ".sql", "Go"); |
|
|
Utility.WriteFile(strPath + ".sql", "Go"); |
|
|
Utility.WriteFile(strPath + ".sql", " "); |
|
|
Utility.WriteFile(strPath + ".sql", " "); |
|
|
} |
|
|
} |
|
@ -779,7 +822,6 @@ namespace ExportDataToFile |
|
|
strFileCount = ""; |
|
|
strFileCount = ""; |
|
|
|
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("raiserror('Now Insert {0} Datas .... ', 1, 1)", strTargetTable)); |
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", "Go"); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", "Go"); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", " "); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", " "); |
|
|
} |
|
|
} |
|
@ -822,11 +864,28 @@ namespace ExportDataToFile |
|
|
{ |
|
|
{ |
|
|
if (strValues == "") |
|
|
if (strValues == "") |
|
|
{ |
|
|
{ |
|
|
strValues = ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
|
|
|
switch (dc.DataType.ToString().ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "SYSTEM.DATETIME": |
|
|
|
|
|
strValues = ConvertMSSQLDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
default: |
|
|
|
|
|
strValues = ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else |
|
|
else |
|
|
{ |
|
|
{ |
|
|
strValues += "," + ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
|
|
|
switch (dc.DataType.ToString().ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "SYSTEM.DATETIME": |
|
|
|
|
|
strValues += "," + ConvertMSSQLDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
default: |
|
|
|
|
|
strValues += "," + ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -895,6 +954,7 @@ namespace ExportDataToFile |
|
|
return "[" + strSourceCol + "] AS " + strTargetCol; |
|
|
return "[" + strSourceCol + "] AS " + strTargetCol; |
|
|
case "DATETIME": |
|
|
case "DATETIME": |
|
|
return "Convert(varchar,[" + strSourceCol + "],21) AS " + strTargetCol; |
|
|
return "Convert(varchar,[" + strSourceCol + "],21) AS " + strTargetCol; |
|
|
|
|
|
//return "[" + strSourceCol + "] AS " + strTargetCol;
|
|
|
default: |
|
|
default: |
|
|
return "[" + strSourceCol + "] AS " + strTargetCol; |
|
|
return "[" + strSourceCol + "] AS " + strTargetCol; |
|
|
} |
|
|
} |
|
@ -918,6 +978,11 @@ namespace ExportDataToFile |
|
|
return "'" + strData.ToString().Trim() + "'"; |
|
|
return "'" + strData.ToString().Trim() + "'"; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private string ConvertMSSQLDataType(DateTime dtData, string strType) |
|
|
|
|
|
{ |
|
|
|
|
|
return "'" + dtData.ToString("yyyy-MM-dd HH:mm:ss") + "'"; |
|
|
|
|
|
} |
|
|
#endregion //End of MS-SQL
|
|
|
#endregion //End of MS-SQL
|
|
|
|
|
|
|
|
|
#region PostgreSQL
|
|
|
#region PostgreSQL
|
|
@ -1057,6 +1122,7 @@ namespace ExportDataToFile |
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
dtResult = GetOracleResult(strSelectCommand, sqlOraSourceConn).Tables["Result"]; |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
@ -1081,7 +1147,6 @@ namespace ExportDataToFile |
|
|
{ |
|
|
{ |
|
|
//無設定最大筆數
|
|
|
//無設定最大筆數
|
|
|
Utility.WriteFile(strPath + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + ".sql", string.Format("raiserror('Now Insert {0} Datas .... ', 1, 1)", strTargetTable)); |
|
|
|
|
|
Utility.WriteFile(strPath + ".sql", "Go"); |
|
|
Utility.WriteFile(strPath + ".sql", "Go"); |
|
|
Utility.WriteFile(strPath + ".sql", " "); |
|
|
Utility.WriteFile(strPath + ".sql", " "); |
|
|
} |
|
|
} |
|
@ -1092,7 +1157,6 @@ namespace ExportDataToFile |
|
|
strFileCount = ""; |
|
|
strFileCount = ""; |
|
|
|
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("raiserror('Now Insert {0} Datas .... ', 1, 1)", strTargetTable)); |
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", " "); |
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", " "); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -1132,11 +1196,34 @@ namespace ExportDataToFile |
|
|
{ |
|
|
{ |
|
|
if (strValues == "") |
|
|
if (strValues == "") |
|
|
{ |
|
|
{ |
|
|
strValues = ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
|
|
|
switch (dc.DataType.ToString().ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "TIMESTAMP WITH TIME ZONE": |
|
|
|
|
|
strValues = ConvertMSSQLDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
case "TIMESTAMP WITHOUT TIME ZONE": |
|
|
|
|
|
strValues = ConvertMSSQLDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
default: |
|
|
|
|
|
strValues = ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
else |
|
|
else |
|
|
{ |
|
|
{ |
|
|
strValues += "," + ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
|
|
|
switch (dc.DataType.ToString().ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "TIMESTAMP WITH TIME ZONE": |
|
|
|
|
|
strValues += "," + ConvertMSSQLDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
case "TIMESTAMP WITHOUT TIME ZONE": |
|
|
|
|
|
strValues += "," + ConvertMSSQLDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
default: |
|
|
|
|
|
strValues += "," + ConvertMSSQLDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -1193,10 +1280,10 @@ namespace ExportDataToFile |
|
|
return strSourceCol + " AS " + strTargetCol; |
|
|
return strSourceCol + " AS " + strTargetCol; |
|
|
case "INTEGER": |
|
|
case "INTEGER": |
|
|
return strSourceCol + " AS " + strTargetCol; |
|
|
return strSourceCol + " AS " + strTargetCol; |
|
|
case "TIMESTAMP WITH TIME ZONE": |
|
|
|
|
|
return "to_char(" + strSourceCol + ", 'yyyy-MM-dd hh24:mm:ss')"; |
|
|
|
|
|
case "TIMESTAMP WITHOUT TIME ZONE": |
|
|
|
|
|
return "to_char(" + strSourceCol + ", 'yyyy-MM-dd hh24:mm:ss')"; |
|
|
|
|
|
|
|
|
//case "TIMESTAMP WITH TIME ZONE":
|
|
|
|
|
|
// return "to_char(" + strSourceCol + ", 'yyyy-MM-dd hh24:mm:ss')";
|
|
|
|
|
|
//case "TIMESTAMP WITHOUT TIME ZONE":
|
|
|
|
|
|
// return "to_char(" + strSourceCol + ", 'yyyy-MM-dd hh24:mm:ss')";
|
|
|
|
|
|
|
|
|
default: |
|
|
default: |
|
|
return strSourceCol + " AS " + strTargetCol; |
|
|
return strSourceCol + " AS " + strTargetCol; |
|
@ -1215,8 +1302,8 @@ namespace ExportDataToFile |
|
|
return "'" + strData.ToString().Replace("'","''").Trim() + "'"; |
|
|
return "'" + strData.ToString().Replace("'","''").Trim() + "'"; |
|
|
case "SYSTEM.INT32": |
|
|
case "SYSTEM.INT32": |
|
|
return strData.ToString().Trim(); |
|
|
return strData.ToString().Trim(); |
|
|
case "SYSTEM.DATETIME": |
|
|
|
|
|
return "'" + strData.ToString().Trim() + "'"; |
|
|
|
|
|
|
|
|
//case "SYSTEM.DATETIME":
|
|
|
|
|
|
//return "'" + strData.ToString().Trim() + "'";
|
|
|
case "SYSTEM.BOOLEAN": |
|
|
case "SYSTEM.BOOLEAN": |
|
|
return strData.ToString().Trim(); |
|
|
return strData.ToString().Trim(); |
|
|
default: |
|
|
default: |
|
@ -1224,6 +1311,11 @@ namespace ExportDataToFile |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private string ConvertPostgreSQLDataType(DateTime dtData, string strType) |
|
|
|
|
|
{ |
|
|
|
|
|
return "'" + dtData.ToString("yyyy-MM-dd HH:mm:ss") + "'"; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
#endregion //End of PostgreSQL
|
|
|
#endregion //End of PostgreSQL
|
|
|
|
|
|
|
|
|
#region MySQL
|
|
|
#region MySQL
|
|
@ -1390,6 +1482,7 @@ namespace ExportDataToFile |
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
dtResult = GetOracleResult(strSelectCommand, sqlOraSourceConn).Tables["Result"]; |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
@ -1575,6 +1668,356 @@ namespace ExportDataToFile |
|
|
} |
|
|
} |
|
|
#endregion //End of MySQL
|
|
|
#endregion //End of MySQL
|
|
|
|
|
|
|
|
|
|
|
|
#region Oracle
|
|
|
|
|
|
public DataSet GetOracleResult(string strSQL, OracleConnection conn) |
|
|
|
|
|
{ |
|
|
|
|
|
DataSet dsData = new DataSet(); |
|
|
|
|
|
try |
|
|
|
|
|
{ |
|
|
|
|
|
using (OracleDataAdapter sqlAdapter = new OracleDataAdapter(strSQL, conn)) |
|
|
|
|
|
{ |
|
|
|
|
|
if (conn.State == ConnectionState.Closed) //判斷連線狀態
|
|
|
|
|
|
{ |
|
|
|
|
|
conn.Open(); |
|
|
|
|
|
blSourceConnStatus = true; |
|
|
|
|
|
} |
|
|
|
|
|
sqlAdapter.Fill(dsData, "Result"); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return dsData; |
|
|
|
|
|
} |
|
|
|
|
|
catch (Exception ex) |
|
|
|
|
|
{ |
|
|
|
|
|
throw ex; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private DataTable ShowOracleTableList(OracleConnection sqlConn , string strDBName) |
|
|
|
|
|
{ |
|
|
|
|
|
try |
|
|
|
|
|
{ |
|
|
|
|
|
string strGetOracleTableList = "SELECT TABLE_NAME AS TableName FROM ALL_TABLES Where OWNER Not IN ('SYS', 'XDB', 'SYSTEM', 'CTXSYS', 'MDSYS') "; |
|
|
|
|
|
return OracleUtility.GetSQLResult(strGetOracleTableList, sqlConn); |
|
|
|
|
|
} |
|
|
|
|
|
catch (Exception ex) |
|
|
|
|
|
{ |
|
|
|
|
|
ErrorHandler.WriteErrorLog("Form1.ShowOracleTableList", ex); |
|
|
|
|
|
return null; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private DataTable ShowOracleColumnList(OracleConnection sqlConn, string strTableName) |
|
|
|
|
|
{ |
|
|
|
|
|
try |
|
|
|
|
|
{ |
|
|
|
|
|
string strGetOracleColumnList = "Select COLUMN_NAME,DATA_TYPE From ALL_TAB_COLUMNS Where TABLE_NAME ='" + strTableName + "' Order by COLUMN_NAME"; |
|
|
|
|
|
return OracleUtility.GetSQLResult(strGetOracleColumnList, sqlConn); |
|
|
|
|
|
} |
|
|
|
|
|
catch (Exception ex) |
|
|
|
|
|
{ |
|
|
|
|
|
ErrorHandler.WriteErrorLog("Form1.ShowOracleColumnList", ex); |
|
|
|
|
|
return null; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void ShowOracleTargetColumnList(OracleConnection sqlConn, string strTableName) |
|
|
|
|
|
{ |
|
|
|
|
|
try |
|
|
|
|
|
{ |
|
|
|
|
|
string strGetOracleColumnList = "Select COLUMN_NAME From ALL_TAB_COLUMNS Where TABLE_NAME ='" + strTableName + "' Order by COLUMN_NAME"; |
|
|
|
|
|
this.clTargetColumn.DisplayMember = "COLUMN_NAME"; |
|
|
|
|
|
this.clTargetColumn.DataSource = OracleUtility.GetSQLResult(strGetOracleColumnList, sqlConn); |
|
|
|
|
|
Application.DoEvents(); |
|
|
|
|
|
} |
|
|
|
|
|
catch (Exception ex) |
|
|
|
|
|
{ |
|
|
|
|
|
ErrorHandler.WriteErrorLog("Form1.ShowOracleTargetColumnList", ex); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void ExportToOracleData(string strPath, string subFileName) |
|
|
|
|
|
{ |
|
|
|
|
|
ProgressForm pgsForm = new ProgressForm(); |
|
|
|
|
|
int intDataCount = 0; |
|
|
|
|
|
int intMaxData = 0; |
|
|
|
|
|
int intProgress = 0; |
|
|
|
|
|
string strGenResult = ""; |
|
|
|
|
|
string strSourceTable = ""; |
|
|
|
|
|
string strTargetColumns = ""; |
|
|
|
|
|
string strWhere = ""; |
|
|
|
|
|
string strTargetTable = ""; |
|
|
|
|
|
string strDeleteCommand = ""; |
|
|
|
|
|
string strValues = ""; |
|
|
|
|
|
string strFileCount = ""; |
|
|
|
|
|
string[] strColumns = null; |
|
|
|
|
|
string[,] strColumnResults = new string[dgvExportList.Rows.Count, 2]; |
|
|
|
|
|
string strSelectCommand = ""; |
|
|
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
|
{ |
|
|
|
|
|
//命令字串處理
|
|
|
|
|
|
strTargetColumns = ""; |
|
|
|
|
|
|
|
|
|
|
|
//取得每個檔案最大筆數
|
|
|
|
|
|
if (Int32.Parse(txtMaxCount.Text.Trim()) > 0) |
|
|
|
|
|
{ |
|
|
|
|
|
intMaxData = Int32.Parse(txtMaxCount.Text.Trim()); |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
intMaxData = 1; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取得欄位對應字串陣列
|
|
|
|
|
|
pgsForm.WindowState = FormWindowState.Normal; |
|
|
|
|
|
pgsForm.pbExport.Minimum = 0; |
|
|
|
|
|
pgsForm.Show(); |
|
|
|
|
|
foreach (DataGridViewRow dgvRow in dgvExportList.Rows) |
|
|
|
|
|
{ |
|
|
|
|
|
if (dgvRow.Cells["clExport"].Value != null && (bool)dgvRow.Cells["clExport"].Value == true) |
|
|
|
|
|
{ |
|
|
|
|
|
strSelectCommand = ""; |
|
|
|
|
|
strSourceTable = ""; |
|
|
|
|
|
strTargetColumns = ""; |
|
|
|
|
|
strDeleteCommand = ""; |
|
|
|
|
|
strValues = ""; |
|
|
|
|
|
|
|
|
|
|
|
DataTable dtResult = null; |
|
|
|
|
|
|
|
|
|
|
|
//取得欄位對應
|
|
|
|
|
|
if (dgvRow.Cells["clMappingData"].Value != null) |
|
|
|
|
|
{ |
|
|
|
|
|
strColumns = dgvRow.Cells["clMappingData"].Value.ToString().Split('|'); |
|
|
|
|
|
} |
|
|
|
|
|
//取得來源Table
|
|
|
|
|
|
if (dgvRow.Cells["clSourceTable"].Value != null) |
|
|
|
|
|
{ |
|
|
|
|
|
if (dgvRow.Cells["clSourceTable"].Value.ToString().Trim() != "") |
|
|
|
|
|
{ |
|
|
|
|
|
strSourceTable = dgvRow.Cells["clSourceTable"].Value.ToString(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
//取得目標Table
|
|
|
|
|
|
if (dgvRow.Cells["clTargetTable"].Value != null) |
|
|
|
|
|
{ |
|
|
|
|
|
if (dgvRow.Cells["clTargetTable"].Value.ToString().Trim() != "") |
|
|
|
|
|
{ |
|
|
|
|
|
strTargetTable = dgvRow.Cells["clTargetTable"].Value.ToString(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//取得Where條件
|
|
|
|
|
|
if (dgvRow.Cells["clWhere"].Value != null) |
|
|
|
|
|
{ |
|
|
|
|
|
if (dgvRow.Cells["clWhere"].Value.ToString().Trim() != "") |
|
|
|
|
|
{ |
|
|
|
|
|
strWhere = " " + dgvRow.Cells["clWhere"].Value.ToString(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
#region 產生來源資料查詢命令
|
|
|
|
|
|
strGenResult = GenExpSourceCommand(strColumns, strSourceClass, strSourceTable, strWhere); |
|
|
|
|
|
strSelectCommand = strGenResult.Substring(0, strGenResult.IndexOf('|')).Trim(); |
|
|
|
|
|
strTargetColumns = strGenResult.Substring(strGenResult.IndexOf('|') + 1).Trim(); |
|
|
|
|
|
|
|
|
|
|
|
switch (strSourceClass) |
|
|
|
|
|
{ |
|
|
|
|
|
case "MS-SQL": |
|
|
|
|
|
dtResult = GetMSSQLResult(strSelectCommand, sqlMSSourceConn).Tables["Result"]; |
|
|
|
|
|
break; |
|
|
|
|
|
case "MySQL": |
|
|
|
|
|
dtResult = GetMySQLResult(strSelectCommand, sqlMySourceConn).Tables["Result"]; |
|
|
|
|
|
break; |
|
|
|
|
|
case "Oracle": |
|
|
|
|
|
dtResult = GetOracleResult(strSelectCommand, sqlOraSourceConn).Tables["Result"]; |
|
|
|
|
|
break; |
|
|
|
|
|
case "PostgreSQL": |
|
|
|
|
|
dtResult = GetPostgreSQLResult(strSelectCommand.ToString(), sqlPsgSourceConn).Tables["Result"]; |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
#endregion
|
|
|
|
|
|
//產生匯出資料語法
|
|
|
|
|
|
if (dtResult.Rows.Count > 0) |
|
|
|
|
|
{ |
|
|
|
|
|
//Progess bar
|
|
|
|
|
|
intProgress = 0; |
|
|
|
|
|
pgsForm.pbExport.Value = 0; |
|
|
|
|
|
pgsForm.pbExport.Maximum = dtResult.Rows.Count; |
|
|
|
|
|
|
|
|
|
|
|
if (dgvRow.Cells["clTargetTable"].Value != null) |
|
|
|
|
|
{ |
|
|
|
|
|
strTargetTable = dgvRow.Cells["clTargetTable"].Value.ToString(); |
|
|
|
|
|
|
|
|
|
|
|
//撰寫實體檔案
|
|
|
|
|
|
if (intMaxData == 1) |
|
|
|
|
|
{ |
|
|
|
|
|
//無設定最大筆數
|
|
|
|
|
|
Utility.WriteFile(strPath + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
|
|
|
Utility.WriteFile(strPath + ".sql", " "); |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
//有設定最大筆數
|
|
|
|
|
|
if (strFileCount == "0") |
|
|
|
|
|
strFileCount = ""; |
|
|
|
|
|
|
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("/*======================================================={0}======================================================*/", strTargetTable)); |
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", " "); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//勾選清除目標資料表
|
|
|
|
|
|
if (dgvRow.Cells["clTableDel"].Value != null && Convert.ToBoolean(dgvRow.Cells["clTableDel"].Value) == false) |
|
|
|
|
|
{ |
|
|
|
|
|
strDeleteCommand = string.Format("Delete From {0} ", strTargetTable); |
|
|
|
|
|
|
|
|
|
|
|
if (dgvRow.Cells["clWhere"].Value != null) |
|
|
|
|
|
{ |
|
|
|
|
|
if (dgvRow.Cells["clWhere"].Value.ToString().Trim() != "") |
|
|
|
|
|
{ |
|
|
|
|
|
strDeleteCommand += "Where 1=1 And " + dgvRow.Cells["clWhere"].Value.ToString(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
//撰寫實體檔案
|
|
|
|
|
|
if (intMaxData == 1) |
|
|
|
|
|
{ |
|
|
|
|
|
//無設定最大筆數
|
|
|
|
|
|
Utility.WriteFile(strPath + ".sql", strDeleteCommand + ";"); |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
//有設定最大筆數
|
|
|
|
|
|
if (strFileCount == "0") |
|
|
|
|
|
strFileCount = ""; |
|
|
|
|
|
|
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", strDeleteCommand + ";"); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//處理筆數上限似資料匯出
|
|
|
|
|
|
foreach (DataRow dr in dtResult.Rows) |
|
|
|
|
|
{ |
|
|
|
|
|
foreach (DataColumn dc in dtResult.Columns) |
|
|
|
|
|
{ |
|
|
|
|
|
if (strValues == "") |
|
|
|
|
|
{ |
|
|
|
|
|
switch (dc.DataType.ToString().ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "SYSTEM.DATETIME": |
|
|
|
|
|
strValues = ConvertOracleDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
default: |
|
|
|
|
|
strValues = ConvertOracleDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
switch (dc.DataType.ToString().ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "SYSTEM.DATETIME": |
|
|
|
|
|
strValues += "," + ConvertOracleDataType(DateTime.Parse(dr[dc].ToString()), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
default: |
|
|
|
|
|
strValues += "," + ConvertOracleDataType(dr[dc].ToString().Trim(), dc.DataType.ToString()); |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//撰寫實體檔案
|
|
|
|
|
|
if (intMaxData == 1) |
|
|
|
|
|
{ |
|
|
|
|
|
//無設定最大筆數
|
|
|
|
|
|
Utility.WriteFile(strPath + ".sql", string.Format("Insert Into {0} ({1}) Values ({2}) ;", strTargetTable, strTargetColumns, strValues)); |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
//有設定最大筆數
|
|
|
|
|
|
if (strFileCount == "0") |
|
|
|
|
|
strFileCount = ""; |
|
|
|
|
|
Utility.WriteFile(strPath + strFileCount + ".sql", string.Format("Insert Into {0} ({1}) Values ({2}) ;", strTargetTable, strTargetColumns, strValues)); |
|
|
|
|
|
} |
|
|
|
|
|
intDataCount += 1; |
|
|
|
|
|
intProgress += 1; |
|
|
|
|
|
pgsForm.pbExport.Value = intProgress; //變化Progess的狀態
|
|
|
|
|
|
Application.DoEvents(); |
|
|
|
|
|
strFileCount = (intDataCount / intMaxData).ToString(); //切分檔案
|
|
|
|
|
|
strValues = ""; //清除已經存在的資料
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//撰寫實體檔案
|
|
|
|
|
|
if (intMaxData != 1) |
|
|
|
|
|
{ |
|
|
|
|
|
//有設定最大筆數
|
|
|
|
|
|
if (strFileCount == "0") |
|
|
|
|
|
strFileCount = ""; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
MessageBox.Show("匯出完成"); |
|
|
|
|
|
} |
|
|
|
|
|
catch (Exception ex) |
|
|
|
|
|
{ |
|
|
|
|
|
|
|
|
|
|
|
MessageBox.Show("匯出失敗"); |
|
|
|
|
|
ErrorHandler.WriteErrorLog("Form1.ExportToMSSQLData", ex); |
|
|
|
|
|
} |
|
|
|
|
|
finally |
|
|
|
|
|
{ |
|
|
|
|
|
pgsForm.Close(); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private string ConvertOracleColumnType(string strSourceCol, string strTargetCol, string strType) |
|
|
|
|
|
{ |
|
|
|
|
|
return strSourceCol + " AS " + strTargetCol; |
|
|
|
|
|
|
|
|
|
|
|
//switch (strType.ToUpper())
|
|
|
|
|
|
//{
|
|
|
|
|
|
// case "VARCHAR2":
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
// case "NUMBER":
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
// case "FLOAT":
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
// case "INT":
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
// case "TIMESTAMP(0)":
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
// case "TIMESTAMP":
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
// default:
|
|
|
|
|
|
// return strSourceCol + " AS " + strTargetCol;
|
|
|
|
|
|
//}
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private string ConvertOracleDataType(string strData, string strType) |
|
|
|
|
|
{ |
|
|
|
|
|
if (strData == "") |
|
|
|
|
|
{ |
|
|
|
|
|
return "Null"; |
|
|
|
|
|
} |
|
|
|
|
|
switch (strType.ToUpper()) |
|
|
|
|
|
{ |
|
|
|
|
|
case "SYSTEM.STRING": |
|
|
|
|
|
return "'" + strData.ToString().Trim() + "'"; |
|
|
|
|
|
case "SYSTEM.DECIMAL": |
|
|
|
|
|
return strData.ToString().Trim(); |
|
|
|
|
|
default: |
|
|
|
|
|
return "'" + strData.ToString().Trim() + "'"; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private string ConvertOracleDataType(DateTime dtData, string strType) |
|
|
|
|
|
{ |
|
|
|
|
|
return "TO_TIMESTAMP('" + dtData.ToString("yyyy-MM-dd HH:mm:ss") + "', 'YYYY-MM-DD HH24:MI:SS')"; |
|
|
|
|
|
} |
|
|
|
|
|
#endregion //End of Oracle
|
|
|
|
|
|
|
|
|
private string CheckSource() |
|
|
private string CheckSource() |
|
|
{ |
|
|
{ |
|
|
try |
|
|
try |
|
@ -1710,6 +2153,8 @@ namespace ExportDataToFile |
|
|
{ |
|
|
{ |
|
|
cbTargetClass.Enabled = false; |
|
|
cbTargetClass.Enabled = false; |
|
|
cbTargetTable.Enabled = true; |
|
|
cbTargetTable.Enabled = true; |
|
|
|
|
|
cbTargetTable.ValueMember = "TableName"; |
|
|
|
|
|
cbTargetTable.DisplayMember = "TableName"; |
|
|
cbTargetTable.SelectedIndex = -1; |
|
|
cbTargetTable.SelectedIndex = -1; |
|
|
txtTargetIP.Enabled = false; |
|
|
txtTargetIP.Enabled = false; |
|
|
txtTargetPort.Enabled = false; |
|
|
txtTargetPort.Enabled = false; |
|
@ -1730,7 +2175,9 @@ namespace ExportDataToFile |
|
|
{ |
|
|
{ |
|
|
cbTargetClass.Enabled = true; |
|
|
cbTargetClass.Enabled = true; |
|
|
cbTargetTable.DataSource = null; |
|
|
cbTargetTable.DataSource = null; |
|
|
//cbTargetTable.Enabled = false;
|
|
|
|
|
|
|
|
|
cbTargetTable.ValueMember = "TableName"; |
|
|
|
|
|
cbTargetTable.DisplayMember = "TableName"; |
|
|
|
|
|
cbTargetTable.Enabled = false; |
|
|
txtTargetIP.Enabled = true; |
|
|
txtTargetIP.Enabled = true; |
|
|
txtTargetPort.Enabled = true; |
|
|
txtTargetPort.Enabled = true; |
|
|
txtTargetID.Enabled = true; |
|
|
txtTargetID.Enabled = true; |
|
@ -1862,7 +2309,8 @@ namespace ExportDataToFile |
|
|
Application.DoEvents(); |
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
|
|
|
|
|
|
dtResult = ShowOracleColumnList(sqlOraSourceConn, strTarget.ToString()); |
|
|
|
|
|
Application.DoEvents(); |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
dtResult = ShowPostgreSQLColumnList(sqlPsgSourceConn, strTarget.ToString()); |
|
|
dtResult = ShowPostgreSQLColumnList(sqlPsgSourceConn, strTarget.ToString()); |
|
@ -1950,7 +2398,7 @@ namespace ExportDataToFile |
|
|
dtResult = MySQLUtility.GetTable(strTableName, 200, sqlMySourceConn); |
|
|
dtResult = MySQLUtility.GetTable(strTableName, 200, sqlMySourceConn); |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
|
|
|
|
|
|
dtResult = OracleUtility.GetTable(strTableName, 200, sqlOraSourceConn); |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
dtResult = PostgreSQLUtility.GetTable(strTableName, 200, sqlPsgSourceConn); |
|
|
dtResult = PostgreSQLUtility.GetTable(strTableName, 200, sqlPsgSourceConn); |
|
@ -2043,7 +2491,21 @@ namespace ExportDataToFile |
|
|
} |
|
|
} |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
if (strTargetCol == "") |
|
|
|
|
|
{ |
|
|
|
|
|
strTargetCol = strSourceCol; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (strSourceColumns == "") |
|
|
|
|
|
{ |
|
|
|
|
|
strSourceColumns += ConvertOracleColumnType(strSourceCol, strTargetCol, strSourceType); |
|
|
|
|
|
strTargetColumns += strTargetCol; |
|
|
|
|
|
} |
|
|
|
|
|
else |
|
|
|
|
|
{ |
|
|
|
|
|
strSourceColumns += "," + ConvertOracleColumnType(strSourceCol, strTargetCol, strSourceType); |
|
|
|
|
|
strTargetColumns += "," + strTargetCol; |
|
|
|
|
|
} |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
if (strTargetCol == "") |
|
|
if (strTargetCol == "") |
|
@ -2092,7 +2554,15 @@ namespace ExportDataToFile |
|
|
} |
|
|
} |
|
|
break; |
|
|
break; |
|
|
case "Oracle": |
|
|
case "Oracle": |
|
|
|
|
|
if (strSourceTable != "") |
|
|
|
|
|
{ |
|
|
|
|
|
strSelectCommand += string.Format("Select {0} From {1} ", strSourceColumns, strSourceTable); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (strWhere.Trim() != "") |
|
|
|
|
|
{ |
|
|
|
|
|
strSelectCommand += "Where 1=1 And " + strWhere.Trim(); |
|
|
|
|
|
} |
|
|
break; |
|
|
break; |
|
|
case "PostgreSQL": |
|
|
case "PostgreSQL": |
|
|
if (strSourceTable != "") |
|
|
if (strSourceTable != "") |
|
|