Banco de Dados: mudanças entre as edições

De Wiki Clusterlab.com.br
Ir para navegação Ir para pesquisar
Sem resumo de edição
Sem resumo de edição
Linha 4: Linha 4:
*[http://jsondb.io/ JsonDB:]
*[http://jsondb.io/ JsonDB:]
==[https://www.baeldung.com/spring-boot-h2-database H2]==
==[https://www.baeldung.com/spring-boot-h2-database H2]==
application.properties
===application.properties===
<syntaxhighlight lang=text>
<syntaxhighlight lang=text>
spring.datasource.generate-unique-name=false
spring.datasource.generate-unique-name=false
Linha 14: Linha 14:
</syntaxhighlight>
</syntaxhighlight>
*http://localhost:8080/h2-console
*http://localhost:8080/h2-console
===List Tables===
<syntaxhighlight lang=sql>
SHOW TABLES;
</syntaxhighlight>
=JAVAScript=
=JAVAScript=
*[https://www.npmjs.com/package/ultradb UltraDb]
*[https://www.npmjs.com/package/ultradb UltraDb]
*[https://github.com/petersirka/nosql Node.js NoSQL embedded database]
*[https://github.com/petersirka/nosql Node.js NoSQL embedded database]

Edição das 19h29min de 5 de agosto de 2022

Embedded NoSQL:

JAVA

H2

application.properties

spring.datasource.generate-unique-name=false
spring.datasource.name=project
spring.datasource.username=sa
spring.datasource.password=password
spring.datasource.url=jdbc:h2:mem:project
spring.datasource.driverClassName=org.h2.Driver

List Tables

SHOW TABLES;

JAVAScript