Displaying 2 results from an estimated 2 matches for "idusuario".
2014 Aug 28
2
sql codificación R
...ATE SCHEMA IF NOT EXISTS `usuario` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci ;
USE `usuario` ;
-- -----------------------------------------------------
-- Table `usuario`.`usuario`
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `usuario`.`usuario` (
`idusuario` INT NOT NULL AUTO_INCREMENT,
`nombre` VARCHAR(45) NULL,
PRIMARY KEY (`idusuario`))
ENGINE = InnoDB
DEFAULT CHARACTER SET = utf8
COLLATE = utf8_general_ci;
SET SQL_MODE=@OLD_SQL_MODE;
SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS;
SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
-- -------------------...
2006 May 09
3
validations erasing the form
Hi there
I have a for with a couple of text_fields. I''m doing some validation
via the model and when the validation "works" I get there was an error
on blah blah
the problem is the form is erased and I have to fill up the form again!
I saw that scaffold keeps the form filled when the validation "works"
but I dont know exactly what''s making it happen!
I would