RSS Forums RSS
Please support our C# advertiser: Programming Forums
Views: 6852 | Replies: 3
Reply
Join Date: Jul 2006
Posts: 32
Reputation: whitemoss is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
whitemoss whitemoss is offline Offline
Light Poster

read text file

  #1  
Jul 28th, 2006
Hi all,

I'm a newbie in C..Right now, I have to write a code to read a text file and then insert all the info inside that text file into database. Should anyone have a simple sample of it, maybe you can share with me in order for me to learn on how to do it.

Thanks in advance
AddThis Social Bookmark Button
Reply With Quote  
Join Date: Jul 2006
Posts: 2
Reputation: AndiOliver is an unknown quantity at this point 
Rep Power: 0
Solved Threads: 0
AndiOliver's Avatar
AndiOliver AndiOliver is offline Offline
Newbie Poster

Re: read text file

  #2  
Jul 28th, 2006
First of all declare some library as:
Using System.IO;

So that you have acces to files, than write something like:
StreamReader sr = new StreamReader(@"yourpathandfilewithextension)";
string containsoffile = sr.ReadToEnd();
sr.Close();

So now you have all the file into string declared above. Regarding the database is more to it. Try to figure out first of all to which type of database you want to register data (ms sql, mysql, oracle, access etc), than regarding this find appropriate provider, mysqlclient, oracleclient, sqlclient or for both oracle and ms sql you could use oledbclient.
Reply With Quote  
Join Date: Dec 2003
Location: Nashville, TN
Posts: 2,336
Reputation: alc6379 has a spectacular aura about alc6379 has a spectacular aura about alc6379 has a spectacular aura about 
Rep Power: 12
Solved Threads: 102
Colleague
alc6379's Avatar
alc6379 alc6379 is offline Offline
Cookie... That's it

Re: read text file

  #3  
Jul 30th, 2006
Quick question:

Are you wanting C# or C? C is not the same language as C#.
Alex Cavnar, aka alc6379
Reply With Quote  
Join Date: Jul 2006
Posts: 32
Reputation: whitemoss is an unknown quantity at this point 
Rep Power: 3
Solved Threads: 0
whitemoss whitemoss is offline Offline
Light Poster

Re: read text file

  #4  
Jul 31st, 2006
Hi alc6379,

I'll be using C for this assignment

Thanks
Reply With Quote  
Reply

Only community members can participate in forum threads. You must register or log in to contribute.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 

Thread Tools Display Modes
Forums | Blogs | Tutorials | Code Snippets | Whitepapers | RSS Feeds | Advertising
All times are GMT -4. The time now is 1:45 am.
Newsletter Archive - Sitemap - Privacy Statement - Acceptable Use Policy - Contact Us
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC