(self, connection)
| 43 | self.df.to_sql(self.table_name, self.con, if_exists="replace") |
| 44 | |
| 45 | def time_to_sql_dataframe(self, connection): |
| 46 | self.df.to_sql("test1", self.con, if_exists="replace") |
| 47 | |
| 48 | def time_read_sql_query(self, connection): |
| 49 | read_sql_query(self.query_all, self.con) |