Hej!Databas koppling Foxpro
Jag har en foxpro databas som jag skall arbeta emot. Den ligger ansluten via DNS koppling så jag behöver en databaskolling i VB.NEt för den.
Är det någon som kan ge mig ett exempel.
/Tyronne Sv: Databas koppling Foxpro
<code>
Private FoxProConStr As String = "DSN=foxpro;Uid=dittuser;Pwd=dittpass;"
Private MyFoxProCon As New OdbcConnection(FoxProStr)
</code>
Sen bara..
<code>
Dim myAdapter As New OdbcDataAdapter
Dim myCommand As New OdbcCommand
Dim myDataSet As New DataSet
myCommand.CommandText = sqlsats
myCommand.Connection = MyFoxProCon
myAdapter.SelectCommand = myCommand
</code>
osv..