Oracle – Triggers (Disparadores)

Written by lopezatienza on 23/12/2008 – 15:36 -

DISPARADORES

 

·         Bloques de PL/SQL nominados con las secciones:

– declarativa

– ejecutable

– manejo de excepciones

·         Almacenados en la BD (diccionario de datos: user_triggers).

·         Tipos de Disparadores:

– LMD sobre tablas

– Disparadores INSTEAD OF sobre vistas

– Disparadores del sistema sobre la BD o el Esquema.

·         Se ejecuta de manera implícita ante eventos:

– LMD sobre tablas (Insert, Delete, Update)

– LDD (Create, Alter, Drop) (Actualizado con Oracle 9i)

– Operaciones de la BD (ServerError, Logon, Logoff, Startup, Shutdown) (Actualizado con Oracle 9i) Read more »


Tags: ,
Posted in Oracle | 2 Comments »

CSharp – Clase FTP

Written by lopezatienza on 22/12/2008 – 17:23 -

Aquí os dejo una clase FTP:

 

 

using System;

using System.Net;

using System.IO;

using System.Text;

using System.Net.Sockets;

using System.Diagnostics;

 

namespace FtpService

{ Read more »


Tags: ,
Posted in CSharp | 2 Comments »

CSharp – Clase Ping

Written by lopezatienza on 22/12/2008 – 17:19 -

Aquí os dejo una clase Ping para hacer comprabaciones de Ping TCP/IP

using System;

using System.Drawing;

using System.Collections;

using System.Windows.Forms;

using System.Net;

using System.Net.Sockets;

using System.Runtime.InteropServices;

using System.Text; 

namespace NombreDelNamespace Read more »


Tags: ,
Posted in CSharp | No Comments »

CSharp – Comunicacion PPC ActiveSync con openNETCF

Written by lopezatienza on 18/12/2008 – 13:06 -

A continuación muestro el código de un ejemplo de Comunicación con un PPC mediante ActiveSync con openNETCF

using System;

using System.Drawing;

using System.Collections;

using System.ComponentModel;

using System.Windows.Forms; Read more »


Tags: ,
Posted in CSharp | 3 Comments »
RSS
MCC D5E