IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

SGBD Perl Discussion :

Script en Perl objet


Sujet :

SGBD Perl

  1. #1
    Candidat au Club
    Profil pro
    Étudiant
    Inscrit en
    Avril 2009
    Messages
    2
    Détails du profil
    Informations personnelles :
    Âge : 35
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Avril 2009
    Messages : 2
    Points : 2
    Points
    2
    Par défaut Script en Perl objet
    Bonjour,

    Je suis actuellement en stage et je doit programmer un robot en Perl objet (sous Eclipse). Je ne connais pas ce langage que je dois donc par conséquent découvrir très vite !

    Le robot doit parcourir des bases de données Access et lister certaines informations sur des employés. J'ai déjà créer des objets et j'arrive à me connecter à la base de données Access. Mais je ne sais pas comment faire ensuite pour lister les informations. Si j'ai bien compris je dois faire des requêtes SQL dans mon script entre la connexion et la déconnexion de la base. Mais comment faire le rapport à mes objets crées. Pour mieux comprendre, je vous mets le code de mes différents objets :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
         # Objet PROJET
     
    package Projet;
     
    use strict;
    use warnings;
    use Paye;
    use Travail;
     
    # Constructeur
     
    sub new {
        my ($classe,$ref,$titre,$code,$statut,$repertoire) = @_; 
        my $this = {
        	"reference"	=>$ref, 
        	"titre"		=>$titre, 
        	"code"		=>$code, 
        	"statut"	=>$statut,
    		"repertoire"=>$repertoire
        	};
        bless ($this,$classe); 
        return $this;
    }
     
    # Accesseurs
     
    sub getReference {
    	my ($this) = @_;
    	return $this->{reference};
    }
     
    sub getTitre {
    	my ($this) = @_;
    	return $this->{titre};
    }
     
    sub getCode {
    	my ($this) = @_;
    	return $this->{code};
    }
     
    sub getStatut{
    	my ($this) = @_;
    	return $this->{statut};
    }
     
    sub getRepertoire {
    	my ($this) = @_;
    	return $this->{repertoire};
    }
     
    # Modificateur
     
    sub setTitre {
    	my ($this,$titre) = @_;
    	$this->{titre} = $titre;
    }
     
    # Méthodes
     
    sub ajouterArcPaye {
    	my ($this,$IDArc,$debut,$fin,$quotite) = @_;
    	my $paye = Paye->new($debut,$fin,$quotite);
    	$this->{payeParArc}{$IDArc} = $paye;		# tableau assiocatif
    }
     
    sub getArcPaye {
    	my ($this,$IDArc) = @_;
    	return $this->{payeParArc}{$IDArc};
    }
     
    sub ajouterArcTravail {
    	my ($this,$IDArc,$debut,$fin,$quotite) = @_;
    	my $travail = Travail->new($IDArc,$debut,$fin,$quotite);
    	push(@{$this->{travailParArc}},$travail);		
    }
     
    1;
     
     
         # Objet ARCTEC
     
    package ArcTec;
     
    use strict;
    use warnings;
     
    # Constructeur
     
    sub new {
        my ($classe,$nom,$prenom,$trigramme,$fonction,%cout) = @_; 
        my $this = {
        	"nom"		=>$nom, 
        	"prenom"	=>$prenom, 
        	"trigramme"	=>$trigramme, 
    		"fonction"	=>$fonction,
    		"cout"		=>%cout
        	};
        bless ($this,$classe); 
        return $this;
    }
     
    # Accesseurs
     
    sub getNom {
    	my ($this) = @_;
    	return $this->{nom};
    }
     
    sub getPrenom {
    	my ($this) = @_;
    	return $this->{prenom};
    }
     
    sub getTrigramme{
    	my ($this) = @_;
    	return $this->{trigramme};
    }
     
    sub getFonction{
    	my ($this) = @_;
    	return $this->{fonction};
    }
     
    1;
     
     
         # Objet PAYE
     
    package Paye;
     
    use strict;
    use warnings;
     
    sub new {
    	my ($classe,$debut,$fin,$quotite) = @_; 
        my $this = {
        	"debut"		=>$debut, 
        	"fin"		=>$fin, 
        	"quotite"	=>$quotite
        	};
        bless ($this,$classe); 
        return $this;
    }
     
    sub getDebut {
    	my ($this) = @_;
    	return $this->{debut};
    }
     
    sub getFin {
    	my ($this) = @_;
    	return $this->{fin};
    }
     
    sub getQuotite {
    	my ($this) = @_;
    	return $this->{quotite};
    }
     
    1;
     
     
         # Objet TRAVAIL
     
    package Travail;
     
    use strict;
    use warnings;
     
    sub new {
    	my ($classe,$arc,$debut,$fin,$quotite) = @_; 
        my $this = {
        	"arc"		=>$arc,
        	"debut"		=>$debut, 
        	"fin"		=>$fin, 
        	"quotite"	=>$quotite
        	};
        bless ($this,$classe); 
        return $this;
    }
     
    sub getArc {
    	my ($this) = @_;
    	return $this->{arc};
    }
     
    sub getDebut {
    	my ($this) = @_;
    	return $this->{debut};
    }
     
    sub getFin {
    	my ($this) = @_;
    	return $this->{fin};
    }
     
    sub getQuotite {
    	my ($this) = @_;
    	return $this->{quotite};
    }
     
    1;
     
     
         # CONNEXION BASE ACCESS
     
    use strict;
    use warnings;
    use bdd;
     
    my $path_database='...';
    my $fullname_database="...";
    my $secure="...";
    my $user="...";
    my $pass="...";
    my $name_database="PROJET";
     
    my $bd;
    my $dbhandle;
     
    # Connexion
    $bd = bdd->new($path_database,$name_database,$name_database,$fullname_database,$secure,$user,$pass);
    $bd->create_odbc();
    $dbhandle=$bd->connection();
     
         # CODE à INSÉRER
     
    $dbhandle->disconnect();

    Je vous remercie pour votre aide !

  2. #2
    Nouveau membre du Club
    Homme Profil pro
    Architecte de système d'information
    Inscrit en
    Mars 2007
    Messages
    28
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France

    Informations professionnelles :
    Activité : Architecte de système d'information
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2007
    Messages : 28
    Points : 34
    Points
    34
    Par défaut
    Bonjour,

    Je te conseille de te familiariser d'abord avec DBI:
    http://djibril.developpez.com/tutoriels/perl/perl-dbi/

    Je pense que c'est suffisant...

Discussions similaires

  1. Réponses: 2
    Dernier message: 05/09/2006, 16h28
  2. [Perl Objet] Constructeur avec tableau en parametre
    Par crochepatte dans le forum Langage
    Réponses: 9
    Dernier message: 16/08/2006, 22h07
  3. Executer un script non Perl avec un script Perl.
    Par jabrane1983 dans le forum Langage
    Réponses: 6
    Dernier message: 03/08/2006, 14h43
  4. [remote scripting] Pb avec objet Internet.Explorer
    Par PschittN dans le forum Windows
    Réponses: 1
    Dernier message: 06/03/2006, 22h44
  5. [langage] Script en Perl - besoin d'aide
    Par julfra dans le forum Langage
    Réponses: 8
    Dernier message: 13/05/2004, 14h47

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo