-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathdbDataType.Rd
More file actions
31 lines (28 loc) · 1007 Bytes
/
dbDataType.Rd
File metadata and controls
31 lines (28 loc) · 1007 Bytes
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
26
27
28
29
30
31
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/dbDataType_MariaDBConnection.R,
% R/dbDataType_MariaDBDriver.R
\name{dbDataType}
\alias{dbDataType}
\alias{dbDataType_MariaDBConnection}
\alias{dbDataType,MariaDBConnection-method}
\alias{dbDataType_MariaDBDriver}
\alias{dbDataType,MariaDBDriver-method}
\title{Determine the SQL Data Type of an S object}
\usage{
\S4method{dbDataType}{MariaDBConnection}(dbObj, obj, ...)
\S4method{dbDataType}{MariaDBDriver}(dbObj, obj, ...)
}
\arguments{
\item{dbObj}{A \link[=MariaDBDriver-class]{MariaDBDriver} or \link[=MariaDBConnection-class]{MariaDBConnection} object.}
\item{obj}{R/S-Plus object whose SQL type we want to determine.}
\item{\dots}{any other parameters that individual methods may need.}
}
\description{
This method is a straight-forward implementation of the corresponding
generic function.
}
\examples{
dbDataType(RMariaDB::MariaDB(), "a")
dbDataType(RMariaDB::MariaDB(), 1:3)
dbDataType(RMariaDB::MariaDB(), 2.5)
}