Skip to content

Commit 82527ec

Browse files
Add database systems. Resolve #42.
1 parent 0a6fd2c commit 82527ec

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

database.ttl

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
@base <http://hitontology.eu/ontology/> .
2+
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
3+
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
4+
@prefix hito: <> .
5+
6+
hito:MySql
7+
a hito:DatabaseSystem;
8+
rdfs:label "MySQL"@en .
9+
10+
hito:OracleDatabase
11+
a hito:DatabaseSystem;
12+
rdfs:label "Oracle Database"@en .
13+
14+
hito:MicrosoftSqlServer
15+
a hito:DatabaseSystem;
16+
rdfs:label "Microsoft SQL Server"@en .
17+
18+
hito:PostgreSql
19+
a hito:DatabaseSystem;
20+
rdfs:label "PostgreSQL"@en .
21+
22+
hito:MongoDb
23+
a hito:DatabaseSystem;
24+
rdfs:label "MongoDB"@en .
25+
26+
hito:MariaDb
27+
a hito:DatabaseSystem;
28+
rdfs:label "MariaDB"@en .
29+
30+
hito:IbmDb2
31+
a hito:DatabaseSystem;
32+
rdfs:label "IBM DB2"@en .
33+
34+
hito:SapHana
35+
a hito:DatabaseSystem;
36+
rdfs:label "SAP HANA"@en .
37+

0 commit comments

Comments
 (0)