cscの作法 その68
1296 ワード
概要
cscの作法、調べてみた。
mdbにcsvを読み込んでみた。
コンパイル手順
>csc csv2mdb.cs /platform:x86
サンプルコード
using System;
using System.Data.OleDb;
using System.Data;
using System.IO;
using System.Text;
using System.Collections.Generic;
public static class Program {
public static void Main(params string[] args) {
OleDbConnection con = new OleDbConnection();
con.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=mydb.mdb;";
con.Open();
CSVReader reader = new CSVReader(new StreamReader("expense_sample.txt"));
string[] getLine = null;
getLine = reader.ReadLine();
while ((getLine = reader.ReadLine()) != null)
{
string sSQL = "INSERT INTO sisyutu(年月日, 項目, 金額, 備考) VALUES(#" + getLine[0].Substring(0, 10) + "#,'" + getLine[1] + "'," + getLine[2] + ",'" + getLine[3] + "')";
OleDbCommand cmd = new System.Data.OleDb.OleDbCommand(sSQL, con);
cmd.ExecuteNonQuery();
Console.WriteLine(sSQL);
}
}
}
>csc csv2mdb.cs /platform:x86
using System;
using System.Data.OleDb;
using System.Data;
using System.IO;
using System.Text;
using System.Collections.Generic;
public static class Program {
public static void Main(params string[] args) {
OleDbConnection con = new OleDbConnection();
con.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=mydb.mdb;";
con.Open();
CSVReader reader = new CSVReader(new StreamReader("expense_sample.txt"));
string[] getLine = null;
getLine = reader.ReadLine();
while ((getLine = reader.ReadLine()) != null)
{
string sSQL = "INSERT INTO sisyutu(年月日, 項目, 金額, 備考) VALUES(#" + getLine[0].Substring(0, 10) + "#,'" + getLine[1] + "'," + getLine[2] + ",'" + getLine[3] + "')";
OleDbCommand cmd = new System.Data.OleDb.OleDbCommand(sSQL, con);
cmd.ExecuteNonQuery();
Console.WriteLine(sSQL);
}
}
}
以上。
Author And Source
この問題について(cscの作法 その68), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/c5bc05e4cdd2b6d2b57b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .