私はそのClientsTable
ようなものを持っています:
firstName lastName address idNumber userName password
| | | | |
david bowie here 123 mick jagger
chuck norris there 456 steven seagal
各行のuserName
と の両方を取得し、メソッドの指定されたパラメーターで検証したい:password
public Person verifyClientExists(String username,String password) throws SQLException
{
ResultSet results = this.m_statement.executeQuery("SELECT `userName` FROM `ClientsTable`");
while (results.next() == true)
{
// here I want to compare the retrieved data from
// mysql with the "username" and "password" given in the prototype
}
return null;
}
しかし、現在のクエリでは、フィールドを1 つしか取得できません。
2 つのフィールドを取得するにはどうすればよいですか?