Hello every body I looking for creating a table in MySQL RDMS with a auto_increment column. I think that tCreateTable component is a good choice, but this option is not available. Thank you for all ideas. Best regards Max
Hi, Did you try tMySqlRow with your specific SQL, for example: CREATE TABLE employes ( id MEDIUMINT NOT NULL AUTO_INCREMENT, name CHAR(30) NOT NULL, PRIMARY KEY (id) );