1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/data-type.R
\name{dbDataType,MySQLDriver-method}
\alias{dbDataType,MySQLDriver-method}
\alias{dbDataType,MySQLConnection-method}
\title{Determine the SQL Data Type of an S object}
\usage{
\S4method{dbDataType}{MySQLDriver}(dbObj, obj)
\S4method{dbDataType}{MySQLConnection}(dbObj, obj)
}
\arguments{
\item{dbObj}{A \code{MySQLDriver} or \code{MySQLConnection}.}
\item{obj}{R/S-Plus object whose SQL type we want to determine.}
}
\description{
This method is a straight-forward implementation of the corresponding
generic function.
}
\examples{
dbDataType(RMySQL::MySQL(), "a")
dbDataType(RMySQL::MySQL(), 1:3)
dbDataType(RMySQL::MySQL(), 2.5)
}
|