Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{inameSdf}\alias{inameSdf}\title{SDF Internal Name}\description{Get the internal name of an SDF.}\usage{inameSdf(sdf)}\arguments{\item{sdf}{a sqlite.data.frame}}\details{Internal names are those that are listed in \code{lsSdf}, not the names of theR variables holding a \emph{reference} to SDFs. There could be many R variablethat refers to the same SDF (when \code{inameSdf(sdf1) == inameSdf(sdf2)}).}\value{A string with the internal name of the SDF.}\author{Miguel A. R. Manese}\seealso{\code{\link[SQLiteDF]{sqlite.data.frame}}\code{\link[SQLiteDF]{lsSdf}}}\examples{iris.sdf1 <- sqlite.data.frame(iris)inameSdf(iris.sdf1) # data1, or generally data<n>iris.sdf2 <- sqlite.data.frame(iris, "iris")inameSdf(iris.sdf2) # iris, or if it already exists, iris<n>}\keyword{methods}