\HeaderA{hgu95av2\_dbconn}{Collect information about the package annotation DB}{hgu95av2.Rul.dbconn}
\aliasA{hgu95av2\_dbfile}{hgu95av2\_dbconn}{hgu95av2.Rul.dbfile}
\aliasA{hgu95av2\_dbInfo}{hgu95av2\_dbconn}{hgu95av2.Rul.dbInfo}
\aliasA{hgu95av2\_dbschema}{hgu95av2\_dbconn}{hgu95av2.Rul.dbschema}
\keyword{utilities}{hgu95av2\_dbconn}
\keyword{datasets}{hgu95av2\_dbconn}
\begin{Description}\relax
Some convenience functions for getting a connection object to (or collecting
information about) the package annotation DB.
\end{Description}
\begin{Usage}
\begin{verbatim}
  hgu95av2_dbconn()
  hgu95av2_dbfile()
  hgu95av2_dbschema(file="", show.indices=FALSE)
  hgu95av2_dbInfo()
\end{verbatim}
\end{Usage}
\begin{Arguments}
\begin{ldescription}
\item[\code{file}] A connection, or a character string naming the file to print to (see
the \code{file} argument of the \code{\LinkA{cat}{cat}} function for
the details).

\item[\code{show.indices}] The CREATE INDEX statements are not shown by default.
Use \code{show.indices=TRUE} to get them.

\end{ldescription}
\end{Arguments}
\begin{Details}\relax
\code{hgu95av2\_dbconn} returns a connection object to the package
annotation DB.
IMPORTANT: Don't call \code{\LinkA{dbDisconnect}{dbDisconnect}} on the connection
object returned by \code{hgu95av2\_dbconn} or you will
break all the \code{\LinkA{AnnDbObj}{AnnDbObj}} objects defined in this package!

\code{hgu95av2\_dbfile} returns the path (character string) to the
package annotation DB (this is an SQLite file).

\code{hgu95av2\_dbschema} prints the schema definition of the
package annotation DB.

\code{hgu95av2\_dbInfo} prints other information about the package
annotation DB.
\end{Details}
\begin{Value}
\code{hgu95av2\_dbconn}: a DBIConnection object representing an open
connection to the package annotation DB.

\code{hgu95av2\_dbfile}: a character string with the path to the
package annotation DB.

\code{hgu95av2\_dbschema}: none (invisible \code{NULL}).

\code{hgu95av2\_dbInfo}: none (invisible \code{NULL}).
\end{Value}
\begin{SeeAlso}\relax
\code{\LinkA{dbGetQuery}{dbGetQuery}},
\code{\LinkA{dbConnect}{dbConnect}},
\code{\LinkA{dbconn}{dbconn}},
\code{\LinkA{dbfile}{dbfile}},
\code{\LinkA{dbschema}{dbschema}},
\code{\LinkA{dbInfo}{dbInfo}}
\end{SeeAlso}
\begin{Examples}
\begin{ExampleCode}
  ## Count the number of rows in the "probes" table:
  dbGetQuery(hgu95av2_dbconn(), "SELECT COUNT(*) FROM probes")

  ## The connection object returned by hgu95av2_dbconn() was created with:
  dbConnect(SQLite(), dbname=hgu95av2_dbfile(), cache_size=64000, synchronous=0)

  hgu95av2_dbschema()

  hgu95av2_dbInfo()
\end{ExampleCode}
\end{Examples}


