as I understood in your second paragraph you mean that it would be nice to have some SQL-helper?
I.e. add drop-down box with list of common functionality need by users and when user select one of them - preformatted SQL template will be put to textarea, so user can edit it further and run then.
Am I right?
Oleg
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=1631629
Originator: NO
Add/edit table/row will be added in next version 1.5
Oleg
Logged In: NO
Sorry. I don't english.
Yo también creo que le falta agregar/editar tabla y agregar/editar columnas para ser un script perfecto.
Para los que nos olvidamos frecuentemente de la sintaxis sql serían muy útiles unos botones para insertar consultas comunes preformateadas.
Eso es lo único que pido. ¡Buen trabajo!
Logged In: YES
user_id=1631629
Originator: NO
as I understood in your second paragraph you mean that it would be nice to have some SQL-helper?
I.e. add drop-down box with list of common functionality need by users and when user select one of them - preformatted SQL template will be put to textarea, so user can edit it further and run then.
Am I right?
Oleg
Logged In: NO
I disagree: it would seriously complicate the script.
CREATE TABLE `products_images` (
`products_id` int(11) NOT NULL auto_increment,
`products_image1` varchar(64) default NULL,
`products_image2` varchar(64) NOT NULL default '',
`products_image3` varchar(64) NOT NULL default '',
`products_image4` varchar(64) NOT NULL default '',
`products_image5` varchar(64) NOT NULL default '',
`products_image6` varchar(64) NOT NULL default '',
`products_image7` varchar(64) NOT NULL default '',
`products_image8` varchar(64) NOT NULL default '',
`products_image9` varchar(64) NOT NULL default '',
PRIMARY KEY (`products_id`)
);
This feature would be awesome. I know my php/MySQL and am able to do it by hand, but it is much easier to do so that way.