<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet title="XSL formatting" type="text/xsl" href="https://dotclear.placeoweb.com/feed/rss2/xslt" ?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>PlaceOweb Dotclear - Mot-clé - oracle</title>
    <link>https://dotclear.placeoweb.com/</link>
    <atom:link href="https://dotclear.placeoweb.com/feed/tag/oracle/rss2" rel="self" type="application/rss+xml" />
    <description></description>
    <language>fr</language>
    <pubDate>Wed, 20 May 2026 15:53:59 +0200</pubDate>
    <copyright></copyright>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <generator>Dotclear</generator>
          <item>
        <title>Représentation intervallaire avec nleft, nright ou lft, rght</title>
        <link>https://dotclear.placeoweb.com/post/nleft-nright-repr%C3%A9sentation-intervallaire</link>
        <guid isPermaLink="false">urn:md5:fbf8ce1ef2df6ab91eb398a4d216f7a8</guid>
        <pubDate>Sun, 27 Jan 2013 13:00:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Comment gérer un arbre de données sql avec son arborescence&amp;nbsp;? Avec la représentation intervallaire (tree behavior).&lt;/p&gt;


&lt;p&gt;Représentation intervallaire (intervallic representation) comportement arbre (tree behavior)&lt;/p&gt; &lt;p&gt;Avec un intervalle définissant un bord gauche et droit contenant les éléments fils. Et ceci en &quot;récursif&quot;, ce qui permet justement de le pas faire de requêtes récursives.


Les bords gauches et droits sont généralement nommés &quot;lft, rght&quot; ou &quot;nleft, nright&quot;


Tutoriel Vidéo : La Représentation Intervallaire de Tutoriel vidéo Mysql : Représentation... &lt;a href=&quot;https://dotclear.placeoweb.com/post/nleft-nright-repr%C3%A9sentation-intervallaire&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Représentation intervallaire avec nleft, nright ou lft, rght&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/nleft-nright-repr%C3%A9sentation-intervallaire#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/nleft-nright-repr%C3%A9sentation-intervallaire#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/566</wfw:commentRss>
              </item>
          <item>
        <title>JPA &amp; JBoss</title>
        <link>https://dotclear.placeoweb.com/post/JPA-JBoss</link>
        <guid isPermaLink="false">urn:md5:c8fac6479254d9033a5f922e0a162947</guid>
        <pubDate>Sat, 16 Jun 2012 16:14:00 +0200</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>JAVA</category>
                          <category>java</category>
                  <category>javaEE</category>
                  <category>jboss</category>
                  <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Comment utiliser JPA sous JBoss&amp;nbsp;?&lt;/p&gt; &lt;p&gt;Java Persistence API Java Persistence API
JPA (Java Persistence API)
Java Persistence API (JPA) a pour objectif d'offrir un modèle d'ORM (Object Relational Mapping)

Java Persistence API (la suite)

