Topic awaiting preservation: mysql editing |
|
---|---|
Author | Thread |
Bipolar (III) Inmate From: Detroit, MI US |
posted 06-11-2002 19:33
Is it possible for a client to update their mysql database using a program like access? What I mean to say is is there a way that they can edit the file locally and then upload it to their server rather than using something on the server itself like PHPmyadmin, mambo or the like? |
Maniac (V) Mad Scientist From: Rochester, New York, USA |
posted 06-11-2002 20:59
You could make a program that would store the information in a CSV file. Simple interface easy to set up. That would then make a flat text file that they could upload to the server and have it parsed by the recieving program and have it placed into the database. |
Paranoid (IV) Inmate From: Canada, Toronto |
posted 06-11-2002 22:29
MySQL supports ODBC (Open DataBase Connectivity) for access from Windows database software, like Microsoft Access. The server where my site is hosted supports it and there is a little tutorial that you may find interesting. |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 06-12-2002 04:23
There's a bunch of MySQL GUIs |
Bipolar (III) Inmate From: Detroit, MI US |
posted 06-12-2002 14:40
Thank you for your suggestions. |