you can find some tutorials here:
http://www.matlus.com/scri
Main Topics
Browse All Topicshi experts;
i'm trying to connect 2 programs (client and server) via (socketconnection, ClientDataSet and DataSetProvider - with MS Access database).
i connected them togather successfuly, the Client program has login window, to use the client program you haveto enter username and password and the client will send the entered data to the server and the server program is matching the sent data (username and password) with the existent database.
untill now everything is allright but if i want to add new user from client side how can i tell the server program to create new record or edit the existent one.
in short word what i'm asking for is that :
how can i make the client read and write (insert, delete and edit) to the database via server program ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
you can find some tutorials here:
http://www.matlus.com/scri
How does your server application process the login?
Usually the server application will parse the data from the client to identify commands... such as LOGIN,myname,mypassword ... similarly you can use this same concept to do something such as INSERT,field1,field2,field
Alternatively, you might want to check out FPiette's Midware components, which encapsulate all these. Using his components, you can create a procedure called Login in the server, and when the Client connects to it, it can call Login directly! Well, behind the scene, it actually scans for the word login and then pass the parameters to the correct procedure at the server side... Check out his components at http://www.overbyte.be/fra
DragonSlayer.
Business Accounts
Answer for Membership
by: BlackTigerXPosted on 2005-09-12 at 08:52:54ID: 14864929
I think this problem is best suited for use with SOAP, instead of plain socket connection