Reputation: 10117
Is there already any software that will allow me to select a table or row from existing DB, edit that table, add new rows, or clone existing ones, then insert the new rows back into the DB?
Read: i want to ADD this data, do not want to update/replace existing data.
PHP5, and MySQL 5
Upvotes: 1
Views: 396
Reputation: 1497
There's also HeidiSQL which is a windows client for managing MySQL databases: http://www.heidisql.com/
And there's jHeidi from the same site that's java based and so should run on other operating systems.
Upvotes: 0
Reputation: 94197
MySQL Administrator is a decent GUI put out by MySQL that should handle all of that. I'm quite happy with it.
Upvotes: 0
Reputation: 321766
There's PHPMyAdmin
, which will let you to pretty much anything to a database.
You can clone rows by editing and selecting "insert as new row" (may have to blank out the primary key if you have one).
Upvotes: 1