Posts by Edipo Elder • 21 points
2 posts
-
1
votes2
answers396
viewsA: How to create a stored Postgresql database from a Java source
You have to consult the postgresql system tables to know if the database already exists. If it does not exist, you make a new call. Ex. (using SQL); String sqlIfExist = "SELECT count(*) = 1 FROM…
-
1
votes1
answer61
viewsA: Accessing the server via linux
You connect to your database using one of the following ways: jdbc:sqlite:meu_banco.db jdbc:sqlite://dira/Dirb/meu_banco.db jdbc:sqlite:/DRIVE:/dira/Dirb/meu_banco.db…