This cgi scripts in Perl enables you to edit content of Mysql database. This doesn't support editing of the entire database structure.
WHERE TO DOWNLOADYou can check for newer version at my site http://sorry.vse.cz/~xzemt02/mysql/
HOW TO INSTALLJust copy all files to some directory where you have rights to run cgi scripts.
CONFIGURATIONEditor uses the file dat.conf for reading the configuration. In the file should be specified :
init = init string for connecting to database in format DBI:mysql:database=name_of database;In the file can be specified, which columns you can see in view mode for each table like this :
view table_name = names of collumns for seeing separated by commaIf you don't specify column names using view parametr, default mode for viewing will be SQL: select * from table_name and the view page can be very huge.
Sample configuration :
#-------------------- dat.conf ------------------------------------ # database name is chat init = DBI:mysql:database=chat; login = root pass = my_root_password # tables witch which I can work tables = users, messages , mails # which columns for database users and messages I will see in the view mode view users = id, name, email view messages = id,id_users , text, date #--------------------------------------------------------HOW TO RUN
You can run this editor using the index.html file, or with executing the file view.cgi in you browser
TODOIf you have some guestions, write me an email to xzemt02@sorry.vse.cz