SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";! SET time_zone = "+00:00";!

Size: px
Start display at page:

Download "SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";! SET time_zone = "+00:00";!"

Transcription

1 -- phpmyadmin SQL Dump -- version Client : localhost -- Généré le : Lun 19 Mai 2014 à 15:06 -- Version du serveur : Version de PHP : SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; /*40101 */; /*40101 */; /*40101 */; /*40101 SET NAMES utf8 */; Base de données : `cte` Structure de la table `homeworks` CREATE TABLE IF NOT EXISTS `homeworks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `created` datetime DEFAULT NULL, `end` datetime DEFAULT NULL, `content` longtext, `unit_id` int(11) NOT NULL, `promotion_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_homeworks_units_idx` (`unit_id`), KEY `fk_homeworks_promotions1_idx` (`promotion_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; Contenu de la table `homeworks` -- INSERT INTO `homeworks` (`id`, `created`, `end`, `content`, `unit_id`, `promotion_id`) VALUES (1, ' :05:16', ' :33:00', 'fonctions sql à intégrées', 3, 1), (2, ' :52:41', ' :52:00', 'Faire un cv', 2, 1); Structure de la table `interventions` -- CREATE TABLE IF NOT EXISTS `interventions` ( `id` int(11) NOT NULL AUTO_INCREMENT,

2 `dateintervention` datetime DEFAULT NULL, `duration` decimal(10,0) DEFAULT NULL, `contents` longtext, `label` varchar(255) DEFAULT NULL, `ip` varchar(255) DEFAULT NULL, `unit_id` int(11) NOT NULL, `promotion_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_interventions_units1_idx` (`unit_id`), KEY `fk_interventions_promotions1_idx` (`promotion_id`), KEY `fk_interventions_users1_idx` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ; Contenu de la table `interventions` -- INSERT INTO `interventions` (`id`, `dateintervention`, `duration`, `contents`, `label`, `ip`, `unit_id`, `promotion_id`, `user_id`) VALUES (1, ' :37:00', '4', 'Préparation d''un CV en anglais et d''une lettre de motivation.', 'CV & Lettre de motivation', '::1', 2, 1, 1), (2, ' :31:00', '1', 'Cours sur les suites puis exercices', 'Chapitre 3 : Les suites numériques', '::1', 3, 1, 24), (4, ' :45:00', '1', 'Exercices dans le livre p234', 'Equation différentielle', '::1', 2, 1, 24), (5, ' :46:00', '2', 'Exercices de la page 123', 'Probabilités', '::1', 2, 1, 24), (6, ' :46:00', '4', 'Exercice d''algorithme', 'Algorithme', '::1', 2, 1, 24), (7, ' :47:00', '4', 'Découverte de la moyenne, médiane et écart type.', 'Statistiques', ':: 1', 2, 1, 24), (8, ' :01:00', '4', 'Présentation du cte', 'CTE', '::1', 2, 1, 24); Structure de la table `programs` -- CREATE TABLE IF NOT EXISTS `programs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` date DEFAULT NULL, `url` text, `unit_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_programs_units1_idx` (`unit_id`) Contenu de la table `programs` -- INSERT INTO `programs` (`id`, `date`, `url`, `unit_id`) VALUES (2, ' ', 'Syllabus/D43protecBDD.pdf', 2); ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

3 -- Structure de la table `promotions` -- CREATE TABLE IF NOT EXISTS `promotions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `promotion_type_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_promotions_promotion_types1_idx` (`promotion_type_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; Contenu de la table `promotions` -- INSERT INTO `promotions` (`id`, `name`, `promotion_type_id`) VALUES (1, 'B11', 1), (2, 'B2', 2); Structure de la table `promotion_types` CREATE TABLE IF NOT EXISTS `promotion_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; Contenu de la table `promotion_types` -- INSERT INTO `promotion_types` (`id`, `label`) VALUES (1, 'Alternant'), (2, 'Initiaux'); Structure de la table `tests` -- CREATE TABLE IF NOT EXISTS `tests` ( `id` int(11) NOT NULL AUTO_INCREMENT, `contents` longtext, `date` date DEFAULT NULL, `correction` tinyint(1) DEFAULT NULL, `url` text, `intervention_id` int(11) NOT NULL, `test_type_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `fk_tests_interventions1_idx` (`intervention_id`), KEY `fk_tests_test_types1_idx` (`test_type_id`)

4 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; Contenu de la table `tests` -- INSERT INTO `tests` (`id`, `contents`, `date`, `correction`, `url`, `intervention_id`, `test_type_id`) VALUES (1, 'Evaluation\r\n\r\nRésoudre la fonction Un=x+y-z', ' ', 1, '', 2, 2); Structure de la table `test_types` -- CREATE TABLE IF NOT EXISTS `test_types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; Contenu de la table `test_types` -- INSERT INTO `test_types` (`id`, `label`) VALUES (1, 'Partiel'), (2, 'Controle'); Structure de la table `units` -- CREATE TABLE IF NOT EXISTS `units` ( `id` int(11) NOT NULL AUTO_INCREMENT, `label` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ; Contenu de la table `units` -- INSERT INTO `units` (`id`, `label`) VALUES (2, 'Anglais'), (3, 'Mathématiques'); Structure de la table `units_promotions`

5 CREATE TABLE IF NOT EXISTS `units_promotions` ( `unit_id` int(11) NOT NULL, `promotion_id` int(11) NOT NULL, PRIMARY KEY (`unit_id`,`promotion_id`), KEY `fk_units_has_promotions_promotions1_idx` (`promotion_id`), KEY `fk_units_has_promotions_units1_idx` (`unit_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; Contenu de la table `units_promotions` -- INSERT INTO `units_promotions` (`unit_id`, `promotion_id`) VALUES (2, 1); Structure de la table `users` -- CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(45) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `nom` varchar(255) DEFAULT NULL, `prenom` varchar(255) DEFAULT NULL, `admin` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=26 ; Contenu de la table `users` -- INSERT INTO `users` (`id`, `username`, `password`, `nom`, `prenom`, `admin`) VALUES (1, 'anglais', 'b691b6aa9c5bf5fcaa782ebb77e2c3162fb6bfd5', 'Ferrand', 'Jean-Jacques', 0), (3, 'admin', 'd518f6ed16f4c3790bb806cd af986c695', 'Alamasset', 'Eddie', 1), (22, 'tonton', 'd518f6ed16f4c3790bb806cd af986c695', 'Ocre', 'Thierry', 0), (24, 'root', 'b691b6aa9c5bf5fcaa782ebb77e2c3162fb6bfd5', 'Pruvost', 'Benjamin', 0), (25, 'Lefbvre', '3c6bb f3f65891e3f5d f8284cb2', 'Lefebvre', 'Patrick', 0); Structure de la table `users_units` -- CREATE TABLE IF NOT EXISTS `users_units` ( `user_id` int(11) NOT NULL, `unit_id` int(11) NOT NULL, PRIMARY KEY (`user_id`,`unit_id`), KEY `fk_users_has_units_units1_idx` (`unit_id`), KEY `fk_users_has_units_users1_idx` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

6 -- -- Contenu de la table `users_units` -- INSERT INTO `users_units` (`user_id`, `unit_id`) VALUES (1, 2), (24, 2), (24, 3); Contraintes pour les tables exportées Contraintes pour la table `homeworks` -- ALTER TABLE `homeworks` ADD CONSTRAINT `fk_homeworks_promotions1` FOREIGN KEY (`promotion_id`) REFERENCES `promotions` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_homeworks_units` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; Contraintes pour la table `interventions` -- ALTER TABLE `interventions` ADD CONSTRAINT `fk_interventions_promotions1` FOREIGN KEY (`promotion_id`) REFERENCES `promotions` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_interventions_units1` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_interventions_users1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; Contraintes pour la table `programs` -- ALTER TABLE `programs` ADD CONSTRAINT `fk_programs_units1` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; Contraintes pour la table `promotions` -- ALTER TABLE `promotions` ADD CONSTRAINT `fk_promotions_promotion_types1` FOREIGN KEY (`promotion_type_id`) REFERENCES `promotion_types` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; Contraintes pour la table `tests` -- ALTER TABLE `tests` ADD CONSTRAINT `fk_tests_interventions1` FOREIGN KEY (`intervention_id`) REFERENCES `interventions` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_tests_test_types1` FOREIGN KEY (`test_type_id`) REFERENCES `test_types` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION;

7 -- -- Contraintes pour la table `units_promotions` -- ALTER TABLE `units_promotions` ADD CONSTRAINT `fk_units_has_promotions_promotions1` FOREIGN KEY (`promotion_id`) REFERENCES `promotions` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_units_has_promotions_units1` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; Contraintes pour la table `users_units` -- ALTER TABLE `users_units` ADD CONSTRAINT `fk_users_has_units_units1` FOREIGN KEY (`unit_id`) REFERENCES `units` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION, ADD CONSTRAINT `fk_users_has_units_users1` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION; /*40101 SET */; /*40101 SET */; /*40101 SET */;

Relational Schema of Database:

Relational Schema of Database: Relational Schema of Database: DDL Commands(with an instance example used for testing the page): phpmyadmin SQL Dump version 3.4.10.1deb1 http://www.phpmyadmin.net Servidor: localhost Tiempo de generación:

More information

TP : Système de messagerie - Fichiers properties - PrepareStatement

TP : Système de messagerie - Fichiers properties - PrepareStatement TP : Système de messagerie - Fichiers properties - PrepareStatement exelib.net Une société souhaite mettre en place un système de messagerie entre ses employés. Les travaux de l équipe chargée de l analyse

More information

Multimedia im Netz Online Multimedia Winter semester 2015/16

Multimedia im Netz Online Multimedia Winter semester 2015/16 Multimedia im Netz Online Multimedia Winter semester 2015/16 Tutorial 04 Minor Subject Ludwig-Maximilians-Universität München Online Multimedia WS 2015/16 - Tutorial 04 (NF) - 1 Today s Agenda Repetition:

More information

Thursday, February 7, 2013. DOM via PHP

Thursday, February 7, 2013. DOM via PHP DOM via PHP Plan PHP DOM PHP : Hypertext Preprocessor Langage de script pour création de pages Web dynamiques Un ficher PHP est un ficher HTML avec du code PHP

More information

Mul$media im Netz (Online Mul$media) Wintersemester 2014/15. Übung 03 (Nebenfach)

Mul$media im Netz (Online Mul$media) Wintersemester 2014/15. Übung 03 (Nebenfach) Mul$media im Netz (Online Mul$media) Wintersemester 2014/15 Übung 03 (Nebenfach) Online Mul?media WS 2014/15 - Übung 3-1 Databases and SQL Data can be stored permanently in databases There are a number

More information

A SQL Injection : Internal Investigation of Injection, Detection and Prevention of SQL Injection Attacks

A SQL Injection : Internal Investigation of Injection, Detection and Prevention of SQL Injection Attacks A SQL Injection : Internal Investigation of Injection, Detection and Prevention of SQL Injection Attacks Abhay K. Kolhe Faculty, Dept. Of Computer Engineering MPSTME, NMIMS Mumbai, India Pratik Adhikari

More information

Introduction Les failles les plus courantes Les injections SQL. Failles Web. Maxime Arthaud. net7. Jeudi 03 avril 2014.

Introduction Les failles les plus courantes Les injections SQL. Failles Web. Maxime Arthaud. net7. Jeudi 03 avril 2014. Maxime Arthaud net7 Jeudi 03 avril 2014 Syllabus Introduction Exemple de Requête Transmission de données 1 Introduction Exemple de Requête Transmission de données 2 3 Exemple de Requête Transmission de

More information

Proxy IMAP/POP/SMTP securisé avec Perdition, Postfix et SASL

Proxy IMAP/POP/SMTP securisé avec Perdition, Postfix et SASL Proxy IMAP/POP/SMTP securisé avec Perdition, Postfix et SASL Installation de perdition : apt-get install perdition openssl Généré 1 clé privé et 1 certificat auto-signé : cd /etc/perdition openssl genrsa

More information

Designing and Implementing an Online Bookstore Website

Designing and Implementing an Online Bookstore Website KEMI-TORNIO UNIVERSITY OF APPLIED SCIENCES TECHNOLOGY Cha Li Designing and Implementing an Online Bookstore Website The Bachelor s Thesis Information Technology programme Kemi 2011 Cha Li BACHELOR S THESIS

More information

MS ACCESS DATABASE DATA TYPES

MS ACCESS DATABASE DATA TYPES MS ACCESS DATABASE DATA TYPES Data Type Use For Size Text Memo Number Text or combinations of text and numbers, such as addresses. Also numbers that do not require calculations, such as phone numbers,

More information

site et appel d'offres

site et appel d'offres Définition des besoins et élaboration de l'avant-projet Publication par le client de l'offre (opération sur le externe) Start: 16/07/02 Finish: 16/07/02 ID: 1 Dur: 0 days site et appel d'offres Milestone

More information

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database

Application note: SQL@CHIP Connecting the IPC@CHIP to a Database Application note: SQL@CHIP Connecting the IPC@CHIP to a Database 1. Introduction This application note describes how to connect an IPC@CHIP to a database and exchange data between those. As there are no

More information

Using SQL Server Management Studio

Using SQL Server Management Studio Using SQL Server Management Studio Microsoft SQL Server Management Studio 2005 is a graphical tool for database designer or programmer. With SQL Server Management Studio 2005 you can: Create databases

More information

Liste d'adresses URL

Liste d'adresses URL Liste de sites Internet concernés dans l' étude Le 25/02/2014 Information à propos de contrefacon.fr Le site Internet https://www.contrefacon.fr/ permet de vérifier dans une base de donnée de plus d' 1

More information

Corrigés des exercices SQL pour MySQL

Corrigés des exercices SQL pour MySQL Corrigés des exercices SQL pour MySQL Christian Soutou Eyrolles 2006 Chapitre 1 Création des tables CREATE TABLE Segment (indip varchar(11), nomsegment varchar(20) NOT NULL, etage TINYINT(1), CONSTRAINT

More information

Database Administration with MySQL

Database Administration with MySQL Database Administration with MySQL Suitable For: Database administrators and system administrators who need to manage MySQL based services. Prerequisites: Practical knowledge of SQL Some knowledge of relational

More information

CodeIgniter for Rapid PHP Application Development

CodeIgniter for Rapid PHP Application Development CodeIgniter for Rapid PHP Application Development Improve your PHP coding productivity with the free compact open-source MVC CodeIgniter framework! David Upton Chapter No. 4 "Using CI to Simplify Databases"

More information

Web Application Development Using UML

Web Application Development Using UML Web Application Development Using UML Dilip Kothamasu West Chester University West Chester, PA - 19382 dk603365@wcupa.edu Zhen Jiang Department of Computer Science Information Assurance Center West Chester

More information

--Nom: Laurent Senécal-Léonard 14 143 483

--Nom: Laurent Senécal-Léonard 14 143 483 --Nom: Laurent Senécal-Léonard 14 143 483 --Création de la table aéroport et de ses attributs drop table Aeroport cascade constraints; create table Aeroport ( codeaeroport varchar2(6) not null, ville varchar2(20)

More information

Is Paradox a good front-end for MySql?

Is Paradox a good front-end for MySql? Is Paradox a good front-end for MySql? Caution Be aware that some functionalities of Paradox concerning non standard alias (ODBC and SQL) are broken with the Service Pack 2 of windows XP. You can check

More information

IRF2000 IWL3000 SRC1000 Application Note - Apps with OSGi - Condition Monitoring with WWH push

IRF2000 IWL3000 SRC1000 Application Note - Apps with OSGi - Condition Monitoring with WWH push Version 2.0 Original-Application Note ads-tec GmbH IRF2000 IWL3000 SRC1000 Application Note - Apps with OSGi - Condition Monitoring with WWH push Stand: 28.10.2014 ads-tec GmbH 2014 IRF2000 IWL3000 SRC1000

More information

--- Vincent Hamel, hamv2701 14 162 988

--- Vincent Hamel, hamv2701 14 162 988 --- Vincent Hamel, hamv2701 14 162 988 ------------------------------------------------- drop table Aeroport cascade constraints; create table Aeroport ( codeaeroport varchar(20), ville varchar(20), etat

More information

Memo bconsole. Memo bconsole

Memo bconsole. Memo bconsole Memo bconsole Page 1 / 24 Version du 10 Avril 2015 Page 2 / 24 Version du 10 Avril 2015 Sommaire 1 Voir les différentes travaux effectués par bacula3 11 Commande list jobs 3 12 Commande sqlquery 3 2 Afficher

More information

Brazil + JDBC Juin 2001, douin@cnam.fr http://jfod.cnam.fr/tp_cdi/douin/

Brazil + JDBC Juin 2001, douin@cnam.fr http://jfod.cnam.fr/tp_cdi/douin/ Brazil + JDBC Juin 2001, douin@cnam.fr http://jfod.cnam.fr/tp_cdi/douin/ version du 26 Mai 2003 : JDBC-SQL et Brazil pré-requis : lecture de Tutorial JDBC de Sun Bibliographie Brazil [Bra00]www.sun.com/research/brazil

More information

PostGIS Integration Tips

PostGIS Integration Tips PostGIS Integration Tips PG Session #7-2015 - Paris Licence GNU FDL 24. septembre 2015 / www.oslandia.com / infos@oslandia.com A quoi sert un SIG? «Fleuve, Pont, Ville...» SELECT nom_comm FROM commune

More information

By : Ashish Modi. CRUD USING PHP (Create, Read, Update and Delete on Database) Create Database and Table using following Sql Syntax.

By : Ashish Modi. CRUD USING PHP (Create, Read, Update and Delete on Database) Create Database and Table using following Sql Syntax. CRUD USING PHP (Create, Read, Update and Delete on Database) Create Database and Table using following Sql Syntax. create database test; CREATE TABLE `users` ( `id` int(11) NOT NULL auto_increment, `name`

More information

A basic create statement for a simple student table would look like the following.

A basic create statement for a simple student table would look like the following. Creating Tables A basic create statement for a simple student table would look like the following. create table Student (SID varchar(10), FirstName varchar(30), LastName varchar(30), EmailAddress varchar(30));

More information

MINING DATA BANK OF THE ACP STATES

MINING DATA BANK OF THE ACP STATES MINING DATA BANK OF THE ACP STATES 4 of the database All the information is stored in a database and can be updated. This website is not dynamically linked to the database, but has been generated from

More information

Tutorial: How to Use SQL Server Management Studio from Home

Tutorial: How to Use SQL Server Management Studio from Home Tutorial: How to Use SQL Server Management Studio from Home Steps: 1. Assess the Environment 2. Set up the Environment 3. Download Microsoft SQL Server Express Edition 4. Install Microsoft SQL Server Express

More information

CSCI110 Exercise 4: Database - MySQL

CSCI110 Exercise 4: Database - MySQL CSCI110 Exercise 4: Database - MySQL The exercise This exercise is to be completed in the laboratory and your completed work is to be shown to the laboratory tutor. The work should be done in week-8 but

More information

Modifier le texte d'un élément d'un feuillet, en le spécifiant par son numéro d'index:

Modifier le texte d'un élément d'un feuillet, en le spécifiant par son numéro d'index: Bezier Curve Une courbe de "Bézier" (fondé sur "drawing object"). select polygon 1 of page 1 of layout "Feuillet 1" of document 1 set class of selection to Bezier curve select Bezier curve 1 of page 1

More information

Customer Bank Account Management System Technical Specification Document

Customer Bank Account Management System Technical Specification Document Customer Bank Account Management System Technical Specification Document Technical Specification Document Page 1 of 15 Table of Contents Contents 1 Introduction 3 2 Design Overview 4 3 Topology Diagram.6

More information

A Brief Introduction to MySQL

A Brief Introduction to MySQL A Brief Introduction to MySQL by Derek Schuurman Introduction to Databases A database is a structured collection of logically related data. One common type of database is the relational database, a term

More information

SOCIAL NETWORKING IN SMARTPHONE THROUGH A PROTOTYPE IMPLEMENTATION USING ANDROID

SOCIAL NETWORKING IN SMARTPHONE THROUGH A PROTOTYPE IMPLEMENTATION USING ANDROID Volume 5, No. 3, March 2014 Journal of Global Research in Computer Science RESEARCH PAPER Available Online at www.jgrcs.info SOCIAL NETWORKING IN SMARTPHONE THROUGH A PROTOTYPE IMPLEMENTATION USING ANDROID

More information

SVN Authentication and Authorization

SVN Authentication and Authorization Admin Guide SVN Authentication and Authorization Authentication and Authorization of SVN Users via Active Directory and OpenLDAP Gérard Bieli, Christian Haller Windisch, 14th August 2009 Contents 1 Prerequisites

More information

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today.

Services. Relational. Databases & JDBC. Today. Relational. Databases SQL JDBC. Next Time. Services. Relational. Databases & JDBC. Today. & & 1 & 2 Lecture #7 2008 3 Terminology Structure & & Database server software referred to as Database Management Systems (DBMS) Database schemas describe database structure Data ordered in tables, rows

More information

SoftwarePlanner Active Directory Authentication

SoftwarePlanner Active Directory Authentication User s Guide SoftwarePlanner Active Directory Authentication This document provides an explanation of using Active Directory with SoftwarePlanner. 1 Narrative In some situations, it may be preferable to

More information

RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014

RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014 RAPPORT FINANCIER ANNUEL PORTANT SUR LES COMPTES 2014 En application de la loi du Luxembourg du 11 janvier 2008 relative aux obligations de transparence sur les émetteurs de valeurs mobilières. CREDIT

More information

A table is a collection of related data entries and it consists of columns and rows.

A table is a collection of related data entries and it consists of columns and rows. CST 250 MySQL Notes (Source: www.w3schools.com) MySQL is the most popular open-source database system. What is MySQL? MySQL is a database. The data in MySQL is stored in database objects called tables.

More information

Building Data-centric Websites with Dataface. Steve Hannah Faculty of Applied Sciences Simon Fraser University shannah@sfu.ca

Building Data-centric Websites with Dataface. Steve Hannah Faculty of Applied Sciences Simon Fraser University shannah@sfu.ca Building Data-centric Websites with Dataface Steve Hannah Faculty of Applied Sciences Simon Fraser University shannah@sfu.ca What does Data-centric Mean? Centred around the data of the site. Use a database

More information

Web application for groups reservation is an additional module which can be bought in addition to Wise Timetable desktop application.

Web application for groups reservation is an additional module which can be bought in addition to Wise Timetable desktop application. WEB APPLICATION FOR GROUP RESERVATION Web application for groups reservation is an additional module which can be bought in addition to Wise Timetable desktop application. Application users can be: lecturers

More information

MYSQL DATABASE ACCESS WITH PHP

MYSQL DATABASE ACCESS WITH PHP MYSQL DATABASE ACCESS WITH PHP Fall 2009 CSCI 2910 Server Side Web Programming Typical web application interaction Database Server 3 tiered architecture Security in this interaction is critical Web Server

More information

In This Lecture. Security and Integrity. Database Security. DBMS Security Support. Privileges in SQL. Permissions and Privilege.

In This Lecture. Security and Integrity. Database Security. DBMS Security Support. Privileges in SQL. Permissions and Privilege. In This Lecture Database Systems Lecture 14 Natasha Alechina Database Security Aspects of security Access to databases Privileges and views Database Integrity View updating, Integrity constraints For more

More information

Websense SQL Queries. David Buyer June 2009 Be281@bfn.org

Websense SQL Queries. David Buyer June 2009 Be281@bfn.org Websense SQL Queries David Buyer June 2009 Be281@bfn.org Introduction The SQL queries that are listed here I have been using for a number of years now. I use them almost exclusively as an alternative to

More information

TP : Configuration de routeurs CISCO

TP : Configuration de routeurs CISCO TP : Configuration de routeurs CISCO Sovanna Tan Novembre 2010 révision décembre 2012 1/19 Sovanna Tan TP : Routeurs CISCO Plan 1 Présentation du routeur Cisco 1841 2 Le système d exploitation /19 Sovanna

More information

Aucune validation n a été faite sur l exemple.

Aucune validation n a été faite sur l exemple. Cet exemple illustre l utilisation du Type BLOB dans la BD. Aucune validation n a été faite sur l exemple. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data;

More information

PROCEDURE INSERTION(NUM IN EMPLOYES.NUMEMP%TYPE, NOM VARCHAR2, PRENOM IN VARCHAR2, PPHOTO IN BLOB, SALAIRE IN NUMBER);

PROCEDURE INSERTION(NUM IN EMPLOYES.NUMEMP%TYPE, NOM VARCHAR2, PRENOM IN VARCHAR2, PPHOTO IN BLOB, SALAIRE IN NUMBER); Le Package CREATE OR REPLACE PACKAGE GESTIONEMPLOYES AS DECLARATION DE LA VARIABLE DE TYPE REF CURSOR DECLARATION DES PROCÉDURES ET FONCTIONS TYPE EMPRESULTAT IS REF CURSOR; PROCEDURE INSERTION(NUM IN

More information

Future Proof Analytics Techniques for Web 2.0 Applications Near Real Time Support Techniques Constantine J. Aivalis* - Technological Education Institute Crete, Anthony C. Boucouvalas ** - University of

More information

SQL Injection. Blossom Hands-on exercises for computer forensics and security

SQL Injection. Blossom Hands-on exercises for computer forensics and security Copyright: The development of this document is funded by Higher Education of Academy. Permission is granted to copy, distribute and /or modify this document under a license compliant with the Creative

More information

MySQL+HandlerSocket=NoSQL

MySQL+HandlerSocket=NoSQL Why you need NoSQL Alternatives Meet HS HS internal working HS-MySQL interoperability Interface MySQL+HandlerSocket=NoSQL Protocol Using HS Commands Peculiarities Configuration hints Use cases @ Badoo

More information

MySQL quick start guide

MySQL quick start guide R E S E L L E R S U P P O R T www.fasthosts.co.uk MySQL quick start guide This guide will help you: Add a MySQL database to your reseller account. Find your database. Add additional users. Use the MySQL

More information

Creating a management system for customer information for a small business CASE: Botisto. Timo Aho

Creating a management system for customer information for a small business CASE: Botisto. Timo Aho Creating a management system for customer information for a small business CASE: Botisto Timo Aho Bachelor's Thesis Degree Programme in Business Information Technology 2012 Abstract Business Information

More information

STUDENT APPLICATION FORM (Dossier d Inscription) ACADEMIC YEAR 2010-2011 (Année Scolaire 2010-2011)

STUDENT APPLICATION FORM (Dossier d Inscription) ACADEMIC YEAR 2010-2011 (Année Scolaire 2010-2011) Institut d Administration des Entreprises SOCRATES/ERASMUS APPLICATION DEADLINE : 20th November 2010 OTHER (Autre) STUDENT APPLICATION FORM (Dossier d Inscription) ACADEMIC YEAR 2010-2011 (Année Scolaire

More information

You can choose to install the plugin through Magento Connect or by directly using the archive files.

You can choose to install the plugin through Magento Connect or by directly using the archive files. Magento plugin 1.5.7 installation 1. Plugin installation You can choose to install the plugin through Magento Connect or by directly using the archive files. 1.1 Installation with Magento Connect 1.1.1

More information

IMPLEMENTATION OF SUBJECTSPLUS AT ZAMAN UNIVERSITY, CAMBODIA

IMPLEMENTATION OF SUBJECTSPLUS AT ZAMAN UNIVERSITY, CAMBODIA EIFL-FOSS: Free and Open Source programme Improving ICT infrastructure in libraries IMPLEMENTATION OF SUBJECTSPLUS AT ZAMAN UNIVERSITY, CAMBODIA EIFL-FOSS CASE STUDY December 2013 This case study was compiled

More information

Update a MS2.2 20060817

Update a MS2.2 20060817 Los cambios a realizar en la base de datos son los siguientes. Se ejecutarán en el phpmyadmin del servidor. A ser posible sobre una base de datos replicada, por si hay algún error. Si no se trata de una

More information

Scenario: Law Office Management System / Law (Legal) Practice Management System

Scenario: Law Office Management System / Law (Legal) Practice Management System Scenario: Law Office Management System / Law (Legal) Practice Management System Software is to be developed for Law Office Management / Law Practice Management using which people can find lawyer s on the

More information

How to install phpbb forum on NTU student club web server

How to install phpbb forum on NTU student club web server How to install phpbb forum on NTU student club web server This guide contains the step by step instructions to install phpbb (stable release 3.0.7- PL1) on NTU student club web server. It does not cover

More information

Licence Informatique Année 2005-2006. Exceptions

Licence Informatique Année 2005-2006. Exceptions Université Paris 7 Java Licence Informatique Année 2005-2006 TD n 8 - Correction Exceptions Exercice 1 La méthode parseint est spécifiée ainsi : public static int parseint(string s) throws NumberFormatException

More information

A Project Presentation on Online Car Rental System

A Project Presentation on Online Car Rental System A Project Presentation on Online Car Rental System Submitted To: Department of Computer Science, Ganpat University,384012 Group No: 74 Submitted By: Internal Guide: Khushbu Patel (13084231136) Niyati Patel

More information

Online shopping store

Online shopping store Online shopping store 1. Research projects: A physical shop can only serves the people locally. An online shopping store can resolve the geometrical boundary faced by the physical shop. It has other advantages,

More information

Asterisk Cluster with MySQL Replication. JR Richardson Engineering for the Masses Hubguru@gmail.com

Asterisk Cluster with MySQL Replication. JR Richardson Engineering for the Masses Hubguru@gmail.com Asterisk Cluster with MySQL Replication JR Richardson Engineering for the Masses Hubguru@gmail.com Presentation Overview Reasons to cluster Asterisk Load distribution Scalability This presentation focuses

More information

How To Get A Culinary Degree At L.Institut Paul Bocuse

How To Get A Culinary Degree At L.Institut Paul Bocuse Worldwide Alliance programme Application form 2013 May 13th September 13th, 2013 School:.. Photo Nom / Surname :..... Prénom / First name :... Homme / Male Femme / Female Date de naissance / Date of birth

More information

Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA)

Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA) 13 November 2007 22:30 Extracting META information from Interbase/Firebird SQL (INFORMATION_SCHEMA) By: http://www.alberton.info/firebird_sql_meta_info.html The SQL 2003 Standard introduced a new schema

More information

INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP

INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP INSTALLING, CONFIGURING, AND DEVELOPING WITH XAMPP by Dalibor D. Dvorski, March 2007 Skills Canada Ontario DISCLAIMER: A lot of care has been taken in the accuracy of information provided in this article,

More information

Oracle Database 10g Express

Oracle Database 10g Express Oracle Database 10g Express This tutorial prepares the Oracle Database 10g Express Edition Developer to perform common development and administrative tasks of Oracle Database 10g Express Edition. Objectives

More information

Report on the Train Ticketing System

Report on the Train Ticketing System Report on the Train Ticketing System Author: Zaobo He, Bing Jiang, Zhuojun Duan 1.Introduction... 2 1.1 Intentions... 2 1.2 Background... 2 2. Overview of the Tasks... 3 2.1 Modules of the system... 3

More information

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe`

Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A. OwnCloud User Manual. TO I Cafe` Document From MAXIMUM BUSINESS INFORMATION TECHNOLOGY ON A OwnCloud User Manual TO I Cafe` DATED 20 Sep 2014 User Manual Guid For Owncloud I. Accessing the owncloud Web Interface To access the owncloud

More information

Configuring an Alternative Database for SAS Web Infrastructure Platform Services

Configuring an Alternative Database for SAS Web Infrastructure Platform Services Configuration Guide Configuring an Alternative Database for SAS Web Infrastructure Platform Services By default, SAS Web Infrastructure Platform Services is configured to use SAS Framework Data Server.

More information

AUTHENTICATION... 2 Step 1:Set up your LDAP server... 2 Step 2: Set up your username... 4 WRITEBACK REPORT... 8 Step 1: Table structures...

AUTHENTICATION... 2 Step 1:Set up your LDAP server... 2 Step 2: Set up your username... 4 WRITEBACK REPORT... 8 Step 1: Table structures... AUTHENTICATION... 2 Step 1:Set up your LDAP server... 2 Step 2: Set up your username... 4 WRITEBACK REPORT... 8 Step 1: Table structures... 8 Step 2: Import Tables into BI Admin.... 9 Step 3: Creating

More information

Brest. Backup : copy flash:ppe_brest1 running-config

Brest. Backup : copy flash:ppe_brest1 running-config Brest Backup : copy flash:ppe_brest1 running-config Cisco SF300-08 Mise en place des services : - Serveurs : 10.3.50.0/24 VLAN 2 (port 1) - DSI : 10.3.51.0/24 VLAN 3 (port 2) - Direction : 10.3.52.0/24

More information

Bibliothèque numérique de l enssib

Bibliothèque numérique de l enssib Bibliothèque numérique de l enssib Turning the library inside out, 4 au 7 juillet 2006 35 e congrès LIBER Open Access Theses and Dissertations McLean, Austin Director, Scholarly Communication and Dissertations

More information

Description of training units (of each module

Description of training units (of each module Learning Module title: Facilitating job seeking in the telecentre Position within the curriculum: Stage 2 (consolidation step) / Category 3 (Methodological skills in the development of transversal projects)

More information

PassMark Software BurnInTest Management Console. Quick start guide

PassMark Software BurnInTest Management Console. Quick start guide PassMark Software BurnInTest Management Console Quick start guide Edition: 1.1 Date: 16 August 2013 BurnInTest Version: 7.1.1011+ BurnInTest is a trademark of PassMark software Overview For BurnInTest

More information

Version of this tutorial: 1.06a (this tutorial will going to evolve with versions of NWNX4)

Version of this tutorial: 1.06a (this tutorial will going to evolve with versions of NWNX4) Version of this tutorial: 1.06a (this tutorial will going to evolve with versions of NWNX4) The purpose of this document is to help a beginner to install all the elements necessary to use NWNX4. Throughout

More information

Using ODBC with MDaemon 6.5

Using ODBC with MDaemon 6.5 Using ODBC with MDaemon 6.5 Alt-N Technologies, Ltd 1179 Corporate Drive West, #103 Arlington, TX 76006 Tel: (817) 652-0204 2002 Alt-N Technologies. All rights reserved. Other product and company names

More information

Database Security. Principle of Least Privilege. DBMS Security. IT420: Database Management and Organization. Database Security.

Database Security. Principle of Least Privilege. DBMS Security. IT420: Database Management and Organization. Database Security. Database Security Rights Enforced IT420: Database Management and Organization Database Security Textbook: Ch 9, pg 309-314 PHP and MySQL: Ch 9, pg 217-227 Database security - only authorized users can

More information

GSAC CONSIGNE DE NAVIGABILITE définie par la DIRECTION GENERALE DE L AVIATION CIVILE Les examens ou modifications décrits ci-dessous sont impératifs. La non application des exigences contenues dans cette

More information

DIPLOMA IN WEBDEVELOPMENT

DIPLOMA IN WEBDEVELOPMENT DIPLOMA IN WEBDEVELOPMENT Prerequisite skills Basic programming knowledge on C Language or Core Java is must. # Module 1 Basics and introduction to HTML Basic HTML training. Different HTML elements, tags

More information

MySQL Quick Start Guide

MySQL Quick Start Guide Fasthosts Customer Support MySQL Quick Start Guide This guide will help you: Add a MySQL database to your account. Find your database. Add additional users. Use the MySQL command-line tools through ssh.

More information

TP1 : Correction. Rappels : Stream, Thread et Socket TCP

TP1 : Correction. Rappels : Stream, Thread et Socket TCP Université Paris 7 M1 II Protocoles réseaux TP1 : Correction Rappels : Stream, Thread et Socket TCP Tous les programmes seront écrits en Java. 1. (a) Ecrire une application qui lit des chaines au clavier

More information

Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS)

Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS) Note concernant votre accord de souscription au service «Trusted Certificate Service» (TCS) Veuillez vérifier les éléments suivants avant de nous soumettre votre accord : 1. Vous avez bien lu et paraphé

More information

Microsoft SQL connection to Sysmac NJ Quick Start Guide

Microsoft SQL connection to Sysmac NJ Quick Start Guide Microsoft SQL connection to Sysmac NJ Quick Start Guide This Quick Start will show you how to connect to a Microsoft SQL database it will not show you how to set up the database. Watch the corresponding

More information

Magento Customization With Extensions. Ashley Schroder aschroder.com ashley.schroder@gmail.com

Magento Customization With Extensions. Ashley Schroder aschroder.com ashley.schroder@gmail.com Magento Customization With Extensions Ashley Schroder aschroder.com ashley.schroder@gmail.com World Wide Access Magento In New Zealand Evolving Magento developers Starting with Magento Difficult to understand,

More information

Employee Management System

Employee Management System A Project Presentation On Employee Management System Submitted By: Patel Sona B. Patel Payal J. [E.No-13084231201] [E.No-13084231170] M.Sc. (CA & IT) Semester-III Submitted To: Department of Computer Science,

More information

Administrer les solutions Citrix XenApp et XenDesktop 7.6 CXD-203

Administrer les solutions Citrix XenApp et XenDesktop 7.6 CXD-203 Administrer les solutions Citrix XenApp XenDesktop 7.6 CXD-203 MIEL Centre Agréé : N 11 91 03 54 591 Pour contacter le service formation : 01 60 19 16 27 Pour consulter le planning des formations : www.miel.fr/formation

More information

Régression logistique : introduction

Régression logistique : introduction Chapitre 16 Introduction à la statistique avec R Régression logistique : introduction Une variable à expliquer binaire Expliquer un risque suicidaire élevé en prison par La durée de la peine L existence

More information

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P.

G563 Quantitative Paleontology. SQL databases. An introduction. Department of Geological Sciences Indiana University. (c) 2012, P. SQL databases An introduction AMP: Apache, mysql, PHP This installations installs the Apache webserver, the PHP scripting language, and the mysql database on your computer: Apache: runs in the background

More information

Chapter 30 Exporting Inventory Management System Data

Chapter 30 Exporting Inventory Management System Data Chapter 30 Exporting Inventory Management System Data This chapter is intended for users who are familiar with Relational Database Management Systems (RDBMS) and the Structured Query Language (SQL), who

More information

Calcul parallèle avec R

Calcul parallèle avec R Calcul parallèle avec R ANF R Vincent Miele CNRS 07/10/2015 Pour chaque exercice, il est nécessaire d ouvrir une fenètre de visualisation des processes (Terminal + top sous Linux et Mac OS X, Gestionnaire

More information

Magento Dhru Fusion Integration Extension. IMEI Profile Configuration

Magento Dhru Fusion Integration Extension. IMEI Profile Configuration IMEI Profile Configuration Overview Profiles determine what API will run and which values from Magento are passed to the selected API. Static values and Custom Options values to be used in the API and

More information

An Introduction to Developing ez Publish Extensions

An Introduction to Developing ez Publish Extensions An Introduction to Developing ez Publish Extensions Felix Woldt Monday 21 January 2008 12:05:00 am Most Content Management System requirements can be fulfilled by ez Publish without any custom PHP coding.

More information

Using Netbeans and the Derby Database for Projects Contents

Using Netbeans and the Derby Database for Projects Contents Using Netbeans and the Derby Database for Projects Contents 1. Prerequisites 2. Creating a Derby Database in Netbeans a. Accessing services b. Creating a database c. Making a connection d. Creating tables

More information

equate Installation QUICK START GUIDE

equate Installation QUICK START GUIDE equate Installation QUICK START GUIDE CONTENTS 1 Before You Begin 2 Server Installation 3 Server Configuration 3a Connecting to VirtueMart / Prestashop 4 Client Installation (Windows) 5 Client Installation

More information

The SkySQL Administration Console

The SkySQL Administration Console www.skysql.com The SkySQL Administration Console Version 1.1 Draft Documentation Overview The SkySQL Administration Console is a web based application for the administration and monitoring of MySQL 1 databases.

More information

APPLICATION PROGRAM INTERFACE (API) FOR AIRASSURE WEB PM2.5 SOFTWARE

APPLICATION PROGRAM INTERFACE (API) FOR AIRASSURE WEB PM2.5 SOFTWARE APPLICATION PROGRAM INTERFACE (API) FOR AIRASSURE WEB PM2.5 SOFTWARE APPLICATION NOTE PM2.5-003 (US) Introduction TSI has released an API for the AirAssure Web Software that will enable customers to extract

More information

We begin with a number of definitions, and follow through to the conclusion of the installation.

We begin with a number of definitions, and follow through to the conclusion of the installation. Owl-Hosted Server Version 0.9x HOW TO Set up Owl using cpanel Introduction Much of the documentation for the installation of Owl Intranet Knowledgebase assumes a knowledge of servers, and that the installation

More information

!"# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23. mysql> select * from from clienti;

!# $ %& '( ! %& $ ' &)* + ! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23. mysql> select * from from clienti; ! "# $ %& '(! %& $ ' &)* +! * $, $ (, ( '! -,) (# www.mysql.org!./0 *&23 mysql> select * from from clienti; " "!"# $!" 1 1 5#',! INTEGER [(N)] [UNSIGNED] $ - 6$ 17 8 17 79 $ - 6: 1 79 $.;0'

More information