Announcement

Collapse
No announcement yet.

Can mySQL be used with efs studies

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Can mySQL be used with efs studies

    Does anyone know if mySQL can be used/linked with efs studies?

    Wayne

  • #2
    Let me give you a general answer.

    Any DLL whose function entry points adheres to the interface spec on the DLL Object can be loaded into an EFS (caveats below).

    Your big problems have to do with blocking (i.e. your library hangs, waiting on some resource), slow processing times and any call which would trigger a Windows message which eSignal would try to process and, of course, cause a crash of some sort. This is especially true of v10.x because it's single-threaded.

    I don't know if libmysql.dll is going to cause you problems. If the function names aren't mangled because it's a C++ DLL and the above is not a problem, then sure, why not, it should be pretty straightforward.

    One thing to keep in mind. Javascript is slow enough as it is and trying to make synchronous calls to a database on the same thread as an EFS which is updating your chart is not such a good idea. You may find that your data starts to lag on your charts.
    Last edited by SteveH; 04-29-2011, 04:00 AM.

    Comment


    • #3
      Hi Steve,

      As always, thanks for the informative reply.

      Wayne

      Comment

      Working...
      X