Manipulate Access DB
-
From my C# application, I want to create a MS access database create tables and update it with the data that I receive from the network! Kinda the same way cd player (that comes with win2k) stores its records on an Access DB and retreives them back. What technology should I use to accomplish this ? Thanks Regards, Venet. Donec eris felix, multos numerabis amicos.
-
From my C# application, I want to create a MS access database create tables and update it with the data that I receive from the network! Kinda the same way cd player (that comes with win2k) stores its records on an Access DB and retreives them back. What technology should I use to accomplish this ? Thanks Regards, Venet. Donec eris felix, multos numerabis amicos.
-
Why not just use ADO.NET's
System.Data.OleDB
namespace? If it's already built-in to the .NET framework...why download the Jet.NET driver? Norm Almond: I seen some GUI's in my life but WTF is this mess ;-) Leppie: I made an app for my sister and she wouldnt use it till it was colorful enough:) Norm:good point leppie, from that statement I can only deduce that this GUI must be aimed at children:laugh: Leppie:My sister is 25:eek: -Norm on the MailMagic GUI -
Why not just use ADO.NET's
System.Data.OleDB
namespace? If it's already built-in to the .NET framework...why download the Jet.NET driver? Norm Almond: I seen some GUI's in my life but WTF is this mess ;-) Leppie: I made an app for my sister and she wouldnt use it till it was colorful enough:) Norm:good point leppie, from that statement I can only deduce that this GUI must be aimed at children:laugh: Leppie:My sister is 25:eek: -Norm on the MailMagic GUIThe If is the important thing in what you say. Excerpt from MSDN[^] : "To access an ODBC data source using ADO.NET, use the ODBC .NET Data Provider, which is available for download at http://msdn.microsoft.com/downloads." This driver is native in .NET 1.1 however.
How low can you go ?
(MS retrof_u_ck) -
The If is the important thing in what you say. Excerpt from MSDN[^] : "To access an ODBC data source using ADO.NET, use the ODBC .NET Data Provider, which is available for download at http://msdn.microsoft.com/downloads." This driver is native in .NET 1.1 however.
How low can you go ?
(MS retrof_u_ck)I agree that ODBC is not required to access a MSACCESS database, even though most MSACCESS implementations in the real world use ODBC. It's true you have a OLEDB Jet data provider under OLEDB .NET. Even if I don't recommend it, this may well allow to do the job.;P
How low can you go ?
(MS retrof_u_ck)