개발_DB/RDBMS

SQLite | 초기 세팅

zuyo 2019. 5. 12. 00:32
반응형

 

1. SQLite 라이브러리 다운로드

 

아래와 같은 방법 등으로 프로젝트에 SQLite 라이브러리를 추가한다.

  • Maven 혹은 Gradle로 디펜던시 추가
  • 아래 링크에서 jar 파일을 받아 프로젝트에 직접 추가

 

라이브러리 다운로드 링크

https://bitbucket.org/xerial/sqlite-jdbc/downloads/

 

 

2. DB Browser for SQLite 다운로드

 

SQLite용 GUI 데이터베이스 관리 프로그램

 

다운로드 링크 (공식 홈페이지)

https://sqlitebrowser.org/

 

DB Browser for SQLite

DB Browser for SQLite The Official home of the DB Browser for SQLite Screenshot What it is DB Browser for SQLite (DB4S) is a high quality, visual, open source tool to create, design, and edit database files compatible with SQLite. DB4S is for users and dev

sqlitebrowser.org

DB Browser for SQLite

3. MyBatis config.xml 예

	<environments default="">
		<environment id="">
			<transactionManager type="JDBC"/>
			<dataSource type="POOLED">
				<property name="driver" value="org.sqlite.JDBC"/>
				<property name="url" value="jdbc:sqlite:(데이터베이스 파일 경로)"></property>
			</dataSource>
		</environment>
	</environments>
반응형