hello
I would like to store the SQL data in a MySQL database .
The server is reachable but on another network via the Internet .
Is there a way the data 1 or 2 times per day to secure ?
Yours sincerely
Andre--
You received this message because you are subscribed to the Google Groups "weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email to weewx-user+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
--
You can safely ignore the message.
jaMO
Thank you for your quick response[DataBindings]
[[wx_binding]]
# The database must match one of the sections in [Databases].
# This is likely to be the only option you would want to change.
#database = archive_sqlite
database = archive_mysql
# The name of the table within the database
table_name = archive
# The manager handles aggregation of data for historical summaries
manager = weewx.wxmanager.WXDaySummaryManager
# The schema defines the structure of the database.
# It is *only* used when the database is created.
schema = schemas.wview.schema
[[forecast_binding]]
database = forecast_mysql
[[cmon_binding]]
database = cmon_mysql
table_name = archive
manager = weewx.manager.DaySummaryManager
schema = user.cmon.schema
##############################################################################
# This section defines various databases.
[Databases]
# A SQLite database is simply a single file
[[archive_sqlite]]
database_type = SQLite
database_name = weewx.sdb
# MySQL
[[archive_mysql]]
database_type = MySQL
database_name = weewx
[[forecast_sqlite]]
#root = %(WEEWX_ROOT)s
root =
database_name = archive/forecast.sdb
driver = weedb.sqlite
# MySQL
[[forecast_mysql]]
database_type = MySQL
database_name = forecast
[[cmon_sqlite]]
root =
database_name = archive/cmon.sdb
driver = weedb.sqlite
# MySQL
[[cmon_mysql]]
database_type = MySQL
database_name = cmon
##############################################################################