LAMP altında çalışan bir MDB dosyasından ikili veri oku

0 Cevap php

Ben (Linux üzerinde çalışan) bir lamba-ortamda bir MDB dosyasına bağlanmak ve sonuçta bir MySQL db içine dönüştürülmüş veri eklemek gerekiyor.

  • The data I need to access is stored as a BLOB (Long Binary Data according to Access) in the MDB file. I have not yet been able to actually have a look at the data but I have been told that the BLOB consists of byte strings. Something along the lines of:

    0x1c 0x10 0x27 0x00 0x00

  • I need to parse the byte strings and convert these to a format that is
    human readable. I do have access to
    the documentation that explains the
    various byte strings.

Yani bu gerçekten iki soru olduğunu:

  1. How do a get access to the MDB file via PHP* (running under LAMP) and read the BLOB (I do not have access to a Windows-platform)?
  2. What would be the best way to parse the binary data (in PHP*) once I am able to connect to the MDB-file?

* Ya da daha uygun olan diğer yöntemler / dilleri vardır?

0 Cevap