Displaying 1 result from an estimated 1 matches for "dfghdfgsdfgsdfgsdfgsdfgsdfgsdf".
2003 Apr 24
1
RMySQL
Dear laurent,
> This is what I did to make the connection :
> > drv <- dbDriver("MySQL")
> > con <- dbConnect(drv)
Here's the error.
You should give the database name.
drv <-dbConnect(drv, dbname="dfghdfgsdfgsdfgsdfgsdfgsdfgsdf")
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Then I should be able to send requests. But when I try this :
> > dbListTables(con)
> character(0)
Of course.
Tables are stored in the database. You didn't provide its name.
Function dbListTables doesn't know...