forked from apache/jena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sdb.ttl
58 lines (44 loc) · 1.87 KB
/
sdb.ttl
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
# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> .
@prefix sdb: <http://jena.hpl.hp.com/2007/sdb#> .
# For use with Fuseki
[] ja:loadClass "com.hp.hpl.jena.sdb.SDB" .
sdb:DatasetStore rdfs:subClassOf ja:RDFDataset .
<#dataset> rdf:type sdb:DatasetStore ;
sdb:store <#store> .
<#store> rdf:type sdb:Store ;
## sdb:layout "layout2/index" ;
sdb:layout "layout2/hash" ;
sdb:connection <#conn> .
<#conn> rdf:type sdb:SDBConnection ;
## sdb:sdbType "h2:mem" ;
## sdb:sdbName "mem" ;
## sdb:sdbType "h2:file" ;
## sdb:sdbName "DB/H2" ;
sdb:sdbHost "localhost" ;
sdb:sdbType "derby" ;
sdb:sdbName "DB/derby" ;
## ## sdb:jdbcURL "jdbc:mysql://localhost/test2-hash?useUnicode=true&characterEncoding=UTF-8" ;
## sdb:sdbType "MySQL" ;
## sdb:sdbHost "localhost" ;
## sdb:sdbName "SDB" ;
## sdb:sdbType "postgresql" ;
## sdb:sdbHost "localhost" ;
## sdb:sdbName "SDB" ;
## sdb:sdbType "MSSQLServerExpress" ;
## sdb:sdbHost "localhost" ;
## sdb:sdbName "test2-hash" ;
## sdb:sdbType "oracle" ;
## sdb:sdbHost "localhost:1521" ;
## sdb:sdbName "XE" ; # Oracle SID
## sdb:driver "oracle.jdbc.driver.OracleDriver" ;
## # With OracleXE, it can be useful to use the user/password
## # to give multiple stores in the same installation.
## sdb:sdbUser "SDB" ;
## sdb:sdbPassword "password" ;
## sdb:sdbType "sap" ;
## sdb:sdbHost "localhost" ;
## sdb:sdbName "00" ;
.