feat: 初始化SQLite连接.

This commit is contained in:
2024-11-20 13:08:38 +08:00
parent f70db6ef90
commit eefd907866
5 changed files with 126 additions and 1 deletions

View File

@@ -82,4 +82,9 @@ public final class SystemConstants {
* 用户目录下的.yml配置文件
*/
public static final String USER_SETTINGS_YAML_PATH = USER_DIR + File.separator + CONFIG_YAML_FILE;
/**
* 程序数据库
*/
public static final String SQLITE_URL = "jdbc:sqlite:data.db";
}