postgres
半截木头渡海洋
高出着眼,低处着手
展开
-
从tushare上下载数据并批量存入postgres数据库中
将从tushare上下载到的数据批量存储到postgres库-SZ基表-SZ000001分表中# -*- coding:utf-8 -*-"""@author:Shawn.li@file:insertData.py@time:2020/2/23 15:05"""import psycopg2import tushare as ts# 获取股票数据,并转换数据格式为字典模式...原创 2020-02-23 19:38:49 · 691 阅读 · 0 评论 -
psycopg2基础知识点
postgres数据库操作# 创建新表CREATE TABLE IF NOT EXISTS dictionary(english VARCHAR(30), chinese VARCHAR(80), times SMALLINT, in_new_words SMALLINT);# 插入数据INSERT INTO dictionary(english, chinese, times, in...原创 2020-02-23 19:32:59 · 636 阅读 · 0 评论 -
cursor成员
class cursor(builtins.object) | A database cursor. | | Methods defined here: | | __enter__(...) | __enter__ -> self | | __exit__(...) | __exit__ -- close the cursor |...原创 2020-02-22 17:58:24 · 226 阅读 · 0 评论