Ver Mensaje Individual
  #1 (permalink)  
Antiguo 19/12/2006, 22:21
Avatar de ah_puch
ah_puch
 
Fecha de Ingreso: agosto-2005
Ubicación: Ecatepec, México
Mensajes: 180
Antigüedad: 19 años, 4 meses
Puntos: 3
Problemas con Instrucciones Sql

hola a todos espero me puedan ayudar:

Mi problema es intentar ejecutar la siguiente intruccion desde asp pero no se como me manda un error sobre mis intrucciones.

Código:
Use ELearning
Go
DECLARE @Origen binary(16)
Declare @Destino binary(16)
Select @Origen=TEXTPTR(Reporte) From Normas where(Normas.Serie='qw-alm-2')
Select @Destino=TEXTPTR(Reporte) From Papelera_De_Documentos where (Papelera_De_Documentos.Serie='qw-alm-2')
 If textvalid('Normas.Reporte',@Origen)=1 
    Begin
        updatetext Papelera_De_Documentos.Reporte @Destino null 0 Normas.Reporte   @Origen
    End
 Else
    print 'alguno de los dos punteros no és valido'
Go

Lo ejecute en el Query Analizer y todo Funciono muy Bien pero al momento de querer adaptarlo para asp fue donde tube el problema


lo intente hacer de la siguiente manera:
Código:
Dim Ejecuta As Adapter = new SqlCommand("la intruccion",mi_Conexion)
cnx.Open()
Ejecuta.ExecuteNonQuery()
Mi_Conexion.Close()
El Error es el siguiente:
Line 1: Incorrect syntax near 'Go'. Line 1: Incorrect syntax near 'Go'.
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Data.SqlClient.SqlException: Line 1: Incorrect syntax near 'Go'. Line 1: Incorrect syntax near 'Go'.

Source Error:


Line 255: "Go ",cnx)
Line 256: cnx.Open()
Line 257: cmdReadBinary.ExecuteNonQuery()
Line 258: cnx.Close()
Line 259:End Function
__________________
La programacion no es un trabajo, es un Arte
http://www.purodev.blogspot.com

Última edición por ah_puch; 20/12/2006 a las 19:08