Click here to Skip to main content
15,886,793 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello All,
I have made a window based application that have lot of controls and calculation and it is working fine.I am using MS Access Database as a back-end.But the problem is that I want to store all the data from system to the web based sql server.
May anybody help me to sort this problem.Is it possible to import data from window to web based server.......

please help....
Posted
Comments
Sergey Alexandrovich Kryukov 2-Feb-12 3:39am    
Do you mean different database? The one based on client-server model, not file server based like Access? (Would be a good idea.)

Please clarify and be more accurate in your terminology.
--SA

The question is not clear; you also did not specify what target database you would choose. If this is Microsoft SQL server, this is easier. One of the solutions is this:

http://support.microsoft.com/kb/237980[^],
http://msdn.microsoft.com/en-us/library/ms140052.aspx[^].

If you need something else, Google for database conversion.

Theoretically speaking, this is not a big problem. With .NET, you can use ADO.NET; read data from one database and populate another one. This is pretty hard to do in the general case, because for fully automatic processing you need to have the the database schema, and the methods of retrieving of the schema are not universal. However, for Access this is not a problem. Please see:
http://social.msdn.microsoft.com/Forums/ar/vbgeneral/thread/5ccc3aac-3525-4241-902a-3d03a9169ae0[^],
http://msdn.microsoft.com/en-us/library/kcax58fh.aspx[^].

Also, if your source database is simple enough, you can program the conversion ad-hoc, using your knowledge of the schema. The benefit is the possibility to improve the schema during conversion, for example, normalize the database.

—SA
 
Share this answer
 
Hai shivammpi123,
It's easy to access data of a Windows Application for a WebSite through webservice.But I don't know about MS ACCESS Database.
If the Windows App's Db is an MS SQL SERVER it is very easy to access the Database from another Application by a Simple WebService.
Hope This Helps you.
Happy Programming:-)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900