I have a problem: I want to analyze my log application, but it doesn´t show me the SQL instruction with their parameters. It shows only "?".
The current log as follow:
Hibernate: insert into Cliente (dcNome, dcCpfCnpj, dcWebsite, dcEmail, pnCliente) values (?, ?, ?, ?, ?)
Hibernate: insert into IdentificaCliente (dcChave, dcLogin, dcSenha, pnidentificacliente) values (?, ?, ?, ?)
Hibernate: insert into Telefone (dcContato, dcNumTel, fncliente, fntipotel, fnddd, pnTelefone) values (?, ?, ?, ?, ?, ?)
Hibernate: insert into Telefone (dcContato, dcNumTel, fncliente, fntipotel, fnddd, pnTelefone) values (?, ?, ?, ?, ?, ?)
Hibernate: insert into Telefone (dcContato, dcNumTel, fncliente, fntipotel, fnddd, pnTelefone) values (?, ?, ?, ?, ?, ?)
I need to analyze the value of ?. For example, I need the SQL instruction as follow:
Hibernate: insert into Cliente (dcNome, dcCpfCnpj, dcWebsite, dcEmail, pnCliente) values ('Rodrigo', '333333', 'HTTP:\\',
'rodrigo@teste.com.br', 5)
Therefore I don´t know how to configure my log hibernate.
Best regards,