我有现有的代码,它根据文件的列(DBF,Excel)创建一个新表:
OleDbConnection oConn = new OleDbConnection(@"Provider=Microsoft.ACE.OLEDB.12.0;Data Source='" + tbXLSBrowse.Text + "';Extended Properties=\"Excel 12.0 xml;HDR=Yes;IMEX=1\"");
OleDbCommand command = new OleDbCommand("Select * FROM [Sheet1$]", oConn); //change to the sheet name
oConn.Open();
DataTable dt = new DataTable();
dt.Load(command.ExecuteReader());
oConn.Close();
DataTableReader reader = dt.CreateDataReader();
myConnection = new SqlConnection(cString);
myConnection.Open();
// checking whether the table selected from the dataset exists in the database or not
string exists = null;
try
{
SqlCommand cmd = new SqlCommand("SELECT * FROM sysobjects where name = '" + tb.Text + "'", myConnection);
exists = cmd.ExecuteScalar().ToString();
//MessageBox.Show("EXISTS");
}
catch (Exception exce)
{
exists = null;
//MessageBox.Show("DOESNT EXIST");
}
if (exists == null)
{
// selecting each column of the datatable to create a table in the database
foreach (DataColumn dc in dt.Columns)
{
if (exists == null)
{
SqlCommand createtable = new SqlCommand("CREATE TABLE " + tb.Text + " (" + dc.ColumnName + " varchar(MAX))", myConnection);
createtable.ExecuteNonQuery();
exists = tbXLSTableName.Text;
}
else
{
SqlCommand addcolumn = new SqlCommand("ALTER TABLE " + tb.Text + " ADD [" + dc.ColumnName + "] varchar(MAX)", myConnection);
addcolumn.ExecuteNonQuery();
}
}
}
文本框如下:
//tbXLSBrowse.Text = the excel file name;
//tb.Text = user generated table name;
以上代码是Excel文件的示例。我有一个CSV,我也试图这样做,但不知道该怎么做。
我有以下代码读取CSV文件中的每一行并获取每行的字段并将其添加到List数组中:
var lines = File.ReadLines(textBox1.Text);
List<string> colArray = new List<string>();
foreach (string line in lines) //for each line
{
using (TextFieldParser parser = new TextFieldParser(textBox1.Text))
{
parser.TextFieldType = FieldType.Delimited;
parser.SetDelimiters(",");
while (!parser.EndOfData) //while file is being read
{
string[] fields = parser.ReadFields();
foreach (string field in fields) //for each column
{
colArray.Add(field);
colArray.ToArray();
}
MessageBox.Show(colArray.Count + ""); //displays the count for the columns for each line
colArray.Clear(); //clear the column to use it for next line
}
}
}
如何将开头发布的代码与上述代码结合使用,以执行以下操作:
还是不可能?我想要这样做的原因是因为每行有329列,如果我能用代码完成这个,那么从长远来看,它将节省大量的时间。
此网站是否有任何帮助:CSV to SQL
答案 0 :(得分:1)
您不需要在第二个代码段中展开所有列名称。一旦读入文件,就可以对字符串使用split命令将标题行拆分为一个列表(只需使用索引访问文件的第一行)。然后,一旦有了列名列表,就可以使用foreach循环遍历它们,并以与上述代码相同的方式创建表。只需替换字符串项的数据列即可。
var lines = File.ReadLines(textBox1.Text);
List<string> headerRow = lines.ElementAt(0).Split(',').ToList();
foreach (string header in headerRow)
{
Create table etc.......
}
我希望这有帮助,代码可能不完全正确,但应该让你知道你需要什么。