Frame export_to_jdbc¶
-
export_to_jdbc
(self, table_name, connector_type='postgres')¶ Write current frame to JDBC table.
Parameters: table_name : unicode
JDBC table name
connector_type : unicode (default=postgres)
(optional) JDBC connector, either mysql or postgres. Default is postgres
Table will be created or appended to. Export of Vectors is not currently supported.
Examples
Consider Frame my_frame:
>>> my_frame.export_to_jdbc('covarianceresults')