1 / 243

2005-2006 jean-pierre.perez

PL/SQL. . D

afya
Download Presentation

2005-2006 jean-pierre.perez

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


    1. PL/SQL 2005-2006 jean-pierre.perez@

    2. PL/SQL

    3. Déclarer des variables A la fin de ce chapitre, vous saurez: Identifier les différentes parties d’un bloc PL/SQL Spécifier des variables PL/SQL Déclarer des variables intégrées PL/SQL Déclarer des variables typées dynamiquement Exécuter un bloc PL/SQL Avec ou sans accès à la base

    4. Type de bloc Anonyme Bloc sans nom (cf: exemple précédent) Procédure & Fonction Blocs nommés et paramétrés, puis invoqués Les Triggers sont invoqués implicitement PLSP Equivalent en PL des ASP ou JSP. Dédié aux applications pour Internet ou la téléphonie mobile.

    5. Type de variables Quelques variables PL/SQL: Scalaires (colonnes d’une table) Composées (RECORD) Références (Pointeurs ou REF) LOB: contiennent des valeurs appelées LOCATORS qui spécifient l’emplacement de Large Objects (Images). COLLECTION Des variables non-PL/SQL BIND variables ( variables hôtes )

    6. Déclaration de Variables et Constantes - Syntaxe Adopter des conventions pour nommer des objets. Initialiser les constantes et les variables déclarées NOT NULL. Initialiser les identifiants en utilisant l'opérateur d'affectation ( := ) ou le mot réservé DEFAULT. Déclarer au plus un identifiant par ligne. Le type peut être primitif ou objet.

More Related