Download Latest Version Gestione_Imei.jar (4.5 MB)
Email in envelope

Get an email when there's a new version of Gestione_imei

Home / src
Name Modified Size InfoDownloads / Week
Parent folder
Statistiche.java 2011-03-13 4.9 kB
Trovato.java 2011-03-13 3.2 kB
Pannello.java 2011-03-13 20.8 kB
Presente.java 2011-03-13 2.6 kB
Non_trovato.java 2011-03-13 2.6 kB
OK.java 2011-03-13 2.6 kB
New_marca.java 2011-03-13 4.3 kB
New_modello.java 2011-03-13 4.7 kB
Marca.java 2011-03-13 6.6 kB
Modello.java 2011-03-13 8.3 kB
Imei_presente.java 2011-03-13 2.6 kB
lancio.java 2011-03-13 1.1 kB
Errore_imei.java 2011-03-13 2.7 kB
Database.java 2011-03-13 8.2 kB
Errore_data.java 2011-03-13 2.7 kB
Cellulari.java 2011-03-13 16.1 kB
Alert.java 2011-03-13 2.8 kB
iText-5.0.5.jar 2011-03-09 1.6 MB
mysql-connector-java-5.1.7-bin.jar 2011-03-09 709.9 kB
Totals: 19 Items   2.4 MB 0
Il seguente software è basato sul DBMS MySql e prevede che sia presente un utente con diritti di scittura e modifica delle tabelle.
Nel file Pannello.java sono presenti le stringhe nelle quali inserire i parametri d'accesso: ip del server mysql, nome del database, user e password per mysql.
Di default tali parametri sono:

nome database : imei
ip = localhost
user = root
password = angelo

Verrà creato un database con la seguente struttura:
Nome database: imei
Tabelle: marca, modello e telefono

A seguire i comandi per la creazione corretta del database con alcuni record d'esempio:

create database imei;
use imei
create table telefono (imei VARCHAR(15) NOT NULL, data DATE, marca VARCHAR(50), modello VARCHAR(50),PRIMARY KEY(imei));
create table modello (marca VARCHAR(50) NOT NULL , nome VARCHAR(50));
create table marca (id INT NOT NULL AUTO_INCREMENT, nome VARCHAR(50), PRIMARY KEY(id));
insert into marca(nome) values ('NOKIA');
insert into marca(nome) values ('SAMSUNG');
insert into marca(nome) values ('ALCATEL');
insert into modello(marca, nome) values ('ALCATEL', 'OTC707');
insert into telefono(imei,data,marca,modello) values('123456789012345','2010-12-11','NOKIA','N70');


per gli utenti Windows è possibile scaricare la versione di mysql non installante già configurato per essere subito funzionante.
Source: README, updated 2011-05-12