-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (74 loc) · 3.3 KB
/
index.html
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
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>MiniConnect</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Database connectivity for minimalists.">
<meta name="keywords" content="miniconnect, database, api, connectivity, java, minimalist">
<meta name="author" content="Horváth, Dávid">
<meta property="og:title" content="MiniConnect">
<meta property="og:description" content="Database connectivity for minimalists.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://miniconnect.github.io/">
<meta property="og:image" content="https://miniconnect.github.io/icon/cover.jpg">
<link rel="icon" href="icon/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="icon/favicon.ico" type="image/x-icon">
<link rel="icon" sizes="32x32" href="icon/32x32.png">
<link rel="icon" sizes="64x64" href="icon/64x64.png">
<link rel="icon" sizes="128x128" href="icon/128x128.png">
<link rel="stylesheet" href="design/index.css">
</head>
<body>
<header>
<h1>MiniConnect</h1>
<nav>
<ul>
<li><a href="https://github.com/miniconnect">Development</a></li>
<li><a href="https://miniconnect.github.io/holodb">HoloDB</a></li>
<li><a href="https://github.com/miniconnect/general-docs/blob/main/examples/README.md">Examples</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>MiniConnect API</h2>
<p>
MiniConnect API is a database connector written in Java.
Its design is minimalist, obvious and flexible.
It comes with a network protocol, JDBC adapter, and several tools.
</p>
<p><a href="https://github.com/miniconnect/miniconnect-api/tree/master/projects/api/src/main/java/hu/webarticum/miniconnect/api">Browse the API interfaces</a></p>
<code><pre>
var result = session.execute("SELECT * FROM tbl").requireSuccess();
for (var record : new ResultTable(result.resultSet())) {
System.out.println(String.format("#%d: %s",
record.get("id").get(),
record.rowMap()));
}
</pre></code>
</section>
<section>
<h2>MiniBase framework</h2>
<p>
MiniBase is a framework for building relational databases with simplicity, flexibility and extensibility in mind.
It can be easily adapted to any environment through the MiniConnect API.
</p>
<p><a href="https://github.com/miniconnect/minibase">Browse the code</a></p>
</section>
<section>
<h2>HoloDB</h2>
<p>
HoloDB is a mock relational database built on the MiniBase framework that provides random data based on constraints you specify.
The results are delivered on-the-fly, no need for large memory usage, no generation or anonymization process:
just write the configuration file and start the server.
</p>
<p><a href="https://miniconnect.github.io/holodb">Read more</a></p>
<p><a href="https://github.com/miniconnect/holodb">Browse the code</a></p>
</section>
</main>
<footer>
<p><a href="https://github.com/miniconnect">Development</a></p>
</footer>
</body>
</html>