mysql – SQL Befehle für Temperatur-Datenbank inkl. Durchschnittstemperatur

11. Dezember 2013 at 08:39

Eine kleine Übersicht von SQL-Befehlen, die man z.B. in mysql eingeben kann: Alle Datenbanken zeigen > SHOW DATABASES; Mit Datenbank verbinden > USE avrio; Tabellen […]

mySQL – Grant Access – Remote Rechner Zugriff auf Datenbank geben

5. Mai 2013 at 18:40

>mysql -uroot -p mysql > connect avrio; mysql > GRANT ALL ON avrio.* TO root@’192.168.178.62′; IDENTIFIED BY ‘PASSWORD’; mysql > FLUSH PRIVILEGES; > sudo nano […]

MySQL – auf die MYSQL Datenbank von außen zugreifen

29. März 2013 at 12:15

piw@raspberrypi:~$ mysql -u root -p Enter password: Welcome to the MySQL monitor.  Commands end with ; or \g. mysql> FLUSH PRIVILEGES; Query OK, 0 rows […]

Google Charts

24. März 2013 at 11:19

https://developers.google.com/chart/interactive/docs/gallery/areachart ac.draw(data, { title : ‘1Wire Temperatursensoren’, isStacked: false, width: 1000, height: 400, vAxis: {title: “Temperatur (Grad Celsius)”}, hAxis: {title: “Zeit”}, legend:{position: “bottom”}, areaOpacity: 0 […]