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
 
(3 revisões intermediárias pelo mesmo usuário não estão sendo mostradas)
Linha 1: Linha 1:
Embedded NoSQL:
Embedded NoSQL:
*JAVA
=JAVA=
**[https://github.com/dizitart/nitrite-database Nitrite Database]
*[https://github.com/dizitart/nitrite-database Nitrite Database]
**[http://jsondb.io/ JsonDB:]
*[http://jsondb.io/ JsonDB:]
*JAVAScript
==[https://www.baeldung.com/spring-boot-h2-database H2]==
**[https://www.npmjs.com/package/ultradb UltraDb]
*[https://www.tutorialspoint.com/h2_database/index.htm H2 Database Tutorial]
**[https://github.com/petersirka/nosql Node.js NoSQL embedded database]
===application.properties===
<syntaxhighlight lang=text>
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
</syntaxhighlight>
*http://localhost:8080/h2-console
 
===List Tables===
<syntaxhighlight lang=sql>
SHOW TABLES;
</syntaxhighlight>
=JAVAScript=
*[https://www.npmjs.com/package/ultradb UltraDb]
*[https://github.com/petersirka/nosql Node.js NoSQL embedded database]

Edição atual tal como às 19h30min 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