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:
El Error es el siguiente:Dim Ejecuta As Adapter = new SqlCommand("la intruccion",mi_Conexion) cnx.Open() Ejecuta.ExecuteNonQuery() Mi_Conexion.Close()
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