forked from marg-o/brigate
Adapt again for mysql
This commit is contained in:
parent
1f435d24a7
commit
62a872f168
|
@ -17,3 +17,9 @@ CREATE TABLE contatti (
|
|||
CREATE TABLE ordini (
|
||||
telefono INT8 PRIMARY KEY REFERENCES contatti (telefono)
|
||||
);
|
||||
|
||||
CREATE TABLE utenti (
|
||||
nickname VARCHAR(255) NOT NULL,
|
||||
password VARCHAR(255) NOT NULL,
|
||||
ruolo VARCHAR(255)
|
||||
);
|
||||
|
|
|
@ -9,7 +9,7 @@ import bean.Utente;
|
|||
|
||||
public class UtenteDao implements UtenteDaoI {
|
||||
|
||||
OracleConnection c = new OracleConnection();
|
||||
MySqlConnection c = new MySqlConnection();
|
||||
|
||||
@Override
|
||||
public boolean registrazione(String nickname, String password, String ruolo) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user