Programa llamado insert.html

Size: px
Start display at page:

Download "Programa llamado insert.html"

Transcription

1 Programa llamado insert.html <HTML> <!-- comentarios --> <HEAD> <TITLE> datos generales </TITLE> </HEAD> <BODY> <center> <h2><i>registro de Producto</i></h2> <FORM Action="cgi-bin/insert.pl" METHOD=Post> <TABLE border=0> <TR > <TD> NUMERO DE IDENTIFICACION : </td> <TD Colspan=1> <input type=text name="id"> </td> <TR> <TD> NOMBRE :</td> <TD Colspan=2> <input type=text name="nombre"> </td> <TR> <TD> PRECIO :</td> <TD Colspan=3> <input type=text name="precio"> </td> <tdalign=center > <input type="submit" name=boton1 value="alta "> </td> </tr> </table> </form> </BODY> </HTML> Programa en perl llamado insert.pl #!/usr/bin/perl -w use strict; use CGI;

2 use DBI; my $q = new CGI; my $db="producto#maq"; my $tabla="articulos"; my $driver="mysql"; my $usuario="root"; my $id; my $nombre; my $precio; print $q->header("text/html"); print $q->start_html(-title =>"informacion"); print"\n"; $id =$q->param('id'); $nombre =$q->param('nombre'); $precio =$q->param('precio'); my $dbh=dbi->connect("dbi:$driver:$db",$usuario) die "\n error al abrir la base de datos"; my $resultado=$dbh->do ("insert into $tabla (id, nombre, precio) values ('$id', '$nombre','$precio');") warn "error al insertar datos"; print " <CENTER>\n"; print " <TABLE Border=1 >\n"; print " <TR ><TH colspan=2>datos </TH></TR>\n"; print " <TR ><Td> Nombre :</Td><td>$nombre</td></TR>\n"; print " <TR ><Td> id :</Td><td>$id</td></TR>\n"; print " <TR ><Td> precio :</td><td>$precio</td></tr>\n"; print " </TABLE>\n";

3 print " </CENTER>\n"; $dbh->disconnect warn "\fallo al desconectarse"; print $q->end_html(); Este programa es el código HTML que manda llamar a un CGI. Programa en llamado selectnombre.html

4 <HTML> <!-- comentarios --> <HEAD> <TITLE> datos generales </TITLE> </HEAD> <BODY> <center> <h2><i>registro de Producto</i></h2> <FORM Action="cgi-bin/selectnombre.pl" METHOD=Post> <TABLE border=0> <TR ><Td> Nombre : </td> </tr> </table> </form> </BODY> </HTML> <td Colspan=3> <input type=text name="nombre"></td> <tdalign=center > <input type="submit" name=boton1 value="busqueda "> </td> Programa en perl llamado selectnombre.pl #!/usr/bin/perl -w use strict; use CGI; use DBI; my $q = new CGI; my $db="producto#maq"; my $tabla="articulos";

5 my $driver="mysql"; my $usuario="root"; my $id; my $nombre; print $q->header("text/html"); print $q->start_html(-title =>"informacion"); print"\n"; $nombre =$q->param('nombre'); my $dbh=dbi->connect("dbi:$driver:$db",$usuario) die "\n erro al abrir la base de datos"; my $sth=$dbh->prepare ("select * from $tabla where nombre='$nombre'"); $sth->execute(); while (my $ref=$sth->fetchrow_hashref()){ $id=$ref->{id}; $nombre=$ref->{nombre}; print " <CENTER>\n"; print " <TABLE Border=1 >\n"; print " <TR ><TH colspan=2>datos </TH></TR>\n"; print " <TR ><Td> Nombre :</Td><td>$nombre</td></TR>\n"; print " <TR ><Td> id :</Td><td>$id </td></tr>\n"; print " </TABLE>\n"; print " </CENTER>\n"; } $sth->finish(); $dbh->disconnect warn "\fallo al desconectarse"; print $q->end_html();

6 Programa llamado delete.html <HTML> <!-- comentarios --> <HEAD> <TITLE> datos generales </TITLE> </HEAD> <BODY> <center> <h2><i>borar productos</i></h2> <FORM Action="cgi-bin/delete.pl" METHOD=Post>

7 <TABLE border=0> <TR> <TD> NUMERO DE IDENTIFICACION :</td> <TD Colspan=2> <input type=text name=id> </td> <tdalign=center > <input type="submit" name=boton1 value="borrar "> </td> </tr> </table> </form> </BODY> </HTML> Programa en perl llamado delete.pl #!/usr/bin/perl -w use strict; use cgi; use dbi; my $q = new cgi; my $db="producto#maq"; my $tabla="articulos"; my $driver="mysql"; my $usuario="root"; my $id; my $nombre; my $precio; print $q->header("text/html"); print $q->start_html(-title =>"informacion"); print"\n"; $id =$q->param('id');

