que pasa con este ERROR URGEEEEE

09/08/2004 - 17:23 por raul | Informe spam
Saludos :

miren tengo este codigo

Dim cn As SqlConnection = New SqlConnection
(connectionString)

Dim strSQL As String = "SELECT CVEUSR, PASUSR FROM
COPUSERS WHERE CVEUSR ='" & usuario.Text & "'" & _
" AND (PASUSR = '" & password.Text & "'"

comando = New SqlCommand(strSQL, cn)
cmd = New SqlDataAdapter(comando)
dt = New DataTable()
cmd.Fill(dt)
n = dt.Rows.Count

Y ME ENVIA EL SIGUIENTE ERROR

Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.
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:
Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.

Source Error:


Line 54: ' Dim ds As DataSet = New DataSet()
Line 55: dt = New DataTable()
Line 56: cmd.Fill(dt) AQUI ES EL ERROR
Line 57: n = dt.Rows.Count
Line 58: If n > 0 Then


Gracias espero me puedas ayudar

Preguntas similare

Leer las respuestas

#1 Eugenio Serrano
09/08/2004 - 17:44 | Informe spam
Tienes mal el String de conexion...

Pero ten mucho cuidado con ese Select !! Estas dejando la puerta abierta
para SQL Injection.
Nunca confies en lo que puede ingresar un usuario. Valida que usuario.Text
no tenga ' ni " ya que pueden cerrar la cadena con ' e ingresar codigo SQL
en el campo usuario

Saludos,
Eugenio Serrano
NDSoft Consultoria y Desarrollo
MS MVP ASP.Net
Voluntario Ineta Latam (www.ineta.org/latam)

"raul" escribió en el mensaje
news:2d0d01c47e24$d99e9e30$
Saludos :

miren tengo este codigo

Dim cn As SqlConnection = New SqlConnection
(connectionString)

Dim strSQL As String = "SELECT CVEUSR, PASUSR FROM
COPUSERS WHERE CVEUSR ='" & usuario.Text & "'" & _
" AND (PASUSR = '" & password.Text & "'"

comando = New SqlCommand(strSQL, cn)
cmd = New SqlDataAdapter(comando)
dt = New DataTable()
cmd.Fill(dt)
n = dt.Rows.Count

Y ME ENVIA EL SIGUIENTE ERROR

Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.
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:
Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.

Source Error:


Line 54: ' Dim ds As DataSet = New DataSet()
Line 55: dt = New DataTable()
Line 56: cmd.Fill(dt) AQUI ES EL ERROR
Line 57: n = dt.Rows.Count
Line 58: If n > 0 Then


Gracias espero me puedas ayudar

Respuesta Responder a este mensaje
#2 Luis Esteban Valencia Muñoz perrohijueputa
09/08/2004 - 17:53 | Informe spam
Tienes que revisar bien el string de conexion , al parecer no le estas mando
el User Id.

normalmente el string de conexion a sql server es algo como esto

ConnectionString = "workstation id=PC_LUISVAL;packet ;user
id=sa;data source=yourServer;persist security info=False;initial
catalog=yourDB; Password=yourPassword"




LUIS ESTEBAN VALENCIA MUÑOZ
MIEMBRO ACTIVO DE WWW.ALIANZADEV.NET
"raul" escribió en el mensaje
news:2d0d01c47e24$d99e9e30$
Saludos :

miren tengo este codigo

Dim cn As SqlConnection = New SqlConnection
(connectionString)

Dim strSQL As String = "SELECT CVEUSR, PASUSR FROM
COPUSERS WHERE CVEUSR ='" & usuario.Text & "'" & _
" AND (PASUSR = '" & password.Text & "'"

comando = New SqlCommand(strSQL, cn)
cmd = New SqlDataAdapter(comando)
dt = New DataTable()
cmd.Fill(dt)
n = dt.Rows.Count

Y ME ENVIA EL SIGUIENTE ERROR

Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.
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:
Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.

Source Error:


Line 54: ' Dim ds As DataSet = New DataSet()
Line 55: dt = New DataTable()
Line 56: cmd.Fill(dt) AQUI ES EL ERROR
Line 57: n = dt.Rows.Count
Line 58: If n > 0 Then


Gracias espero me puedas ayudar

Respuesta Responder a este mensaje
#3 Luis Cisneros
09/08/2004 - 18:26 | Informe spam
Hola!!!

puedes mandar el contenido de la cadena de conexion...
connectionString

parece que el error esta en ella..

prueba con algo de este formato:

Public Shared sConnString As String = "Data
Source=ServidorSQL;" & _
"Initial Catalog=myDataBase;" &
_
"User ID=MyUser;" & _
"Password=MyPassword"

Aparte, no abres la conexion antes de usarla el comando?



Saludos
Luis Cisneros
Saludos :

miren tengo este codigo

Dim cn As SqlConnection = New SqlConnection
(connectionString)

Dim strSQL As String = "SELECT CVEUSR, PASUSR FROM
COPUSERS WHERE CVEUSR ='" & usuario.Text & "'" & _
" AND (PASUSR = '" & password.Text & "'"

comando = New SqlCommand(strSQL, cn)
cmd = New SqlDataAdapter(comando)
dt = New DataTable()
cmd.Fill(dt)
n = dt.Rows.Count

Y ME ENVIA EL SIGUIENTE ERROR

Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.
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:
Login failed for user '(null)'. Reason: Not associated
with a trusted SQL Server connection.

Source Error:


Line 54: ' Dim ds As DataSet = New DataSet()
Line 55: dt = New DataTable()
Line 56: cmd.Fill(dt) AQUI ES EL ERROR
Line 57: n = dt.Rows.Count
Line 58: If n > 0 Then


Gracias espero me puedas ayudar

.

email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida