-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathPgJSONExample.java
72 lines (49 loc) · 2.32 KB
/
PgJSONExample.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import org.postgresql.util.PGobject;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.SQLException;
public class PgJSONExample {
public static void main(String[] argv) throws SQLException
{
System.out.println("-------- PostgreSQL "
+ "JDBC Connection Testing ------------");
try {
Class.forName("org.postgresql.Driver");
} catch (ClassNotFoundException e) {
System.out.println("Where is your PostgreSQL JDBC Driver? "
+ "Include in your library path!");
e.printStackTrace();
return;
}
System.out.println("PostgreSQL JDBC Driver Registered!");
Connection connection = null;
try {
connection = DriverManager.getConnection(
"jdbc:postgresql://localhost:5432/postgres", "denish", "omniti");
} catch (SQLException e) {
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
return;
}
if (connection != null) {
System.out.println("You made it, take control your database now!");
} else {
System.out.println("Failed to make connection!");
}
int id = 2;
String data = "{\"username\":\"robert\",\"posts\":100122,\"emailaddress\":\"robert@omniti.com\"}";
PGobject dataObject = new PGobject();
dataObject.setType("json");
dataObject.setValue(data);
try {
PreparedStatement stmt = connection.prepareStatement("insert into sample (id, data) values (?, ?)");
stmt.setInt(1, id);
stmt.setObject(2, dataObject);
stmt.executeUpdate();
stmt.close();
} catch (SQLException sqle) {
System.err.println("Something exploded running the insert: " + sqle.getMessage());
}
}
}