8 my $dbh=dbi->connect("dbi:$driver:$db",$usuario) die "\n erro al abrir la base de datos"; my $sth=$dbh->prepare ("select * from $tabla where nombre='$id"); $sth->execute(); while (my $ref=$sth->fetchrow_hashref()){ $id1=$ref->{id}; $nombre=$ref->{nombre}; $precio=$ref->{precio}; print " <CENTER>\n"; print " <TABLE Border=1 >\n"; print " <TR ><TH colspan=2>datos </TH></TR>\n"; print " <TR ><Td> Nombre :</Td><td>$nombre</td></TR>\n"; print " <TR ><Td> id :</Td><td>$id </td></tr>\n"; print " </TABLE>\n"; print " </CENTER>\n"; if($id==$id1) { my $resultado=$dbh->do ("delete from $tabla where (id='$id');") warn "error al borrar datos datos"; } } $dbh->disconnect warn "\fallo al desconectarse"; print $q->end_html(); enlazando dos.pl <HTML> <!-- comentarios --> <HEAD>

9 <TITLE> datos generales </TITLE> </HEAD> <BODY> <center> <h2><i>datos a modificar</i></h2> <FORM Action="cgi-bin/modificar.pl" METHOD=Post> <TABLE border=0> <TR> <TD> NUMERO DE IDENTIFICACION :</td> <TD Colspan=2> <input type=text name=id> </td> <tdalign=center > <input type="submit" name=boton1 value="modificar "> </td> </tr> </table> </form> </BODY> </HTML> MODIFICAR #!/usr/bin/perl w use strict; use CGI; use DBI; my $q=new CGI; my $db= nombre base de datos ; my $tabla= nombre de la tabla ; my $driver= mysql ; my $usuario= nombre usuario ; my $pass= pasword ; my $nombre; my $precio;

10 print $q->header( text/htnl ); print $q=start_html(-title=> informacion ); print <center><br> MODIFICACIONES <br></center> ; my $id=$q->param(íd); my $dbh=dbi->connect( dbi:$driver:$bd:$host,$usuario,$pass) die \n eroro al abrir\n ; my $sth=$dbh->prepare( select * from $tabla where id= $id ); $sth->execute(); While (my $ref=$sth->fetchrow_hashref()) { $id=$ref->{id}; $nombre=$ref->{nombre}; $precio=$ref->{precio}; print <form action=modifica1.pl method=post> ; print <center> print <br>id :<input name=id value=$id><br> ; print <br>nombre :<input name=nombre value=$nombre><br> ; print </center> ; print <br> ; print <br> ; print <input type=submit name=boton1 value=modificar><br> ; print </form> ; } $sth->finish(); $dbh->disconnect; print $q->end_htlm(); + modificar1.pl

11 #!/usr/bin/perl w use strict; use CGI; use DBI; my $q=new CGI; my $db= nombre base de datos ; my $tabla= nombre de la tabla ; my $driver= mysql ; my $usuario= nombre usuario ; my $pass= pasword ; print $q->header( text/htnl ); print $q=start_html(-title=> informacion ); print <center><br> MODIFICACIONES <br></center> ; my $idprov=$q->param(íd); my $nombre=$q->param(nombre); my $dbh=dbi->connect( dbi:$driver:$bd:$host,$usuario,$pass) die \n eroro al abrir\n ; my $sth=$dbh->do( update from $tabla where id= $id nombre=$nombre ); print <center> print <br>id proveedor :<input name=id value=$id><br> ; print <br>nombre print </center> ; print <br> ; print <br> ; } $sth->finish(); $dbh->disconnect; print $q->end_htlm(); :<input name=nombre value=$nombre><br> ;

DECLARATION OF PERFORMANCE NO. HU-DOP_TD-25_001

DECLARATION OF PERFORMANCE NO. HU-DOP_TD-25_001 NO. HU-DOP_TD-25_001 Product type TD 3,5x25 mm EN 14566:2008+A1:2009 NO. HU-DOP_TD-35_001 Product type TD 3,5x35 mm EN 14566:2008+A1:2009 NO. HU-DOP_TD-45_001 Product type TD 3,5x45 mm EN 14566:2008+A1:2009

More information

Apéndice C: Código Fuente del Programa DBConnection.java

Apéndice C: Código Fuente del Programa DBConnection.java Apéndice C: Código Fuente del Programa DBConnection.java import java.sql.*; import java.io.*; import java.*; import java.util.*; import java.net.*; public class DBConnection Connection pgsqlconn = null;

More information

Hacking de aplicaciones Web

Hacking de aplicaciones Web HACKING SCHOOL Hacking de aplicaciones Web Gabriel Maciá Fernández Fundamentos de la web CLIENTE SERVIDOR BROWSER HTTP WEB SERVER DATOS PRIVADOS BASE DE DATOS 1 Interacción con servidores web URLs http://gmacia:pass@www.ugr.es:80/descarga.php?file=prueba.txt

More information

New Server Installation. Revisión: 13/10/2014

New Server Installation. Revisión: 13/10/2014 Revisión: 13/10/2014 I Contenido Parte I Introduction 1 Parte II Opening Ports 3 1 Access to the... 3 Advanced Security Firewall 2 Opening ports... 5 Parte III Create & Share Repositorio folder 8 1 Create

