When I try to reach my database, 'EUNL.F' there only comes back an error.
use exampledb
Works fine
but
use EUNL.F
returns: EUNL doesn't exist.
How do I include the dot to the name?
CodePudding user response:
For influxdb, you should escape dot
character with \
use EUNL\.F
use "EUNL\.F"