Transfer Blob from Navision to MySQL

TomBTomB Member Posts: 5
Hello,

I'm trying to copy the contents of a blob from a Navision 5.0 table to a MySQL table.
Text and code fields, integers... are no problem, but with the blob, it gives an error.
I use ADO connection, SQL statements (like select and insert), ADO Recordset.

does anybody know how to?

Tom
Grtz

Comments

  • kinekine Member Posts: 12,562
    BLOB on SQL is compressed. Do not forget about that. You can disable the compression in field properties. And can you post the error text?
    Kamil Sacek
    MVP - Dynamics NAV
    My BLOG
    NAVERTICA a.s.
  • garakgarak Member Posts: 3,263
    You can also stram it out and then stream it into the blob field in the mysql table
    Do you make it right, it works too!
  • BarzogBarzog Member Posts: 5
    I'm actually having a similar problem. (sorry to hijack the post, but the issue is almost the same)

    I'm sitting with a navision database, and I want to throw some data onto an SQL DB through an ODBC connection.

    The only thing that's really causing me some problems are the blob fields though, they would be too big to just enter into an SQL statement, so how would you go about streaming it from Nav to SQL?

    Kaz
Sign In or Register to comment.