27.6.18

SQlite unter Mono


Wenn Interop.dll not found (von hier):
  1. Download the SQLITE source code - you want the full source code. Currently called sqlite-netFx-full-source-1.0.104.0.zip.
  2. unzip and cd Source,
  3. chmod +x the compile-interop-assembly-release.sh build shell script, then run it ./compile-interop-assembly-release.sh. - It'll build an .so file in the ../bin directory.
  4. Copy this .so file to the directory that has your application in
  5. Run your application as normal.
  6. Note: Ensure that your SQLite database and the directory it's inside of are writable by the user you're trying to run as.


1. Download mit Firefox, da direkter Download nicht mehr möglich
2. unzip, cd Setup, chmod +x compile-interop-assembly-release.sh,  ./compile-interop-assembly-release.sh
3. Kopieren: cp ../bin/2013/Release/bin/libSQLite.Interop.so => Zielverzeichnis

Openhab und Ecoflow Max - API Anbindung

 Ich wollte die neu erworbene Powerstation in Openhab einbinden, um den aktuellen Status (Ladestand etc.) über Openhab auswerten zu können. ...