Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

trouble accessing fox pro memo fields

Status
Not open for further replies.

salvatoredoria

Programmer
Jan 22, 2004
22
IT
When i access a foxpro database (.dbc) via ODBC i am able to read all the data. But Memo field returns null.
i also tried GetChuck but it was worse
Any idea what i can do ?
p.s. that's my source code

If IsNull(MyRsSource("immagine_art")) = False Then
If MyRsSource(&quot;immagine_art&quot;) <> &quot;&quot; Then Percorso = Left(&quot;C:\Valves\OKEYWin\&quot; & MyRsSource(&quot;immagine_art&quot;), 250)
Else
Percorso = Null
End If
Else
Percorso = Null
End If
where MyRsSource is the foxpro table


 

Welcome to TT salvatoredoria, to get the most from these forums please read FAQ222-2244.

The easiest way would be to use DAO with ODBCDirect but with that said if you search this forum I belive you will find an ADO solution on how to use GetChunck.

Good Luck

 

salvatoredoria, did you read FAQ222-2244 yet? Did you search this site or the web and get the answer you needed?

Good Luck

 
Thanks for tour hint, but either at Microsoft i didn't find anything on reading Fox Pro Memo fields via odbc.
i forgot to tell that i tried accesing with ADO

 

Search this site for GetChunck and you will have one possible answer.

Good Luck

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top