'Windows-1252' is not a supported encoding name.
Posted by: Lucas Gonçalves
Date: February 27, 2016 02:42PM

O erro está no seu banco de dados, caso tenha algum campo com valor NULL adicione algum valor ou exclua-o.

também pode ser corrigido na hora de criar sua tabela, eu corrigi o meu erro com esse código na hora de criar a tabela no mysql.

Create table app (
ID Int UNSIGNED ZEROFILL NOT NULL AUTO_INCREMENT,
login Varchar(30),
senha Varchar(40),
Primary Key (ID)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_danish_ci;


O destaque vai para esse codigo.

Primary Key (ID)) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_danish_ci;

Options: ReplyQuote


Subject
Written By
Posted
'Windows-1252' is not a supported encoding name.
February 27, 2016 02:42PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.