Feb 9, 2003 #1 M Morpheus Well-known member Joined Jan 18, 2002 Messages 62 Is it hard to connect a C# console application to a access database?
Feb 10, 2003 #2 Q quwiltw Well-known member Joined Sep 18, 2001 Messages 486 Location Washington, D.C. The actual connecting part should be the exact same code. Presenting the DB content through a console interface could be somewhat challenging though.
The actual connecting part should be the exact same code. Presenting the DB content through a console interface could be somewhat challenging though.
Feb 10, 2003 #3 M Morpheus Well-known member Joined Jan 18, 2002 Messages 62 If I save the result from a SQL query in a string then I can override the ToString method and format it nicely. Ist it so?
If I save the result from a SQL query in a string then I can override the ToString method and format it nicely. Ist it so?
Feb 10, 2003 #4 Robby Moderator Joined Nov 17, 2002 Messages 3,461 Location Montreal, Ca. User Rank *Expert* An easy way may be to load the database results into array, then format as you wish.
Feb 10, 2003 #5 M Morpheus Well-known member Joined Jan 18, 2002 Messages 62 Yeah that is a good idea.