web services with Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I want to create a method for a web service that looks in an Access database (that is stored in the same path as the web service). I want it to then export the xml of a table within the database as an XmlDocument or at least a string with all the xml in it. I figure this has to be like less than 10 lines of code, but I've never programmed with Access before and could use some help. Does anyone have links to sites which guide you through something like this? Better yet, can anyone give me code snippets that I could use to do this? I'm using c#. Any help would be appreciated. Thanks!
 
Sorry. This has nothing to do with Access.

You are using the Jet data from an mdb file.

You need to go back to the environment that you are programming in and look
through the data providers for a Jet provider.

As you mention C#, I assume you are using Visual Studio .NET.

Try one of the following groups:

microsoft.public.dotnet.datatools

microsoft.public.dotnet.framework.adonet

microsoft.public.dotnet.languages.csharp

microsoft.public.dotnet.framework.webservices

microsoft.public.dotnet.framework.aspnet.webservices

microsoft.public.dotnet.xml

Good luck.

Sco

G. Kumar said:
Hi, I want to create a method for a web service that looks in an Access
database (that is stored in the same path as the web service). I want it to
then export the xml of a table within the database as an XmlDocument or at
least a string with all the xml in it. I figure this has to be like less
than 10 lines of code, but I've never programmed with Access before and
could use some help. Does anyone have links to sites which guide you through
something like this? Better yet, can anyone give me code snippets that I
could use to do this? I'm using c#. Any help would be appreciated. Thanks!
 
G.,

You're welcome.

Glad I could get you pointed in the right direction.

Sco

M.L. "Sco" Scofield, Microsoft Access MVP, MCSD, MCP, MSS, A+
Useful Metric Conversion #17 of 19: 1 billion billion picolos = 1 gigolo
Miscellaneous Access and VB "stuff" at www.ScoBiz.com
 
Back
Top