More information

Propiedades del esquema del Documento XML de envío:

Propiedades del esquema del Documento XML de envío: Web Services Envio y Respuesta DIPS Courier Tipo Operación: 122-DIPS CURRIER/NORMAL 123-DIPS CURRIER/ANTICIP Los datos a considerar para el Servicio Web DIN que se encuentra en aduana son los siguientes:

More information

DEPARTMENT OF INFORMATION TECHNOLOGY

DEPARTMENT OF INFORMATION TECHNOLOGY M.A.M. COLLEGE OF ENGINEERING AND TECHNOLOGY TRICHY -621105 DEPARTMENT OF INFORMATION TECHNOLOGY ANNA UNIVERSITY PRACTICAL EXAMINATIONS, OCT 2011 RECORD NOTE BOOK CS1403 - SOFTWARE DEVELOPMENT LABORATORY

More information

Annual Notice of Changes for 2015

Annual Notice of Changes for 2015 Cigna-HealthSpring Rx Secure (PDP) offered by Cigna HealthSpring Annual Notice of Changes for 2015 You are currently enrolled as a member of Cigna Medicare Rx Secure (PDP). Next year, there will be some

More information

New words to remember

New words to remember Finanza Toolbox Materials Checking Accounts When you open a checking account you put money in the bank. Then you buy a book of checks from the bank. Using checks keeps you from having to carry cash with

More information

CA Dream Application References

