문제

Just out of curiosity, is it possible to connect to an SQLite database from a JSP page using JSTL or is it just for MySql and all the other big DBMS?

I want to implement this simple blog application but would like to use SQLite instead of some big and perhaps heavy database system.

도움이 되었습니까?

해결책

The JSTL SQL tag library makes use of JDBC to connect to a database (also note that JSTL SQL is designed for quick prototyping, not real applications).

JDBC is an abstraction layer over any database. The actual details of the underlying database are handled by a specific driver.

To use SQLite you could give this driver a try.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top