본문 바로가기

Database/sqllite3

SQLite SQLite 는 엄밀히 말해서 DB이지만 DBMS는 아닌 파일DB입니다 Contents 1 특징 2 3.0에 추가된 기능 3 빠른시작 4 사용가능 문법 5 사용불가능 문법 6 유용한 비쥬얼 툴 원문보기 1 특징 ¶ Transactions are atomic, consistent, isolated, and durable (ACID) even after system crashes and power failures 설치시 setup이나 admin설정이 필요없음 대부분의 SQL92 구현 데이터베이스가 파일 하나로 되어 있음 2테라바이트(2의41승) 지원 BLOB과 문자열의 사이즈는 오직 메모리에 의해 제한 실행파일의 사이즈 작음(250KB) Client/Server 데이터베이스 엔진보다 빠른 속도 API 갯수가.. 2007. 5. 2.
sqlite jdbc driver pmp.db - Example SQLite 3.3.8 Database used SQLiteTest.java - Basic Java SQLite Example pmp_sqlite.sql - The database schema used to create the above SQLite database (pmp.db). sqlite3.exe - The SQLite 3.3.8 Command-Line Program, for creating/accessing SQLite Databases (not really needed in this example). sqlitejdbc.zip v027 (based on SQLite 3.3.8) - The SQLiteJDBC driver that is basically a java.. 2007. 4. 23.
설치, 기본 사용법 SQLite 설치 - 경로 : http://sqlite.org/download.html - 여기 가면 윈도우용, 리눅스용이 있습니다. - 제경우 리눅스용 sqlite-2.8.6 과 sqlite-devel-2.8.6 RPM 을 다운 받아 설치했습니다.. 환경설정파일 같은 것도 없고. 데몬을 띄우는 것도 필요 없습니다. 그냥 rpm 으로 깔면 끝입니다. - 아래는 간단한 사용례 입니다. $ sqlite test_db SQLite version 2.8.6 Enter ".help" for instructions sqlite> 쉘에서 이렇게만 하면 현재 디렉토리에 test_db 라는 파일이 하나 만들어집니다. 이 파일(DB)을 php에서 사용하려면 당연히 웹서버가 읽고 쓸수 있는 권한이 있어야 합니다. sqlit.. 2007. 4. 23.