|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
convert text to access mdbI have this comma delimited text file. I want to convert it in one sweep to
an access DB (mdb) format. I used the following code but it takes forever to convert. Is there a faster way? string strConn = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + strAppPath + "\\mydb.mdb"; OleDbConnection conn = new OleDbConnection(strConn); conn.Open(); OleDbCommand cmd = new OleDbCommand(); cmd = new OleDbCommand("INSERT INTO mytable Select * from [Text;DATABASE=" + strAppPath + ";].[mytextdata.txt]",conn ); cmd.ExecuteNonQuery(); conn.Close(); Any help is greatly appreicated and thank you in advance. jj,
Post this message crossposted in the newsgroups microsoft.public.dotnet.languages.vb.data and microsoft public.dotnet.framework.adonet In those is Paul Clement active (is he here as well, however in that there is less change that he missed it). This is typical a question for him. I don't try even anymore these ones. Cor On Tue, 7 Feb 2006 07:45:17 +0100, "Cor Ligthert [MVP]" <notmyfirstn***@planet.nl> wrote: ¤ jj,¤ ¤ Post this message crossposted in the newsgroups ¤ ¤ microsoft.public.dotnet.languages.vb.data ¤ and ¤ microsoft public.dotnet.framework.adonet ¤ ¤ In those is Paul Clement active (is he here as well, however in that there ¤ is less change that he missed it). This is typical a question for him. I ¤ don't try even anymore these ones. Cor, I already responded in one of the cross-posted groups. Paul ~~~~ Microsoft MVP (Visual Basic)
Windows Shell Integration: how?
Visual Basic 2005 CreateFile Crash in VB.NET 2005 Read mail from exchange 2003 Problems with FileAccess and PcitoreBox Outlook Add-In: msoControlEdit: Textbox loses text when losing focus VB.NET - How do I set and keep data in the clipboard? File is busy Structured files in VS 2005 Dynamic Insert Statment |
|||||||||||||||||||||||