Pocket Pc Conexion a SQL 2000

14/09/2005 - 19:03 por Alberto Rios | Informe spam
Buen día espero y alguien sepa algo de este caso.
Estoy desarrollando una aplicación para unas pistolas, estas traen pocket

Pero me tope en el detalle de las interfaces.

Como puedo conectarla a un db SQL Server 2000?

Imports System.Data.SqlClient
Dim oSQLConn As SqlConnection = New SqlConnection()
oSQLConn.ConnectionString="my connectionstring"
oSQLConn.Open()

Pero en primera no me reconoce Imports System.Data.SqlClient
Solo llega hasta el System.Data

Cualquier ayuda será bien recibida, muchas gracias a todos por su apoyo.

Preguntas similare

Leer las respuestas

#1 Alberto Rios
15/09/2005 - 19:14 | Informe spam
David gracias ya quedo estaba mas que perdido pero como dices tu faltaban
las referencias.

Saludos.

"Alberto Rios" wrote in message
news:
David una pregunta en realidad no quiero conectarme a una SQLCE quiero
conectarme a un SQL Server directo.
Pero no me deja a lo mejor es mas manual

Pero ni me deja poner System.Data.SqlClient

o la preguta es como agrego la referencia al dll System.Data.SqlClient?


"David Fúnez" wrote in message
news:O$Z%
Eso se llama replicación, espero te sirva este ejemplo, acuerdate que
necesitas tener el IIS instalado en la PC donde tengas el SQL :

este link te lleva paso a paso a la configuración en tu PC:
http://www.devbuzz.com/content/zinc...on_pg1.asp

These two snippets came courtesy of MS in one of their lab demos:

Sub Synch()
Try
' create merge replication object
Dim cerepl As New Replication()
With cerepl
.Publisher = "SQLCESDELab"
.PublisherDatabase = "SQLCESDELab"
.PublisherLogin = "sa"
.PublisherPassword = "sqlce"
.Publication = "SQLCESDELab"
.Subscriber = "SQLCENETCFLab"
.SubscriberConnectionString = _
"Provider=Microsoft.SQLServer.OLEDB.CE.2.0;Data Source=\my
documents\SQLCESDELab.sdf"
.InternetUrl = _
"http://SQLCESDELab/ssceweb2/sscesa20.dll"
'Bring down initial subscription
.Synchronize()
End With
Catch err As SqlCeException
ErrorDisplay(err)
End Try
End Sub

Sub ErrorDisplay(ByVal expSQL As SqlCeException)
Dim errSQL As SqlCeError
'iterate through the error collection
'of the SQL Server CE Engine
'and send a MsgBox up with the error
For Each errSQL In expSQL.Errors
MsgBox(errSQL.NativeError.ToString() & " " & errSQL.Source & " " &
errSQL.HResult.ToString() & " " & errSQL.Message)
Next
End Sub

"Alberto Rios" escribió en el mensaje
news:
Buen día espero y alguien sepa algo de este caso.
Estoy desarrollando una aplicación para unas pistolas, estas traen
pocket

Pero me tope en el detalle de las interfaces.

Como puedo conectarla a un db SQL Server 2000?

Imports System.Data.SqlClient
Dim oSQLConn As SqlConnection = New SqlConnection()
oSQLConn.ConnectionString="my connectionstring"
oSQLConn.Open()

Pero en primera no me reconoce Imports System.Data.SqlClient
Solo llega hasta el System.Data

Cualquier ayuda será bien recibida, muchas gracias a todos por su apoyo.









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