I have a problem with access database. I am developing a web application in visual studio 2010 using C#. I was using sql server 2005 as my database. Recently it is changed into Access. When I am trying to save some data to the Access database from my application it won't work. But when I am trying to do the same from Access itself it works correctly. What is the problem and what will I do for rectifying this problem.
-
The first thing you should do is post your connection/insertion code.Jacob– Jacob2011-07-19 05:12:50 +00:00Commented Jul 19, 2011 at 5:12
-
Access/Jet/ACE is really an inapropriate data store for a web-based application. You can get by with it for small apps with few users and few writes, but it's not designed for that purpose and comes with a number of serious problems.David-W-Fenton– David-W-Fenton2011-07-20 23:36:29 +00:00Commented Jul 20, 2011 at 23:36
-
@David-W-Fenton : I know that, but what can I do? Client decides such things and our duty is to develop applications which client asks.Actually I don't know access because I never used it before. I used only MSSQL.Nelson T Joseph– Nelson T Joseph2011-07-22 05:19:08 +00:00Commented Jul 22, 2011 at 5:19
Add a comment
|