热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SQLITE_ERRORSQL错误或缺少数据库(无此表:用户)

希望有人可以提供帮助。我正在尝试从Eclipse中的动态Web项目访问数据库。由于某

希望有人可以提供帮助。我正在尝试从eclipse中的动态Web项目访问数据库。由于某些原因,我继续收到以下错误:

[SQLITE_ERROR] SQL错误或数据库丢失(无此表:用户)

books数据库中肯定有一个名为“ users”的表。我认为这可能与保存数据库的位置有关,因为我知道使用的代码可以正常工作,因为我在项目的另一部分使用了它。下面的屏幕快照显示了保存内容的位置。我的数据库在主目录和web inf目录中,因为我的主程序需要访问它以及服务器。

SQLITE_ERROR SQL错误或缺少数据库(无此表:用户)

我的代码:

public class Authentication {
private static Connection getDBConnection() {
Connection cOnn= null;
try {
Class.forName("org.sqlite.JDBC");
} catch (ClassnotFoundException e) {
System.out.println(e.getMessage());
}
try {
String url = "jdbc:sqlite:books.sqlite";
//Gets connection with the JDBC API
cOnn= DriverManager.getconnection(url);
} catch (SQLException e) {
System.out.println(e.getMessage());
}
return conn;
}
public String authenticate(String username,String password) throws SQLException {
// TODO maybe removed this line below or change it.
Statement statement = null;
Connection cOnn= null;
ResultSet results = null;
HashMap userPass = new HashMap();
// Creates SQL query and adds it to String variable.
String query = "SELECT username,password FROM users";
// TODO Maybe remove the below line,not necessary?
// Book temp = null;
try {
cOnn= getDBConnection();
statement = conn.createStatement();
results = statement.executeQuery(query);
while (results.next()) {
String username = results.getString("username");
String Password = results.getString("password");
userPass.put(username,Password);
}
} finally {
if (results != null)
results.close();
if (statement != null)
statement.close();
if (conn != null)
conn.close();
}
//Returns to newly created booklist to where the method was called.
if (userPass.get(username)== password ) {
return "success";
}
else {
return "error";
}
}
}





推荐阅读
author-avatar
郑geraghty_926
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有