Announcement

Collapse
No announcement yet.

MySQL & mobile Anwendung

Collapse
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • MySQL & mobile Anwendung

    hi,
    wie kann man eine direkte mysql-verbindung oder eine odbc-verbindung vom pocket-pc auf einen server aufbauen? leider habe ich bis jetzt nicht brauchbares gefunden.

    mit der direkten sqlverbindung funktioniert die verbindung auf den mssql-server, aber nicht mit mysql:

    ...
    Dim dcDataConnection As New System.Data.SqlClient.SqlConnection(strConnectionS tring)
    Dim scSQLCommand As New SqlClient.SqlCommand(strSelectCommand, dcDataConnection)
    Dim da As New System.Data.SqlClient.SqlDataAdapter(scSQLCommand)
    Dim dsDataset As New DataSet

    da.Fill(dsDataset, "table")
    Return dsDataset
    ...

  • #2
    http://www.oreillynet.com/mac/blog/2...c_databas.html
    .NET GUI - DIE Community für GUI-Entwickler

    Living.NET - Blog :: Live Blog :: .NET Casts

    Hol' dir jetzt dein kostenloses .NET BlogBook.

    Comment

    Working...
    X