CA Dream Application References CA Dream Application References 2014 California High School Counselor Workshop Guide Page 171 California Nonresident Tuition Exemption For Eligible California High School Graduates (The law passed by

More information

Para perfeccionistas con deadlines

Para perfeccionistas con deadlines Para perfeccionistas con deadlines Leo Soto M. Imagemaker IT Encuentro Linux 2008 Python? Django? Python is an experiment in how much freedom programmers need... ...Too much freedom and nobody can read

More information

Form Handling. Server-side Web Development and Programming. Form Handling. Server Page Model. Form data appended to request string

Form Handling. Server-side Web Development and Programming. Form Handling. Server Page Model. Form data appended to request string Form Handling Server-side Web Development and Programming Lecture 3: Introduction to Java Server Pages Form data appended to request string

More information

PROGRAMA DE GRAFICACIÓN DE VELOCIDADES EN VENTANAS DE MAPINFO

PROGRAMA DE GRAFICACIÓN DE VELOCIDADES EN VENTANAS DE MAPINFO PROGRAMA DE GRAFICACIÓN DE VELOCIDADES EN VENTANAS DE MAPINFO Module Description: MapBasic program draw polylines using a tab file containing the data about the initial coordinate, azimuth and velocity

More information

Estructura de aplicación en PHP para System i

Estructura de aplicación en PHP para System i Estructura de aplicación en PHP para System i La aplicación esta diseñada para IBM DB2 en System i, UNIX y Windows. Se trata de la gestión de una entidad deportiva. A modo de ejemplo de como está desarrollada

More information

New words to remember

New words to remember Finanza Toolbox Materials When you open a checking account you put money in the bank. Then you buy a book of checks from the bank. Using checks keeps you from having to carry cash with you. You can use

More information

Annual Notice of Changes for 2015

Annual Notice of Changes for 2015 Cigna-HealthSpring Rx Secure-Xtra (PDP) offered by Cigna-HealthSpring Annual Notice of Changes for 2015 You are currently enrolled as a member of Cigna Medicare Rx Secure-Xtra (PDP). Next year, there will

More information

Create dynamic sites with PHP & MySQL

Create dynamic sites with PHP & MySQL Create dynamic sites with PHP & MySQL Presented by developerworks, your source for great tutorials Table of Contents If you're viewing this document online, you can click any of the topics below to link

More information

Monitoreo de Bases de Datos

Monitoreo de Bases de Datos Monitoreo de Bases de Datos Monitoreo de Bases de Datos Las bases de datos son pieza fundamental de una Infraestructura, es de vital importancia su correcto monitoreo de métricas para efectos de lograr

More information

Monterey County Behavioral Health Policy and Procedure

Monterey County Behavioral Health Policy and Procedure Monterey County Behavioral Health Policy and Procedure 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 Policy Number 144 Policy Title Disclosure of Unlicensed Status for License

More information

Java Server Pages combined with servlets in action. Generals. Java Servlets

Java Server Pages combined with servlets in action. Generals. Java Servlets Java Server Pages combined with servlets in action We want to create a small web application (library), that illustrates the usage of JavaServer Pages combined with Java Servlets. We use the JavaServer

More information

Benedictine College Financial Aid

Benedictine College Financial Aid 2015 2016 Institutional Verification Document V4 Dependent Your 2015 2016 Free Application for Federal Student Aid (FAFSA) was selected for review in a process called verification. The law says that before

More information

A Simple Shopping Cart using CGI

A Simple Shopping Cart using CGI A Simple Shopping Cart using CGI Professor Don Colton, BYU Hawaii March 5, 2004 In this section of the course, we learn to use CGI and Perl to create a simple web-based shopping cart program. We assume

More information

BtoB MKT Trends. El Escenario Online. Luciana Sario. Gerente de Marketing IDC Latin America 2009 IDC W W W. I D C. C O M / G M S 1

BtoB MKT Trends. El Escenario Online. Luciana Sario. Gerente de Marketing IDC Latin America 2009 IDC W W W. I D C. C O M / G M S 1 BtoB MKT Trends El Escenario Online Luciana Sario Gerente de Marketing IDC Latin America 2009 IDC W W W. I D C. C O M / G M S 1 Audio Test Estamos haciendo un Audio Test y estoy hablando en este momento

More information

2014-2015 Independent

2014-2015 Independent 2014-2015 Independent V4-V5 Independent VERIFICATION of High School Completion and Identity Statement of Educational Purpose V4-V5 Your 2014 2015 Free Application for Federal Student Aid (FAFSA) was selected

More information

An introduction to web programming with Java

An introduction to web programming with Java Chapter 1 An introduction to web programming with Java Objectives Knowledge Objectives (continued) The first page of a shopping cart application The second page of a shopping cart application Components

More information

USER MANUAL MONITORING MODULE

USER MANUAL MONITORING MODULE USER MANUAL 2 MONITORING MODULE MONITOR is an integrated information system that allows ongoing monitoring of activities financed by USAID/Colombia. As explained in the environmental module, MONITOR is

More information

PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS

PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS PROFEX REGISTRATION IN THE SYSTEM FOR LANGUAGE ASSISTANTS 1. What is Profex? Profex is an online web service application designed to enable teachers and language assistants to submit their applications

More information

Baylor University Policy No. 24220

Baylor University Policy No. 24220 Baylor University Policy No. 24220 Certificate for Baylor University Supplementary Contract providing Dependents Group Life Insurance Benefits This certificate becomes a part of, and should be attached

More information

Building Checkout Pages

Building Checkout Pages Building Checkout Pages 20 Chapter Order checkout is the part of an e-commerce site associated with the completion of a customer transaction. At the least, checkout pages include the features discussed

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 10 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The commissioner of insurance adopts amendments

More information

Annual Notice of Changes for 2015

Annual Notice of Changes for 2015 Cigna-HealthSpring Rx Secure (PDP) offered by Cigna HealthSpring Annual Notice of Changes for 2015 You are currently enrolled as a member of Cigna Medicare Rx Secure (PDP). Next year, there will be some

More information

manual de visual foxpro 6 PDF

manual de visual foxpro 6 PDF manual de visual foxpro 6 PDF ==>Download: Manual de visual foxpro 6 PDF Manual de visual foxpro 6 PDF - Are you searching for Manual de visual foxpro 6 Books? Now, you will be happy that at this time

More information

Precondition for a good understanding: knowledge of a higher programming language (e.g. C, Java, Perl, Pascal, Basic,... ) basic knowledge of html

Precondition for a good understanding: knowledge of a higher programming language (e.g. C, Java, Perl, Pascal, Basic,... ) basic knowledge of html Some Remarks about Dynamic Webpages Matthias K. Krause Hochschule für Telekommunikation, Leipzig University of Applied Sciences Deutsche Telekom krause@hft-leipzig.de Precondition for a good understanding:

More information

FREE Tutoring for your child!

FREE Tutoring for your child! Educational Services presents 2014-2015 FREE Tutoring for your child! If your child attends one of the following schools AND receives Free or Reduced priced meals they may be eligible for FREE Tutoring.

More information

CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ;

CREATE SCHEMA IF NOT EXISTS `FIV` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci ; USE `FIV` ; SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL'; CREATE SCHEMA IF NOT

More information

1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS

1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS 1. DESCRIPCIÓN DE WEB SERVICES DE INTERCAMBIO DE DATOS CON NOTARIOS 1.1 Solicitud certificado:

More information

Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015

Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015 Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015 Listado de seleccionados para participar en el Programa de Cursos Intensivos de Inglés (CIDI) Verano 2015 y universidades destino. Código Universidad

More information

Curso SQL Server 2008 for Developers

Curso SQL Server 2008 for Developers Curso SQL Server 2008 for Developers Objetivos: Aprenderás a crear joins interiores y exteriores complejos, consultas agrupadas, y subconsultas Aprenderás a manejar los diferentes tipos de datos y sabrás

More information

PHP and XML. Brian J. Stafford, Mark McIntyre and Fraser Gallop

PHP and XML. Brian J. Stafford, Mark McIntyre and Fraser Gallop What is PHP? PHP and XML Brian J. Stafford, Mark McIntyre and Fraser Gallop PHP is a server-side tool for creating dynamic web pages. PHP pages consist of both HTML and program logic. One of the advantages

More information

Download: Server-side technologies. WAMP (Windows), http://www.wampserver.com/en/ MAMP (Mac), http://www.mamp.info/en/

Download: Server-side technologies. WAMP (Windows), http://www.wampserver.com/en/ MAMP (Mac), http://www.mamp.info/en/ + 1 Server-side technologies Apache,, Download: Apache Web Server: http://httpd.apache.org/download.cgi application server: http://www.php.net/downloads.php DBMS: http://www.mysql.com/downloads/ LAMP:

More information

UMBRELLA POLICY PACKET. RACHEL J LAWRENCE November 25, 2011 7701 WURZBACH RD APT 1701 SAN ANTONIO TX 78229-4432. Important Messages

UMBRELLA POLICY PACKET. RACHEL J LAWRENCE November 25, 2011 7701 WURZBACH RD APT 1701 SAN ANTONIO TX 78229-4432. Important Messages JUM1392 00000 DM00000 UMBRELLA POLICY PACKET RACHEL J LAWRENCE November 25, 2011 7701 WURZBACH RD APT 1701 SAN ANTONIO TX 78229-4432 Effective: 01/01/2012 to 01/01/2013 GAR 01085 52 74 71U Important Messages

More information

Python and MongoDB. Why?

Python and MongoDB. Why? Python and MongoDB Kevin Swingler Why? Python is becoming the scripting language of choice in big data It has a library for connecting to a MongoDB: PyMongo Nice mapping betwenpython data structures and

More information

Dictionary (catálogo)

Dictionary (catálogo) Catálogo Oracle Catálogo Esquema: un conjunto de estructuras de datos lógicas (objetos del esquema), propiedad de un usuario Un esquema contiene, entre otros, los objetos siguientes: tablas vistas índices

More information

Setup and Administration for ISVs

Setup and Administration for ISVs 17 Setup and Administration for ISVs ISV accounts for both hosted and private cloud support white labeling functionality and give you the ability to provision and manage customer tenants directly. A customer

More information

Web Application Security Part 1

Web Application Security Part 1 Web Application Security Part 1 Author : Treasure Priyamal Site : www.treasuresec.com E-mail : treasure@treasuresec.com Twitter :http://twitter.com/treasure_sec Introduction Today we are going to talk

More information

Itelpop Simple Screenpop Web Application Installation & Configuration Guide Version 1.0

Itelpop Simple Screenpop Web Application Installation & Configuration Guide Version 1.0 5 Enmore Gardens London SW14 8RF www.iteloffice.com e: support@iteloffice.com Tel: +44 (0) 20 8878 7367 Fax: +44 (0) 20 8876 7257 Itelpop Simple Screenpop Web Application Installation & Configuration Guide

More information

I M M I G R A N T WORKERS HEALTH & SAFETY

I M M I G R A N T WORKERS HEALTH & SAFETY I M M I G R A N T WORKERS HEALTH & SAFETY 1-HOUR HAZARD IDENTIFICATION TRAINING GOAL: This training is designed for a one-hour session with immigrant workers from a variety of industries and from multiple

More information

RIGGING CONDITIONS AND PROCEDURES

RIGGING CONDITIONS AND PROCEDURES RIGGING CONDITIONS AND PROCEDURES 1. ESTIMATE BUDGET PROCEDURES 1.1 Rigging Order The exhibitor should fill in the form Quotation Order Form (enclosed in the next section) in order to elaborate the suitable

More information

Using Cloud Databases in the Cloud Control Panel By J.R. Arredondo (@jrarredondo)

Using Cloud Databases in the Cloud Control Panel By J.R. Arredondo (@jrarredondo) Using Cloud Databases in the Cloud Control Panel By J.R. Arredondo (@jrarredondo) Cloud Databases is the latest relational database service from Rackspace. We have just made it available in the new Cloud

More information

Curso SQL Server 2012 para Desarrolladores

Curso SQL Server 2012 para Desarrolladores Curso SQL Server 2012 para Desarrolladores Objetivos: Obtener una introducción al diseño de Bases de Datos Relacionales y a SQL Usar el Management Studio y las características de SQL Server 2012 para desarrallodores.

More information

PERSONAL INFORMATION / INFORMACIÓN GENERAL Last Name / Apellido Middle Name / Segundo Nombre Name / Nombre

PERSONAL INFORMATION / INFORMACIÓN GENERAL Last Name / Apellido Middle Name / Segundo Nombre Name / Nombre COMPUTER CLASS REGISTRATION FORM (Please Print Clearly Lea con cuidado) To register for the Computer Technology Program, please complete the following form. All fields in this form must be filled out in

More information

Sample Code with Output

Sample Code with Output Sample Code with Output File Upload : In PHP, we can upload file to a server fileupload.html #menu a #content #italictext

More information

OMEGA SOFT WF RISKEVAL

OMEGA SOFT WF RISKEVAL OMEGA SOFT WF RISKEVAL Quick Start Guide I. PROGRAM DOWNLOAD AND INSTALLATION... 2 II. CONNECTION AND PASSWORD CHANGE... 3 III. LIST OF WIND FARMS / PREVENTION TECHNICIANS... 4 IV. ADD A NEW WIND FARM...

More information

ATTENTION TRAINERS AND BOOKKEEPERS

ATTENTION TRAINERS AND BOOKKEEPERS ATTENTION TRAINERS AND BOOKKEEPERS YOU MUST BE IN COMPLIANCE WITH CHANGES IN THE NYS DEPARTMENT OF LABOR LAW! New York s Department of Labor Law, called the Wage Theft Prevention Act (WTPA), requires all

More information

Introducción a las bases de datos SQL Libro de referencia

Introducción a las bases de datos SQL Libro de referencia Introducción a las bases de datos SQL 1 Libro de referencia Java How To Program 3ed Edition Deitel&Deitel Prentice Hall, 1999 2 Introduction Relational-Database Model Relational Database Overview: The

More information

Knowledge Base Configuration

Knowledge Base Configuration Knowledge Base Configuration You can download the Knowledge Base (KB) installer from http://www.issueview.com/ivkb.exe. You must have a copy of the IssueView database installed to use the KB. The KB must

More information

Impreso de Solicitud / Application Form

Impreso de Solicitud / Application Form Fotografía/ Photograph Impreso de Solicitud / Application Form Sistema Europeo de Transferencia de Créditos / European Credit Transfer System Datos del estudiante / Student s personal data Apellido 1 /

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

ECCAIRS 5 Instalación

ECCAIRS 5 Instalación ECCAIRS 5 Instalación Paso a paso Preparado por: Arturo Martínez Oficina Regional Sudamericana Uniendo a la Aviación en Seguridad Operacional Seguridad Medioambiente Instalación Paso a paso Escenario Windows

More information

Comparison of Dynamic Web Content Processing Language Performance Under a LAMP Architecture

Comparison of Dynamic Web Content Processing Language Performance Under a LAMP Architecture Comparison of Dynamic Web Content Processing Language Performance Under a LAMP Architecture Musa Jafar mjafar@mail.wtamu.edu Russell Anderson randerson@mail.wtamu.edu Amjad Abdullat aabdullat@mail.wtamu.edu

More information

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD SECRETARÍA DE ESTADO DE COMERCIO DIRECCIÓN GENERAL DE COMERCIO E INVERSIONES S. G. DE COMERCIO INTERNACIONAL DE SERVICIOS E INVERSIONES This is a translation, from Spanish, of instructions for filling

More information

Slides from INF3331 lectures - web programming in Python

Slides from INF3331 lectures - web programming in Python Slides from INF3331 lectures - web programming in Python Joakim Sundnes & Hans Petter Langtangen Dept. of Informatics, Univ. of Oslo & Simula Research Laboratory October 2013 Programming web applications

More information

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.

Schema XML_PGE.xsd. element GrupoInformes. attribute GrupoInformes/@version. XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap. Schema XML_PGE.xsd schema location: attribute form default: element form default: targetnamespace: XML_PGE.xsd unqualified qualified http://sgpfc.igae.minhap.es/xmlpge element GrupoInformes children Informe

More information

Tema: Encriptación por Transposición

Tema: Encriptación por Transposición import java.awt.*; import java.awt.event.*; import javax.swing.*; public class PrincipalSO extends JApplet implements ActionListener { // Declaración global JLabel lblclave, lblencriptar, lblencriptado,

More information

How To Know If An Ipod Is Compatible With An Ipo Or Ipo 2.1.1 (Sanyo)

How To Know If An Ipod Is Compatible With An Ipo Or Ipo 2.1.1 (Sanyo) IntesisBox PA-RC2-xxx-1 SANYO compatibilities In this document the compatible SANYO models with the following IntesisBox RC2 interfaces are listed: / En éste documento se listan los modelos SANYO compatibles

More information

CIS 433/533 - Computer and Network Security. Web Vulnerabilities, Wrapup

CIS 433/533 - Computer and Network Security. Web Vulnerabilities, Wrapup CIS 433/533 - Computer and Network Security Web Vulnerabilities, Wrapup Professor Kevin Butler Winter 2011 Computer and Information Science Injection Attacks flaws relating to invalid input handling which

More information

Telefónica`s integrated approach to energy efficiency and climate change

Telefónica`s integrated approach to energy efficiency and climate change Telefónica`s integrated approach to energy efficiency and climate change El Cairo, November 2 nd, 2010 Sympsium on ICT`s, Environment and Climate Change Daniela Torres Espinosa Telefónica S.A. Climate

More information

FAMILIES 2014 SOTX INFORMATION GUIDE

FAMILIES 2014 SOTX INFORMATION GUIDE FAMILIES Families with children who have intellectual disabilities are like other families; however, having a child with special needs often thrusts them into situations that may make their everyday lives

More information

Rare Donor Program in Spain: experience and challenges

Rare Donor Program in Spain: experience and challenges Rare Donor Program in Spain: experience and challenges Dr E Muñiz-Diaz Banc de Sang i Teixits Barcelona (Spain) Political and administrative organization of Spain Spain is divided into 17 autonomous regions

More information

Altas, Bajas y Modificaciones de Registros en tabla MYSQL

Altas, Bajas y Modificaciones de Registros en tabla MYSQL Altas, Bajas y Modificaciones de Registros en tabla MYSQL 1. En MySql crear una base de datos de nombre EmpresaABC y dentro de ella la tabla Empleados con la siguiente estructura: DNI integer(8) Definir

More information

Lean UX and Marketing

Lean UX and Marketing Lean UX and Marketing We design products and services based on customer knowledge to help businesses grow If you have a product that is underperforming, we can help you get in touch with your customers,

More information

Developing Perl, PHP, Python, and Ruby on Rails Applications

Developing Perl, PHP, Python, and Ruby on Rails Applications IBM DB2 10.1 for Linux, UNIX, and Windows Developing Perl, PHP, Python, and Ruby on Rails Applications SC27-3876-00 IBM DB2 10.1 for Linux, UNIX, and Windows Developing Perl, PHP, Python, and Ruby on

More information

Web Application Development

Web Application Development Web Application Development Approaches Choices Server Side PHP ASP Ruby Python CGI Java Servlets Perl Choices Client Side Javascript VBScript ASP Language basics - always the same Embedding in / outside

More information

Manage your health care and health care spending

Manage your health care and health care spending Manage your health care and health care spending Aetna HealthFund Health Reimbursement Arrangement (HRA) Plan You get a health insurance plan for coverage and a fund to help pay for it. Standard Medical

More information

In this chapter, you will learn how to...

In this chapter, you will learn how to... LEARNING OUTCOMES In this chapter, you will learn how to... Create a table on a web page Apply attributes to format tables, table rows, and table cells Increase the accessibility of a table Style an HTML

More information

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD

The named boxes in Spanish of the form are included in italics inside parentheses. MINISTERIO DE ECONOMÍA Y COMPETITIVIDAD SECRETARÍA DE ESTADO DE COMERCIO DIRECCIÓN GENERAL DE COMERCIO E INVERSIONES S. G. DE COMERCIO INTERNACIONAL DE SERVICIOS E INVERSIONES This is a translation, from Spanish, of instructions for filling

More information

Creation of Computer Aided Manufacturing software from Computer Aided Design software in the milling process

Creation of Computer Aided Manufacturing software from Computer Aided Design software in the milling process Creation of Computer Aided Manufacturing software from Computer Aided Design software in the milling process JUAN CARLOS CARRASCO GARCÍA * Abstract The purpose of this paper is to describe a new Graphical

More information

Medicare Part D Creditable Coverage Notice Open Enrollment Active Carpenters

Medicare Part D Creditable Coverage Notice Open Enrollment Active Carpenters Medicare Part D Creditable Coverage Notice Open Enrollment Active Carpenters Important Notice from Southwest Carpenters Health and Welfare Trust about Prescription Drug Coverage for People with Medicare

More information

Stretching your health care dollars Aetna HealthFund Health Reimbursement Arrangement (HRA) Plan

Stretching your health care dollars Aetna HealthFund Health Reimbursement Arrangement (HRA) Plan Quality health plans & benefits Healthier living Financial well-being Intelligent solutions Stretching your health care dollars Aetna HealthFund Health Reimbursement Arrangement (HRA) Plan 32.02.301.1

More information

Daytime Telephone Number (Número Telefónico) Date of Application (Fecha) County (Condado)

Daytime Telephone Number (Número Telefónico) Date of Application (Fecha) County (Condado) Borough of Matawan - Dept. of Vital Statistics $10.00 p/copy 201 Broad Street, Matawan, NJ 07747 Phone 732-566-3898 x625 Fax 732-566-0036 APPLICATION FOR A NON-GENEALOGICAL CERTIFICATION OR CERTIFIED COPY

More information

HTML Lesson 7. Your assignment:

HTML Lesson 7. Your assignment: HTML Lesson 7 Tables are one of the biggest tools Web developers use to present data wherever they want data to go on the page. Like spreadsheets, rows go across (left to right) and columns go up and down.

More information

Otra información Importante / Other relevant information Como conoció el programa / How did you learn about the programme

Otra información Importante / Other relevant information Como conoció el programa / How did you learn about the programme COMPLETAR EL SIGUIENTE FORMULARIO Y MANDARLO A / COMPLETE THE FOLLOWING FORM AND SEND IT TO: EMAIL: study.abroad@uab.es FAX. +34 93 433 50 26 POST: Fundació UAB (Àrea Internacional) Sant Antoni Maria Claret,

More information

Reference Guide to complete an AFIP form 4550 General resolution No. 3579 of the Administración Federal de Ingresos Públicos (AFIP)

Reference Guide to complete an AFIP form 4550 General resolution No. 3579 of the Administración Federal de Ingresos Públicos (AFIP) Reference Guide to complete an AFIP form 4550 General resolution No. 3579 of the Administración Federal de Ingresos Públicos (AFIP) UPS de Argentina Brokerage Department December 2014 Access AFIP s website

More information

Special Programs. Extended Day/Week Tutorial Program Guidelines

Special Programs. Extended Day/Week Tutorial Program Guidelines 2013 2014 Special Programs Extended Day/Week Tutorial Program Guidelines In Brownsville ISD, every opportunity is extended to help our lowest achieving students become academically successful. In support

More information

IBM Rational Dónde estamos? Adónde vamos?

IBM Rational Dónde estamos? Adónde vamos? IBM Rational Dónde estamos? Adónde vamos? IBM Software Group Antonio Rodríguez IBM Rational Leader for Spain, Portugal, Greece & Israel DONDE ESTAMOS? 2 2 IBM Rational en Social Media Información al instante

More information

General Parenting Workshops pp. 2&3. Co-Parenting Workshops p. 3. Community Workshops & Professional Development p. 4. Other Services p.

General Parenting Workshops pp. 2&3. Co-Parenting Workshops p. 3. Community Workshops & Professional Development p. 4. Other Services p. Service Guide January - March 2016 General Parenting Workshops pp. 2&3 Strategies for learning positive parenting skills. Co-Parenting Workshops p. 3 Techniques for positive parenting while sharing custody

More information

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204

SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 Part I. Texas Department of Insurance Page 1 of 11 SUBCHAPTER A. AUTOMOBILE INSURANCE DIVISION 3. MISCELLANEOUS INTERPRETATIONS 28 TAC 5.204 1. INTRODUCTION. The Texas Department of Insurance proposes

More information

Other Language Types CMSC 330: Organization of Programming Languages

Other Language Types CMSC 330: Organization of Programming Languages Other Language Types CMSC 330: Organization of Programming Languages Markup and Query Languages Markup languages Set of annotations to text Query languages Make queries to databases & information systems

More information

FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner

FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner FAMILY INDEPENDENCE ADMINISTRATION Seth W. Diamond, Executive Deputy Commissioner James K. Whelan, Deputy Commissioner Policy, Procedures and Training Lisa C. Fitzpatrick, Assistant Deputy Commissioner

More information

Automating MT post-editing using regular expressions

Automating MT post-editing using regular expressions Automating MT post-editing using regular expressions by Rafael Guzmán This article was originally published in Multilingual #90, Volume 18, Issue 6, pp. 49-52 (September 2007) At the beginning of this

More information

SCA database and search engine. Vignir Barði Einarsson. Supervisor: Nik Whitehead. Faculty of Information Technology, University of Akureyri

SCA database and search engine. Vignir Barði Einarsson. Supervisor: Nik Whitehead. Faculty of Information Technology, University of Akureyri SCA database and search engine Vignir Barði Einarsson Supervisor: Nik Whitehead Faculty of Information Technology, University of Akureyri Submitted April 2006, in partial fulfilment of the conditions of

More information

How To Use A Transport X Portable Dga

How To Use A Transport X Portable Dga GE Energy TRANSPORT X Portable DGA Argentina 2013 1 6/8/2013 TRANSPORT X Portable dissolved gas analyser For rapid on-site DGA anytime Uses Photo-Acoustic technology Extracts gases from oil using head

More information

Membuat Aplikasi Berita Sederhana

Membuat Aplikasi Berita Sederhana Pemrograman Web Membuat Aplikasi Berita Sederhana Merancang Struktur Database Membuat File Koneksi Database Membuat Halaman Input Berita Menampilkan Berita Terbaru di Halaman Depan Menampilkan Berita Lengkap

More information

How To Get A Venezuela Business Visa

How To Get A Venezuela Business Visa Venezuela Business visa Application Please enter your contact information Name: Email: Tel: Mobile: The latest date you need your passport returned in time for your travel: Venezuela business visa checklist

More information

UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI)

UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI) UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO DIRECCIÓN GENERAL DE COOPERACIÓN E INTERNACIONALIZACIÓN (DGECI) PROGRAMA DE ESTUDIANTES DE INTERCAMBIO AÑO ACADÉMICO 2014-2015 STEP 1: You are going to receive an

