1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
connection = (Button)findViewById(R.id.connect);
connection.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
identifiant = (EditText)findViewById(R.id.makeident);
String essai = identifiant.getText().toString();
Toast.makeText(MainActivity.this, essai,Toast.LENGTH_LONG).show();
password = (EditText)findViewById(R.id.makepass);
String essai2 = password.getText().toString();
try {
connect = test1.executeQuery("SELECT nom FROM login");
} catch (SQLException e) {
e.printStackTrace();
Log.i(Message, "pas de requete login");
}
try {
pass = test2.executeQuery("SELECT password FROM login");
} catch (SQLException e) {
e.printStackTrace();
Log.i(Message,"pas de requete password");
} |
Partager