adminConnection=Nível de segurança da conexão
adminHttp=Usar conexão do tipo HTTP não segura (os dados não são encriptados)
adminHttps=Usar conexão do tipo HTTPS segura por SSL (os dados são encriptados)
adminLocal=Permitir apenas conexões do computador local
adminLogin=Entrar como administrador
adminLoginCancel=Cancelar
adminLoginOk=Confirmar
adminLogout=Sair
adminOthers=Permitir conexões de outros computadores na rede
adminPort=Número da porta
adminPortWeb=Número da porta do servidor
adminRestart=As alterações serão aplicadas depois de reiniciar o servidor.
adminSave=Salvar
adminSessions=Sessões ativas
adminShutdown=Terminar
adminTitle=Configuração do H2 Terminal
helpAction=Ação
helpAddAnotherRow=Adicionar outra linha
helpAddDrivers=Adicionar drivers de Base de Dados
helpAddDriversOnlyJava=Apenas a versão Java permite que sejam adicionados novos drivers (está opção não é suportada pela versão nativa)
helpAddDriversText=É possível registrar outros drivers, adicionando o arquivo JAR respectivo na variável de ambiente H2DRIVERS ou CLASSPATH. Exemplo (Windows)\:Para adicionar o driver que está em C\:\\Programs\\hsqldb\\lib\\hsqldb.jar altere o valor da variável de ambiente H2DRIVERS para C\:\\Programs\\hsqldb\\lib\\hsqldb.jar.
helpAddRow=Adicionar uma linha nova
helpCommandHistory=Mostrar o histórico de comandos
helpCreateTable=Criar uma tabela nova
helpDeleteRow=Apagar uma linha
helpDisconnect=Fechar conexão à Base de Dados
helpDisplayThis=Mostrar está página de ajuda
helpDropTable=Apagar a tabela, caso ela exista
helpExecuteCurrent=Executar o comando SQL corrente
helpIcon=Símbolo
helpImportantCommands=Comandos importantes
helpOperations=Operações\=
helpQuery=Pesquisar uma tabela
helpSampleSQL=Scripts de exemplo
helpStatements=Comandos SQL
helpUpdate=Alterar os dados de uma linha
helpWithColumnsIdName=com as colunas ID e NAME
login.connect=Conectar
login.driverClass=Classe com o driver
login.driverNotFound=O driver não foi encontrado<br/>Ver na seção de ajuda, como adicionar drivers
toString() method of command, PreparedStatement to print something useful
History:
The default value for h2.emergencySpaceInitial is now 256 KB (to speed up creating encrypted databases)
Eduardo Velasques has translated the H2 Console and the error messages to Brazilian Portuguese. Thanks a lot!
Creating a table from GROUP_CONCAT didn't work if the data was longer than 255 characters
Known Problems:
link to history page
Creating a table from GROUP_CONCAT doesn't work if the data was longer than 255 characters
GROUP_CONCAT more than 255
You are right, this is a bug. It was introduced by the getDisplaySize change. Unfortunately there is no workaround at the moment... I will fix for the next release and add a test case. I will also check if other things stopped working because of this change.
Search for 255 in whole project
CryptGenRandom.
drop table test;
create table test(id int primary key, name varchar(255));