doc JBoss - Hibernate : Tutorial Using the Java Persistence API (JPA)
doc JBoss AS7 : JPA Reference Guide
JPA Queries » Query API » Running Queries... &lt;a href=&quot;https://dotclear.placeoweb.com/post/JPA-JBoss&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; JPA &amp;amp; JBoss&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/JPA-JBoss#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/JPA-JBoss#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/532</wfw:commentRss>
              </item>
          <item>
        <title>Java JDBC paramètre nommé</title>
        <link>https://dotclear.placeoweb.com/post/Java-JDBC-param%C3%A8tre-nomm%C3%A9</link>
        <guid isPermaLink="false">urn:md5:3ab9202812983e67aa250a279512ff1a</guid>
        <pubDate>Sat, 16 Jun 2012 16:07:00 +0200</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>JAVA</category>
                          <category>java</category>
                  <category>mariadb</category>
                  <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;En remplacement du paramètre &quot;?&quot; pour injecter les valeurs dans un Statement, comment utiliser les paramètres nommés de requête(&lt;a href=&quot;http://docs.oracle.com/javase/8/docs/api/java/sql/PreparedStatement.html&quot;&gt;PreparedStatement&lt;/a&gt;) avec JDBC ? (pas les requêtes nommées de JPA, ni les paramètres de procédures CALL)&lt;/p&gt; &lt;p&gt;Les paramètres nommés avec JDBC ne sont pas implémenté par défaut. (Seul JPA le permet, mais ce n'est plus sur des requêtes SQL natives).


Named Parameters for PreparedStatement 1/2 Making JDBC code easier to read and write

Named Parameters for PreparedStatement 2/2




NamedParameterStatement versus PreparedStatement... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Java-JDBC-param%C3%A8tre-nomm%C3%A9&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Java JDBC paramètre nommé&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Java-JDBC-param%C3%A8tre-nomm%C3%A9#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Java-JDBC-param%C3%A8tre-nomm%C3%A9#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/531</wfw:commentRss>
              </item>
          <item>
        <title>Editeurs SQL</title>
        <link>https://dotclear.placeoweb.com/post/Editeurs-SQL</link>
        <guid isPermaLink="false">urn:md5:1076ab8bf9ac5ee099832b5b667d977c</guid>
        <pubDate>Fri, 16 Sep 2011 20:05:00 +0200</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Quels sont les meilleurs éditeurs de code SQL&amp;nbsp;? connectés à vos serveurs SQL&amp;nbsp;: MySQL, Oracle, PostgreSQL, Microsoft SQL, SQLite, ...&lt;/p&gt; &lt;p&gt;Editeurs MySQL


MySQL Workbench, développés par MySQL, est un outil multi-plateforme visuel de conception de bases de données
HeidiSQL, un libre et léger MySQL front-end, basé sur un interface Windows pour les bases de données MySQL
phpMyAdmin est un outil logiciel libre écrit en PHP destiné à gérer l'administration de MySQL sur le Web ou dans... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Editeurs-SQL&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Editeurs SQL&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Editeurs-SQL#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Editeurs-SQL#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/464</wfw:commentRss>
              </item>
          <item>
        <title>search.mysql.com is not working</title>
        <link>https://dotclear.placeoweb.com/post/search.mysql.com-is-not-working</link>
        <guid isPermaLink="false">urn:md5:a40baa46d3feb730a289f2081b799a87</guid>
        <pubDate>Wed, 16 Mar 2011 17:44:00 +0000</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                <description>&lt;p&gt;Stable &lt;a href=&quot;http://search.mysql.com/search/query/search?q=introduction.html&quot;&gt;MySQL search web site&lt;/a&gt; ?&lt;/p&gt; &lt;p&gt;Not really : connection failure :


Internal error: Cannot obtain XAConnection weblogic.common.resourcepool.ResourceDisabledException: Pool EnterpriseSearchDS is Suspended, cannot allocate resources to applications..
at weblogic.common.resourcepool.ResourcePoolImpl.reserveResourceInternal(ResourcePoolImpl.java:357)
at... &lt;a href=&quot;https://dotclear.placeoweb.com/post/search.mysql.com-is-not-working&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; search.mysql.com is not working&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/search.mysql.com-is-not-working#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/search.mysql.com-is-not-working#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/433</wfw:commentRss>
              </item>
          <item>
        <title>Doctrine2 PHP (Doctrine 2.x)</title>
        <link>https://dotclear.placeoweb.com/post/Doctrine2-PHP</link>
        <guid isPermaLink="false">urn:md5:00b5e1f16436ee3abb1e03862ecb2c77</guid>
        <pubDate>Sun, 26 Sep 2010 22:40:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>PHP</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>php</category>
                  <category>sql</category>
                <description>&lt;p&gt;Quelques notes sur l'ORM Doctrine 2 PHP dans sa version 2.x (équivalent de l'ORM Java Hibernate en PHP). Voyez &lt;a href=&quot;https://dotclear.placeoweb.com/post/Doctrine-PHP&quot;&gt;Doctrine PHP version 1.x&lt;/a&gt; pour les plus anciens.&lt;/p&gt; &lt;p&gt;Doctrine2 (PHP Doctrine 2)


Doctrine 2 est de sortie dans vos codes sources PHP !


Certains savez peut-être que nous avions initialement prévu de la version 2.0 stable, mais aujourd'hui nous sommes tout simplement pas encore là. Toutefois, les choses vont très bien et nous sommes confiants que les versions finales des versions 2.0 sont proches.... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Doctrine2-PHP&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Doctrine2 PHP (Doctrine 2.x)&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Doctrine2-PHP#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Doctrine2-PHP#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/394</wfw:commentRss>
              </item>
          <item>
        <title>Migration MySQL vers Oracle avec Oracle SQL Developer</title>
        <link>https://dotclear.placeoweb.com/post/Migration-MySQL-vers-Oracle-avec-Oracle-SQL-Developer</link>
        <guid isPermaLink="false">urn:md5:d43427bacd1f128734e070a821e5004d</guid>
        <pubDate>Sat, 01 May 2010 12:05:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Comment migrer vos bases de données MySQL à destination d'un serveur Oracle Database&amp;nbsp;?&lt;/p&gt; &lt;p&gt;Prérequis


A télécharger :

SQL Developer 3.x

Testé avec : Oracle SQL Developer 3.0.02