More information

WSFCCA MEMBERSHIP and ACCIDENTAL/MEDICAL APPLICATION 2013-2014

WSFCCA MEMBERSHIP and ACCIDENTAL/MEDICAL APPLICATION 2013-2014 WSFCCA MEMBERSHIP and ACCIDENTAL/MEDICAL APPLICATION 2013-2014 Christine Price, President 425-774- 9439 Lorri Hope, Treasurer & Membership 509-627- 1692 Email: wsfcca@aol.com www.wsfcca.com Washington

More information

ANNUAL NOTICE OF CHANGES FOR 2016

ANNUAL NOTICE OF CHANGES FOR 2016 Cigna HealthSpring Rx Secure Extra (PDP) offered by Cigna HealthSpring ANNUAL NOTICE OF CHANGES FOR 2016 You are currently enrolled as a member of Cigna HealthSpring Rx Secure Xtra (PDP). Next year, there

More information

Notice of Privacy Practices

Notice of Privacy Practices Effective May 1, 2013 Notice of Privacy Practices This notice describes how medical information about you may be used and disclosed and how you can get access to this information. Please review it carefully.

More information

Server-side: PHP and MySQL (continued)

Server-side: PHP and MySQL (continued) Server-side: PHP and MySQL (continued) some remarks check on variable: isset ( $variable )? more functionality in a single form more functionality in a single PHP-file updating the database data validation

More information