On Tuesday, February 21, 2017 at 6:04:18 PM UTC-5, Tony Turner wrote: > > Here is the output of the sql query: > sqlite> select dateTime,rain from archive where rain > 1; > 1487610000|19.56 > sqlite> > > So it appears there is just one entry in the database. So any help on the > commands to get rid of that data would be appreciated. >
sqlite> UPDATE archive SET rain=0 WHERE dateTime=1487610000; -- 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 [email protected]. For more options, visit https://groups.google.com/d/optout.
