Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class UserJdbcDao {

static Connection connection = null;
static PreparedStatement statement = null;
String CREATE_USER = "INSERT INTO users VALUES (null, ?, ?, ?, ?, ?, null, null)";
String CREATE_USER = "INSERT INTO users VALUES (null, ?, ?, ?, ?, ?, null)";
String FIND_ALL_USERS = "SELECT * FROM users";
String FIND_USER_BY_ID = "SELECT * FROM users WHERE id=?";
String DELETE_USER = "DELETE FROM users WHERE id=?";
Expand Down