MySQL Connector/J, l'officiel driver JDBC pour MySQL.

Testé avec : Connector/J 5.1.14


Déjà installé (et configuré) :

Votre base donnée MySQL (contenant les données à migrer)
Votre base Oracle (comme destination)



Ajouter Connecteur JDBC MySQL dans SQL... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Migration-MySQL-vers-Oracle-avec-Oracle-SQL-Developer&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Migration MySQL vers Oracle avec Oracle SQL Developer&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Migration-MySQL-vers-Oracle-avec-Oracle-SQL-Developer#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Migration-MySQL-vers-Oracle-avec-Oracle-SQL-Developer#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/417</wfw:commentRss>
              </item>
          <item>
        <title>Doctrine PHP (Doctrine 1.x)</title>
        <link>https://dotclear.placeoweb.com/post/Doctrine-PHP</link>
        <guid isPermaLink="false">urn:md5:74fbad05876d3e5187ef88d327429f8a</guid>
        <pubDate>Sat, 24 Apr 2010 14:41:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>PHP</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>php</category>
                  <category>sql</category>
                <description>&lt;p&gt;Quelques notes sur l'ORM Doctrine PHP dans sa version 1.x (équivalent de l'ORM Java Hibernate en PHP). Pour la version récente, voyez &lt;a href=&quot;https://dotclear.placeoweb.com/post/Doctrine2-PHP&quot;&gt;Doctrine 2 PHP&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;DQL Update NULL avec Doctrine


Pour mettre à jour une valeur qui peut être nulle ou peut contenir une valeur valide non nulle, il vous faut faire un if ternaire : condition ? true : false

-&gt;set('leChamp', (($laValeur=== null) ? 'NULL' : '?'), $laValeur)


ou coder le if

pour le null


-&gt;set('leChamp', 'NULL');


pour la valeur (non nulle)... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Doctrine-PHP&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Doctrine PHP (Doctrine 1.x)&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Doctrine-PHP#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Doctrine-PHP#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/347</wfw:commentRss>
              </item>
          <item>
        <title>Règles et conventions de nommage SQL</title>
        <link>https://dotclear.placeoweb.com/post/R%C3%A8gles-et-conventions-de-nommage-SQL</link>
        <guid isPermaLink="false">urn:md5:8fb3eb62cd7c1e29b1cb5702742e0e5a</guid>
        <pubDate>Sat, 24 Apr 2010 11:45:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Quelle norme de nommage SQL (MySQL, Oracle, Postgres, MsSQL, ...) choisir pour le nom&amp;nbsp;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;des bases de données,&lt;/li&gt;
&lt;li&gt;des tables,&lt;/li&gt;
&lt;li&gt;des colonnes.&lt;strong&gt;&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt; &lt;p&gt;Règles de standardisation SQL et conventions de nommage des objets SQL


Normalisation des noms des objets des bases de données


Pattern : &quot;[a .. z] + [A .. Z] + [0 .. 9] +[ _ ]&quot;  avec les restrictions suivantes :

ne pas dépasser 128 caractères
ne doit pas commencer par un chiffre
ne peut avoir plusieurs caractères &quot;blanc souligné&quot; de suite
la... &lt;a href=&quot;https://dotclear.placeoweb.com/post/R%C3%A8gles-et-conventions-de-nommage-SQL&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Règles et conventions de nommage SQL&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/R%C3%A8gles-et-conventions-de-nommage-SQL#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/R%C3%A8gles-et-conventions-de-nommage-SQL#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/392</wfw:commentRss>
              </item>
          <item>
        <title>SQL : Oracle MySQL SQL Server Compact Edition, les différences entre les moteurs SQL</title>
        <link>https://dotclear.placeoweb.com/post/Oracle-MySQL-SQL-Server-Compact-Edition</link>
        <guid isPermaLink="false">urn:md5:e205ff6a7cd5b122ed2294b47a2eca53</guid>
        <pubDate>Thu, 01 Apr 2010 19:52:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Quelques différences entre Microsoft SQL Server CE, MySQL et Oracle&amp;nbsp;? Les différences entre les principales commandes (mots clés) des moteurs SQL&amp;nbsp;: MySQL, Oracle, Microsoft SQL Server (MS SQL) et sa Compact Edition (MS SQL CE)&lt;/p&gt; &lt;p&gt;Les commentaires SQL


MySQL

-- Cette ligne est en commentaire
SELECT * # Sur une ligne tout ce qui suit le '#' est en commentaire
FROM maTable


Les délimiteurs de nom d'objets : bases, tables et colonnes


