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

PHP & Base de données Discussion :

Création class pdo [PDO]


Sujet :

PHP & Base de données

  1. #1
    Membre régulier Avatar de stomerfull
    Inscrit en
    Septembre 2005
    Messages
    307
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 307
    Points : 122
    Points
    122
    Par défaut Création class pdo
    Bonjour à tous

    je voudrais créer une classe d'accès à des sgbd et faisant des traitements standards (ex :CRUD ) à l'aide de PDO

    je voudrais une structure comme ça

    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
    class BaseDBAccess {
    	function Insert($sql);
    }
     
    class PostgreSQLDBAccess extends BaseDBAccess {
    	function Insert($sql)
    	{
    		//postgresql specific code
    	}
    }
     
    class MySQLDBAccess extends BaseDBAccess {
    	function Insert($sql)
    	{
    		//MySQL specific code
    	}
    }
    que j'utilise dans une autre classe comme ça :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    class Serializer
    {
    	$dbAccess = new MySQLDBAccess(.....)
     
    	function SaveSomethingIntoDB($something)
    	{
    		$dbAccess-> Insert($something)
    	}
    }
    Pour la première classe j'ai trouvé ça :
    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
     
    <?php 
    class BaseDBAccess
    {
     
        private $db;
     
        /**
         *
         * Set variables
         *
         */
        public function __set($name, $value)
        {
            switch($name)
            {
                case 'username':
                $this->username = $value;
                break;
     
                case 'password':
                $this->password = $value;
                break;
     
                case 'dsn':
                $this->dsn = $value;
                break;
     
                default:
                throw new Exception("$name is invalid");
            }
        }
     
        /**
         *
         * @check variables have default value
         *
         */
        public function __isset($name)
        {
            switch($name)
            {
                case 'username':
                $this->username = null;
                break;
     
                case 'password':
                $this->password = null;
                break;
            }
        }
     
            /**
             *
             * @Connect to the database and set the error mode to Exception
             *
             * @Throws PDOException on failure
             *
             */
            public function conn()
            {
                isset($this->username);
                isset($this->password);
                if (!$this->db instanceof PDO)
                {
    				try{
    	            	$this->db = new PDO($this->dsn, $this->username, $this->password);
        	            $this->db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    				}catch(Exception $e){
        				echo 'Erreur : '.$e->getMessage().'<br />';
        				echo 'N° : '.$e->getCode();
     
    				}
     
                }
            }
     
     
            /***
             *
             * @select values from table
             *
             * @access public
             *
             * @param string $table The name of the table
             *
             * @param string $fieldname
             *
             * @param string $id
             *
             * @return array on success or throw PDOException on failure
             *
             */
            public function dbSelect($table, $fieldname=null, $id=null)
            {
                $this->conn();
                $sql = "SELECT * FROM `$table` WHERE `$fieldname`=:id";
                $stmt = $this->db->prepare($sql);
                $stmt->bindParam(':id', $id);
                $stmt->execute();
                return $stmt->fetchAll(PDO::FETCH_ASSOC);
            }
     
     
            /**
             *
             * @execute a raw query
             *
             * @access public
             *
             * @param string $sql
             *
             * @return array
             *
             */
            public function rawSelect($sql)
            {
                $this->conn();
                return $this->db->query($sql);
            }
     
            /**
             *
             * @run a raw query
             *
             * @param string The query to run
             *
             */
            public function rawQuery($sql)
            {
                $this->conn();
                $this->db->query($sql);
            }
     
     
            /**
             *
             * @Insert a value into a table
             *
             * @acces public
             *
             * @param string $table
             *
             * @param array $values
             *
             * @return int The last Insert Id on success or throw PDOexeption on failure
             *
             */
            public function dbInsert($table, $values)
            {
                $this->conn();
                /*** snarg the field names from the first array member ***/
                $fieldnames = array_keys($values[0]);
                /*** now build the query ***/
                $size = sizeof($fieldnames);
                $i = 1;
                $sql = "INSERT INTO $table";
                /*** set the field names ***/
                $fields = '( ' . implode(' ,', $fieldnames) . ' )';
                /*** set the placeholders ***/
                $bound = '(:' . implode(', :', $fieldnames) . ' )';
                /*** put the query together ***/
                $sql .= $fields.' VALUES '.$bound;
     
                /*** prepare and execute ***/
                $stmt = $this->db->prepare($sql);
                foreach($values as $vals)
                {
                    $stmt->execute($vals);
                }
            }
     
            /**
             *
             * @Update a value in a table
             *
             * @access public
             *
             * @param string $table
             *
             * @param string $fieldname, The field to be updated
             *
             * @param string $value The new value
             *
             * @param string $pk The primary key
             *
             * @param string $id The id
             *
             * @throws PDOException on failure
             *
             */
            public function dbUpdate($table, $fieldname, $value, $pk, $id)
            {
                $this->conn();
                $sql = "UPDATE `$table` SET `$fieldname`='{$value}' WHERE `$pk` = :id";
                $stmt = $this->db->prepare($sql);
                $stmt->bindParam(':id', $id, PDO::PARAM_STR);
                $stmt->execute();
            }
     
     
            /**
             *
             * @Delete a record from a table
             *
             * @access public
             *
             * @param string $table
             *
             * @param string $fieldname
             *
             * @param string $id
             *
             * @throws PDOexception on failure
             *
             */
            public function dbDelete($table, $fieldname, $id)
            {
                $this->conn();
                $sql = "DELETE FROM `$table` WHERE `$fieldname` = :id";
                $stmt = $this->db->prepare($sql);
                $stmt->bindParam(':id', $id, PDO::PARAM_STR);
                $stmt->execute();
            }
        } /*** end of class ***/
     
     
    ?>
    Pour les 3 autres classes j'ai tenter de faire comme ça mais je pense que je suis mal parti :

    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
     
    <?php 
    class MysqlDBAccess extends BaseDBAccess
    {
    	public function __construct()
    	{
     
    	}
     
    	public function MysqlConnectDb()
    	{
    		$MysqlConnect = new BaseDBAccess();
    		/*** The DSN ***/
        	$MysqlConnect->dsn = "mysql:dbname=mabase;host=localhost";
     
        	/*** MySQL username and password ***/
       		$MysqlConnect->username = 'username';
        	$MysqlConnect->password = 'password';	
    	}
     
    	public function Mysqlinsert()
    	{
    		$Connect = new BaseDBAccess();
    		/*** array of values to insert ***/
        	$values = array(
                array('animal_name'=>'bruce', 'animal_type'=>'dingo'),
                array('animal_name'=>'bruce', 'animal_type'=>'wombat'),
                array('animal_name'=>'bruce', 'animal_type'=>'kiwi'),
                array('animal_name'=>'bruce', 'animal_type'=>'kangaroo')
                );
       		 /*** insert the array of values ***/
       		 $MysqlConnect->dbInsert('animals', $values);
    	}
     
    	public function exec_nquery($p_query)
    	{
                    try{   
                            $stmt = $this->dbh->prepare($p_query);
                            $this->dbh->beginTransaction();
                            $stmt->execute();
                            $this->dbh->commit();
                    }catch (PDOException $e){
                            echo "__warning\nErreur [DB] => " . $e->getMessage();
                    }
     
            }
     
     
     
    }
     /*** end of class ***/
     
     
    ?>
    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
     
    class PostgresqlDBAccess extends BaseDBAccess
    {
    	public function __construct()
    	{
     
    	}
     
    	public function PgsqlConnectDb()
    	{
    		$PgSQLConnect = new BaseDBAccess();
    		/*** The DSN ***/
        	$PgSQLConnect->dsn = "pgsql:dbname=mabase;host=localhost";
     
        	/*** MySQL username and password ***/
       		$PgSQLConnect->username = 'username';
        	$PgSQLConnect->password = 'password';	
    	}
     
    	public function Mysqlinsert()
    	{
    		$PgSQLConnect = new BaseDBAccess();
    		/*** array of values to insert ***/
        	$values = array(
                array('animal_name'=>'bruce', 'animal_type'=>'dingo'),
                array('animal_name'=>'bruce', 'animal_type'=>'wombat'),
                array('animal_name'=>'bruce', 'animal_type'=>'kiwi'),
                array('animal_name'=>'bruce', 'animal_type'=>'kangaroo')
                );
       		 /*** insert the array of values ***/
       		 $PgSQLConnect->dbInsert('evostream', $values);
    	}
     
     
    }
    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
     
    class Serializer
    {
    	var $Pgsqlconnet;
    	var $urlXML;
     
    	public function OpenPgsqlConnect($_Pgsqlconnet)
    	{
    		$this->Pgsqlconnet = $_Pgsqlconnet;
    		$Postgres = new PostgresqlDBAccess();
    		$this->Pgsqlconnet = $Postgres->PgsqlConnectDb();
    	} 
     
    	public function parseXml($urlXMLtoparse)
    	{
    		$this->urlXML = $urlXMLtoparse;
    		//Charging data of the XML
    		$xml = simplexml_load_file($this->urlXML);
    		if($xml)
    		{
    			return $xml;
    		}	
     
    	}
    }
    Etant débutant dans le concept POO en général je suis un peu bloqué pour la suite
    Si quelqun a des idées ,tuto ou url
    je suis preneurs

    merci d'avance pour votre aide

  2. #2
    Membre éclairé Avatar de metagoto
    Profil pro
    Hobbyist programmateur
    Inscrit en
    Juin 2009
    Messages
    646
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Activité : Hobbyist programmateur

    Informations forums :
    Inscription : Juin 2009
    Messages : 646
    Points : 845
    Points
    845
    Par défaut
    Je n'ai pas trop regardé ton code. En tout cas, Julien Pauli a publié un tuto sur ce site (catégorie php) sur PDO et CRUD (il me semble). Je te laisse rechercher ça.

    http://julien-pauli.developpez.com/tutoriels/php/pdo/

  3. #3
    Membre régulier Avatar de stomerfull
    Inscrit en
    Septembre 2005
    Messages
    307
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 307
    Points : 122
    Points
    122
    Par défaut
    Bonjour
    en cherchant sur le net

    j'ai finalement pu écrire ma classe

    mais comme j'utilise postgresql comme base

    je suis face à une nouvelle probleme

    voici la classe principale

    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
     
    <?php 
    class BaseDBAccess
    {
        var $sDriver='';
        var $sHost='';
        var $sDatabase='';
        var $sUser='';
        var $sPassword='';
        private static $oDatabase;
    	var $oPdo=null;
    	var $sQuery='';
    	var $oPDOStatement=null;
     
     
        /**
         * Constructor for database connection
    	 * @param string $sDriver
    	 * @param string $sHost
    	 * @param string $sDatabase
    	 * @param string $sUser
    	 * @param string $sPassword
    	 */
         private function __construct($sDriver='',$sHost='',$sDatabase='',$sUser='',$sPassword='')
         {
    	     	try{
    				$this->setDriver($sDriver);
    				$this->setHost($sHost);
    				$this->setDatabase($sDatabase);
    				$this->setUser($sUser);
    				$this->setPassword($sPassword);
    				$sDrive = $this->sDriver.':dbname='.$this->sDatabase.";host=".$this->sHost;
    				$this->oPdo=new PDO($sDrive, $this->sUser, $this->sPassword);
    				$this->oPdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
    			}catch(PDOException $e){
    				echo 'Erreur : '.$e->getMessage().'<br />';
        			echo 'N° : '.$e->getCode();	
    			}
    			return $this->oPdo;
         }
     
     
    	/**
    	 * Method for setting all variables
    	 * @return unknown_type
    	 */
        public function setDriver($sDriver){
    			$this->sDriver=$sDriver;
    	}
     
    	public function setHost($sHost){
    			$this->sHost=$sHost;
    	}
     
    	public function setDatabase($sDatabase){
    			$this->sDatabase=$sDatabase;
    	}
     
    	public function setUser($sUser){
    			$this->sUser=$sUser;
    	}
     
    	public function setPassword($sPassword){
    			$this->sPassword=$sPassword;
    	}
     
    	public function setQuery($sQuery){
    			$this->sQuery=$sQuery;
    	}
     
    	protected function setPdo($oPdo){
    			$this->oPdo=$oPdo;
    	}  
     
    	/**
    	 * To get instance of Database
    	 *
    	 * @param string $sDriver
    	 * @param string $sHost
    	 * @param string $sDatabase
    	 * @param string $sUser
    	 * @param string $sPassword
    	 * @return Database object
    	 */
    	public static function getInstance($sDriver='',$sHost='',$sDatabase='',$sUser='',$sPassword=''){
    		if(is_null(self::$oDatabase)){
    			self::$oDatabase = new BaseDBAccess($sDriver,$sHost,$sDatabase,$sUser,$sPassword);
    		}
    		return self::$oDatabase;
    	}   
     
     
    	/**
    	 *  Initiates a transaction
    	* @return <bool>  */
    	public function beginTransaction()
    	{
    		return $this->oPdo->beginTransaction();
    	}
     
     
     
    	/* Commits a transaction
    	@return <bool> */
    	public function commit()
    	{
    		return $this->oPdo->commit();
    	}
     
    	/* Commits a transaction
    	@return <bool> */
    	public function prepared($oPDOStatement)
    	{
    		$this->oPDOStatement =$oPDOStatement;
    		return $this->oPdo->prepare($oPDOStatement);
    	}
     
     
    	/* Fetch the SQLSTATE associated with the
    	last operation on the database handle
    	* @return <string> */
    	public function errorCode()
    	{
    		return $this->oPdo->errorCode();
    	}
     
    	/* Fetch extended error information associated with
    	the last operation on the database handle
    	@return <array> */
    	public function erroInfo()
    	{
    		return $this->oPdo->errorInfo();
    	}
     
    	/* Executes an SQL statement, return the number of affected row
    	@param <String> $statement
    	@return <int> */
    	public function exec($statement)
    	{
    		return $this->oPdo->exec($statement);
    	}   
     
    	/* Rolls back a transaction
    	@return <bool> */
    	public function rollBack()
    	{
    		return $this->oPdo->rollBack();
    	}
     
    	public function lastInsertId()
    	{
    		return $this->oPdo->lastInsertId();
    	}
     
     
     } /*** end of class ***/
     
     
    ?>

    et la classe pour postgres
    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
     
    <?php 
    require_once ("BaseDBAccess.php");
    class PostgresqlDBAccess extends BaseDBAccess
    {
    	var $PgsqlConnection = '';
    	var $seq;
     
    	public function __construct()
    	{
    	   // $this->PgsqlConnectDb();
    	}
     
    	public function PgsqlConnectDb()
    	{
    		$this->PgsqlConnection = $PgsqlConnection;
    		$this->PgsqlConnection = BaseDBAccess::getInstance('pgsql','localhost','mabase','postgres','admin');
    		return $this->PgsqlConnection;	
    	}
     
    	 /**
          * @Insert a value into a table
          * @acces public
          * @param string $table
          * @param array $values
          * @return int The last Insert Id on success or throw PDOexeption on failure
          */
    	public function insert($table,$value)
    	{	
    	 	$this->PgsqlConnectDb();
    	    /*** snarg the field names from the first array member ***/
            $fieldnames = array_keys($value[0]);
     
            /*** now build the query ***/
            $size = sizeof($fieldnames);
            $i = 1;
            $sql = "INSERT INTO $table";
     
            /*** set the field names ***/
            $fields = '( ' . implode(' ,', $fieldnames) . ' )';
            /*** set the placeholders ***/
            $bound = '(:' . implode(', :', $fieldnames) . ' )';
            /*** put the query together ***/
            $sql .= $fields.' VALUES '.$bound;
     
            /*** prepare and execute ***/
            $stmt = $this->PgsqlConnection->prepared($sql);
     
            try
            {
    	           		 foreach($value as $vals)
    	        		 {
    		        		 	$this->PgsqlConnection->beginTransaction(); 
    		           		 	$stmt->execute($vals);
    		           		 	$this->PgsqlConnection->commit();
    		           		 	$lastid = $this->PgsqlConnection->lastInsertId();
    		           		 	var_dump($lastid);
    	           		 }
            }catch(PDOException $e){
               		 			$this->PgsqlConnection->rollback();
               		 			echo 'Erreur : '.$e->getMessage().'<br />';
       							echo 'N° : '.$e->getCode();
     
            }
    	}
     
     
    }
     /*** end of class ***/
     
     
    ?>

    Mon probleme c'est que j'arrive pas à retourné le lastinsertid lors de l'appel de la methode insert

    le var_dump me retourne du boolean bool(false) alors que ça doit être l'id du dernier enreg

    si vous avez une idée pour le lastinsertid ? je vous remercie pour votre aide

  4. #4
    Modérateur
    Avatar de grunk
    Homme Profil pro
    Lead dév - Architecte
    Inscrit en
    Août 2003
    Messages
    6 691
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 39
    Localisation : France, Côte d'Or (Bourgogne)

    Informations professionnelles :
    Activité : Lead dév - Architecte
    Secteur : Industrie

    Informations forums :
    Inscription : Août 2003
    Messages : 6 691
    Points : 20 222
    Points
    20 222
    Par défaut
    D'après la doc php :
    Returns the ID of the last inserted row, or the last value from a sequence object, depending on the underlying driver. For example, PDO_PGSQL() requires you to specify the name of a sequence object for the name parameter.
    Tu ne donne pas d'attribut à ton lastinsertid donc forcément il ne te retourne rien. (Postgres n'a pas de fonction last_insert_id comme mysql)
    Pry Framework php5 | N'oubliez pas de consulter les FAQ Java et les cours et tutoriels Java

  5. #5
    Membre régulier Avatar de stomerfull
    Inscrit en
    Septembre 2005
    Messages
    307
    Détails du profil
    Informations forums :
    Inscription : Septembre 2005
    Messages : 307
    Points : 122
    Points
    122
    Par défaut
    j'ai trouver cet fonction dans le document officiel et que j'ai utilisé et qui m'a bien retourné le lastinsertid


    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
     
    public function pgsqlLastInsertId($sqlQuery, $pdoObject)
    	{
       		 // Checks if query is an insert and gets table name
       		 if( preg_match("/^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)/is", $sqlQuery, $tablename) )
        	 {
            		// Gets this table's last sequence value
            		$query = "SELECT currval('" . $tablename[1] . "_id_seq') AS last_value";
     
            		$temp_q_id = $this->prepared($query);
            		$temp_q_id->execute();
     
            		if($temp_q_id)
            		{
                			$temp_result = $temp_q_id->fetch(PDO::FETCH_ASSOC);
                			return ( $temp_result ) ? $temp_result['last_value'] : false;
            		}
        	}
     
        	return false;
    	}
    merci :-)

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [POO] Utilisation d'une classe pdo perso
    Par artotal dans le forum Langage
    Réponses: 11
    Dernier message: 05/04/2008, 03h47
  2. [AddActionListener] Création classe Menu
    Par skyangel dans le forum Agents de placement/Fenêtres
    Réponses: 5
    Dernier message: 19/02/2008, 13h43
  3. [Débutante]création classe java
    Par salirose dans le forum Débuter avec Java
    Réponses: 2
    Dernier message: 22/01/2008, 12h03
  4. [PDO] Ne trouve pas la classe pdo
    Par sliderman dans le forum PHP & Base de données
    Réponses: 1
    Dernier message: 07/10/2007, 17h18
  5. [POO] POO pour une classe PDO
    Par nabab dans le forum Langage
    Réponses: 2
    Dernier message: 07/08/2007, 23h58

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