반응형
# Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0
@prefix sdb: <http://jena.hpl.hp.com/2007/sdb#> .
@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#> .
# MySQL - InnoDB
<#store> rdf:type sdb:Store ;
sdb:layout "layout2" ;
sdb:connection <#conn> ;
sdb:engine "InnoDB" ; # MySQL specific
.
<#conn> rdf:type sdb:SDBConnection ;
sdb:sdbType "mariadb" ; # Needed for JDBC URL
sdb:sdbHost "localhost" ;
sdb:sdbName "testrioplestore" ;
sdb:driver "org.mariadb.jdbc.Driver" ;
.
'DB&Hibernate' 카테고리의 다른 글
Can't open and lock privilege tables: Index for table '테이블 명' is corrupt; try to repair it (0) | 2020.05.16 |
---|---|
mariadb 실행 오류 1067 해결방법(윈도우, 리눅스) (0) | 2020.05.01 |
SDB table DDL 스키마 쿼리(Mysql, Mariadb 용) (0) | 2017.12.26 |
Hibernate에서 sql error 1064 sqlstate 42000 나는 경우... (0) | 2017.12.12 |
JAVA, Hibernate5 hbm없이 설정없이(annotation으로만) 사용하는법 (1) | 2017.04.06 |