Home > Net >  How to use a database in influx with a dot in its name?
How to use a database in influx with a dot in its name?

Time:10-12

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"
  • Related