Displaying contents from database in an applet - JDBC JAVA
This is a discussion on Displaying contents from database in an applet - JDBC JAVA ; I have created a connection to an MSAccess database, but I am unable to
display the results in an webbrowser. My question is therefore how do I
retrieve and displaty the records of my database on a webpage?
Kind regards
...
-
Displaying contents from database in an applet
I have created a connection to an MSAccess database, but I am unable to
display the results in an webbrowser. My question is therefore how do I
retrieve and displaty the records of my database on a webpage?
Kind regards
Johan Reimers
-
Re: Displaying contents from database in an applet
Johan Reimers wrote:
> I have created a connection to an MSAccess database, but I am unable to
> display the results in an webbrowser. My question is therefore how do I
> retrieve and displaty the records of my database on a webpage?
I should think that the best way is to use server-side technologies
(JSP, servlets, etc) rather than an applet. Or possibly a combination of
the two.
Even if Access was a server database (it's not - it's file-based) it
would almost certainly be a Bad Idea to open it up to the public
internet for just any bugger to attack your server. Keep everything on
the server and only allow HTTP access, and you don't have that problem.
BTW, Access is a distinctly suboptimal solution for this type of work.
You'd do well to explore some of the better free DBMSs such as MySQL or
PostgreSQL (which has a native Windows installer as of the latest release).
Luke
Similar Threads
-
By Application Development in forum DOTNET
Replies: 2
Last Post: 09-04-2007, 11:52 AM
-
By Application Development in forum DOTNET
Replies: 1
Last Post: 05-07-2007, 01:14 PM
-
By Application Development in forum Microsoft Exchange
Replies: 1
Last Post: 04-07-2007, 12:08 PM
-
By Application Development in forum Inetserver
Replies: 1
Last Post: 06-01-2005, 06:37 AM
-
By Application Development in forum Java
Replies: 0
Last Post: 11-03-2004, 11:39 AM