Código (csharp) [Seleccionar]
this.btn1.Text = this.txt1.Text + " " + this.txt2.Text + " " + this.txt3.Text
??
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menúthis.btn1.Text = this.txt1.Text + " " + this.txt2.Text + " " + this.txt3.Text
USE [DBAcceso]
GO
/****** Object: Table [dbo].[Acceso] Script Date: 07/07/2014 10:42:42 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Acceso](
[id] [int] IDENTITY(1,1) NOT NULL,
[idEmpleado] [int] NOT NULL,
[fechaIngreso] [datetime] NULL,
[fechaSalida] [datetime] NULL,
[estado] [tinyint] NOT NULL,
CONSTRAINT [PK_Actividad] PRIMARY KEY CLUSTERED
(
[id] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: ForeignKey [FK_Acceso_Empleado] Script Date: 07/07/2014 10:42:42 ******/
ALTER TABLE [dbo].[Acceso] WITH CHECK ADD CONSTRAINT [FK_Acceso_Empleado] FOREIGN KEY([idEmpleado])
REFERENCES [dbo].[Empleado] ([id])
GO
ALTER TABLE [dbo].[Acceso] CHECK CONSTRAINT [FK_Acceso_Empleado]
GO
this.Cnn = new SqlConnection("Data Source=xxx; Initial Catalog=DBAcceso; User Id=sa; Password=sa; Connection Timeout=0;");
this.Cnn.Open();
this.Cmd = new SqlCommand(Sql, this.Cnn);
this.Cmd.ExecuteNonQuery();
this.Cnn.Close();
CitarERROR: Valor de tiempo de espera caducado. El periodo de tiempo de espera se agotó al intentar consumir la confirmación del protocolo de enlace previo al inicio de sesión. El motivo podría ser que se produjo un error en el protocolo de enlace o que el servidor no pudo responder a tiempo. El tiempo invertido al intentar conectarse a este servidor fue: [Previo al inicio de sesión] inicializacion=39077; protocolo de enlace=13.