Description Usage Arguments Details Value References Examples
Retrieves a table containing the data types supported by the connected database.
1 | jdbcTypeInfo(driverClass, con, user, password, keepAlive)
|
driverClass |
a string specifying the name of the Java class for the required JDBC driver. |
con |
the JDBC connection string. |
user |
a string specifying the user name with access to the database. |
password |
a string containing the password for given the user name on the database. |
keepAlive |
a logical. If |
A direct interface to the java.sql.DatabaseMetaData.getTypeInfo()
method. See
the Java documentation for description of the fields in the table. Useful for debugging.
returns a data.frame
containing the entire table.
2004. https://docs.oracle.com/javase/1.5.0/docs/api/java/sql/DatabaseMetaData.html#getTypeInfo(). Java SE Developer Documentation. Redwood Shores, CA: Oracle Corporation.
1 2 3 4 5 6 | ## Not run:
jdbcTypeInfo(driverClass="com.microsoft.sqlserver.jdbc.SQLServerDriver",
con="jdbc:sqlserver://qadb-s2k:1433;databaseName=testdb;user=testqa;password=testqa;",
user="testqa", password="testqa")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.