Description Usage Arguments Examples
Elenca le stazioni, applicando la query
select distinct ID_STAZIONE, NOME_STAZIONE, COMUNE, PROVINCIA
from AA_ARIA.ANG_CONFIG_SENSORI
1 | dbqa.view.staz(con, FUN = View)
|
con |
connessione al DB |
FUN |
azione da applicare per la visualizzazione della matrice (usare |
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
db_usr="yourUsername"
db_pwd="yourPassword"
db_name="DBaddress"
con <- dbqa.connect(db_usr, db_pwd, db_name)
dbqa.view.staz(con)
## ...oppure equivalente
Dat <- dbqa.view.staz(con, FUN=return)
View(Dat)
dbDisconnect(con)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.