You probably want to go for a web application in ASP,PHP or likewise...
That way you have one server, that hosts the application & database...
Next you just have to create a login functionality with different users, and thats pretty much it.
If it has to be a desktop application you'd have to write an application that connects to a server on the network , and logs in to that to get access to the DB
steelshark
Junior Poster in Training
59 posts since Sep 2010
Reputation Points: 10
Solved Threads: 6
Skill Endorsements: 0
You are right about the install things yes :)
if you include the jdbc driver jar in your program then the user wont have to install anything additional.
For the development part you are right aswell...
To break it down, you'll have a User Interface which needs to be able to let the user connect & execute queries..
In order to achieve this you'll have to use a driver (jdbc for example),and thats basicly all there is...
However if you just want the user to execute queries, i don't really understand the need to create a program..In microsoft SQL server you can just access a network server if you have an account on it, and run queries on the database..
steelshark
Junior Poster in Training
59 posts since Sep 2010
Reputation Points: 10
Solved Threads: 6
Skill Endorsements: 0
But I don't fully understand how to implement the following. For instance, the User_A & User_B have installed my application on their computers. The user_A has rights to only read the data, whereas the USER_B is allowed to read and write the data. So, how could I check which action right the user has?
Ever heard of user groups??? User/Moderator/Administrator/Owner...
peter_budo
Code tags enforcer
15,791 posts since Dec 2004
Reputation Points: 2,867
Solved Threads: 944
Skill Endorsements: 50
Liana that is highly unlikely. You have following options
1. Host it at home and open, made it accessible through IP and port
2. Ask your school if they have database hosting available to students
3. Get (buy) your self hosting on some server
peter_budo
Code tags enforcer
15,791 posts since Dec 2004
Reputation Points: 2,867
Solved Threads: 944
Skill Endorsements: 50
Question Answered as of 2 Years Ago by
peter_budo,
steelshark
and
SNK111