Quelle est la différence entre les caractères ', ` et '' ? ?
` (accent grave ou backtick, touches Alt Gr + 7) sert à entourer les noms des... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Oracle-MySQL-SQL-Server-Compact-Edition&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; SQL : Oracle MySQL SQL Server Compact Edition, les différences entre les moteurs SQL&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Oracle-MySQL-SQL-Server-Compact-Edition#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Oracle-MySQL-SQL-Server-Compact-Edition#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/340</wfw:commentRss>
              </item>
          <item>
        <title>Oracle</title>
        <link>https://dotclear.placeoweb.com/post/Oracle</link>
        <guid isPermaLink="false">urn:md5:aa2f47d01a0c8defe54b499cd0a0e4fa</guid>
        <pubDate>Sat, 20 Mar 2010 22:28:00 +0000</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Notes au sujet de la base de données Oracle et d'éventuelles migration de MySQL à destination d'Oracle.&lt;/p&gt; &lt;p&gt;Oracle : Liens utiles


Software Downloads

Oracle Database Software Downloads

Oracle Documentation

Oracle Database Documentation

Oracle SQL Developer
Oracle SQL Developer Migration
Oracle &amp; Eclipse : Oracle Enterprise Pack for Eclipse

Oracle Enterprise Pack for Eclipse : certified set of Eclipse plug-ins is designed to help develop, deploy and... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Oracle&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Oracle&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Oracle#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Oracle#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/337</wfw:commentRss>
              </item>
          <item>
        <title>Tips SQL</title>
        <link>https://dotclear.placeoweb.com/post/Tips-SQL</link>
        <guid isPermaLink="false">urn:md5:c951cc95ff40cc1dfde769df4ebe0e6d</guid>
        <pubDate>Fri, 01 May 2009 16:09:00 +0200</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>SQL</category>
                          <category>mysql</category>
                  <category>oracle</category>
                  <category>sql</category>
                <description>&lt;p&gt;Astuces pour SQL, MySQL, Oracle et les autres &lt;a href=&quot;http://fr.wikipedia.org/wiki/Syst%C3%A8me_de_gestion_de_base_de_donn%C3%A9es&quot;&gt;systèmes de gestion de base de données&lt;/a&gt; (SGDB).&lt;/p&gt; &lt;p&gt;MySQL


Se connecter avec le client MySQL sans la complétion syntaxique qui pose problème avec les tabulation


mysql --no-auto-rehash


Activation des log sous MySQL sans redémarrer le serveur


Voici une commande permettant d'enregistrer l'ensemble des requêtes exécutées sur votre serveur MySQL, ce qui peut servir en production à tracer des... &lt;a href=&quot;https://dotclear.placeoweb.com/post/Tips-SQL&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Tips SQL&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/Tips-SQL#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/Tips-SQL#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/232</wfw:commentRss>
              </item>
          <item>
        <title>Utilisation de PHP PDO sur MySQL et Oracle</title>
        <link>https://dotclear.placeoweb.com/post/PDO</link>
        <guid isPermaLink="false">urn:md5:948a4b6c956f21393e852eb5c688b05d</guid>
        <pubDate>Mon, 09 Feb 2009 22:40:00 +0100</pubDate>
        <dc:creator>PlaceOweb</dc:creator>
                  <category>PHP</category>
                          <category>framework</category>
                  <category>mysql</category>
                  <category>oracle</category>
                  <category>php</category>
                  <category>sql</category>
                <description>&lt;p&gt;&lt;a href=&quot;http://fr.php.net/pdo&quot;&gt;PDO&lt;/a&gt; (PHP Data Objects), interface pour accéder à n'importe quelle base de données depuis PHP.&lt;/p&gt; &lt;p&gt;Benchmark PDO


Après de mini benchmarks sur PDO, j'ai constaté que :

bindParam est plus rapide que l'utilisation d'un array() dans l'exécution du statement.
PDO::query reste plus rapide et plus simple qu'un prepared statement dans le cas d'une requête statique.


Difficultés rencontrés à l'utilisation de PDO


num_rows et num_fields


num_rows :... &lt;a href=&quot;https://dotclear.placeoweb.com/post/PDO&quot;&gt;&lt;em&gt;Lire&lt;/em&gt; Utilisation de PHP PDO sur MySQL et Oracle&lt;/a&gt;&lt;/p&gt;
</description>
        
                  <comments>https://dotclear.placeoweb.com/post/PDO#comment-form</comments>
          <wfw:comment>https://dotclear.placeoweb.com/post/PDO#comment-form</wfw:comment>
          <wfw:commentRss>https://dotclear.placeoweb.com/feed/atom/comments/226</wfw:commentRss>
              </item>
      </channel>
</rss>
