• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

DSN on Linux Server

 
Ranch Hand
Posts: 55
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello ranchers,
I have 2 applications one is in java (Web based application using Spring and Oracle as backend and ) and other one is in VB with Access as backend.
Problem is ,My web application is hosted on linux server.My web application needs some data from VB'application.So how this can be acchieved???
Is it possible to connect to Access thru linux server from my web application.
Any help will be appreciated.



Thanks in Advance,
Ankita
 
Saloon Keeper
Posts: 27752
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Regardless of the OS, MS Access is a very bad choice for a web backend database. It isn't designed to be able to respond to multiple concurrent users.

Unlike the more powerful DBMS's, such as SQL Server, Oracle and the open-source systems like MySQL and PostgreSQL, MS Access doesn't run a server process that can listen for incoming requests on a network port. So the only way to access it from a remote system is to use remote file access and open the file directly as a network shared file. Or to front it with something like a local web server. And, since most web servers are expected to be able to run multiple concurrent requests, they won't have any built-in way to avoid corrupting the Access database.

There are ways to open and read access databases from Linux, but they are somewhat limited. This is partly because the internal structure of MDB files has changed drastically over the years. In fact, one of my biggest problems using Access on a Windows system came from having Office expecting one file format and my other tools expecting another one.
 
reply
    Bookmark Topic Watch Topic
  • New Topic