python 插入日期資料到Oracle
[root@yyjk DATABASE]# cat DBI.py
# -*- coding: utf-8 -*-
import cx_Oracle
import time
import datetime
class DBI (object):
def LoadDB(self,a,b):
print self
conn = cx_Oracle.connect('tlcbuser/tlcbuser@1.1.1.1/tlyy')
cursor = conn.cursor()
#coding:UTF-8
#獲取當前時間
time_now = int(time.time())
#轉換成localtime
#time_local = time.localtime(time_now)
#print time_local
#dt = time.strftime("%Y-%m-%d %H:%M:%S",time_local)
dt=datetime.datetime.now()
print dt
param={'stime':dt,'message':a,'phone':b}
print param;
cursor.execute('insert into tlcb_python_sms values(:stime,:message,:phone)',param)
conn.commit()
cursor.close
python 插入時間到oracle
SQL> desc tlcb_python_sms
Name Null? Type
----------------------------------------- -------- ----------------------------
STIME DATE
MESSAGE VARCHAR2(1000)
PHONE VARCHAR2(20)
[root@yyjk flask]# python test.py
lib.Mojo.Client
<lib.Mojo.Client.New object at 0x7f080e371050>
2017-11-10 11:37:40.173295
{'phone': '222', 'message': '111', 'stime': datetime.datetime(2017, 11, 10, 11, 37, 40, 173295)}
相關文章
- proc插入資料到資料庫資料庫
- Java通過Mybatis實現批量插入資料到Oracle中JavaMyBatisOracle
- SQLServer插入資料到有自增列的表SQLServer
- 如何優雅地動態插入資料到UITableViewUIView
- 使用Direct-Path INSERT插入資料到表中
- 從Sql Server遷移資料到OracleSQLServerOracle
- 遷移資料到Oracle的方法思考Oracle
- 使用sqlldr匯入文字資料到oracleSQLOracle
- oracle批量插入資料Oracle
- Oracle 插入大量資料Oracle
- Python批量匯入Excel資料到MySQLPythonExcelMySql
- oracle 大資料量資料插入Oracle大資料
- 使用goldengate從mysql同步資料到oracleGoMySqlOracle
- 使用外部表關聯MySQL資料到OracleMySqlOracle
- oracle插入隨機資料Oracle隨機
- 資料倉儲中從mysql導資料到oracleMySqlOracle
- sqoop導oracle資料庫的資料到hiveOOPOracle資料庫Hive
- 如何快速的插入 100W資料到資料庫,使用PreparedStatement 最快實現!資料庫
- ogg 同步pg資料到oracle--步驟Oracle
- oracle如何插入timestamp資料Oracle
- Oracle插入Blob資料的方法Oracle
- Oracle使用RMAN從Windows遷移資料到LinuxOracleWindowsLinux
- Oracle lob載入bfile資料到blob欄位中Oracle
- 用Perl從oracle匯出百萬級資料到excelOracleExcel
- python如何將資料插入資料庫Python資料庫
- oracle資料庫插入行更快方法Oracle資料庫
- 【python】python初學 讀取map檔案資料到excel中PythonExcel
- 對 oracle 資料庫日期格式,以及對日期操作的理解Oracle資料庫
- SpringBoot(18)---通過Lua指令碼批量插入資料到Redis布隆過濾器Spring Boot指令碼Redis過濾器
- 如何抽取Oracle資料到文字文件進行查詢NAOracle
- Oracle imp 匯入資料到另一個表空間Oracle
- oracle多表插入Oracle
- 使用 Python 字典向 SQLite 插入資料PythonSQLite
- python資料插入連線MySQL資料庫PythonMySql資料庫
- MySQL 資料庫表格建立、資料插入及獲取插入的 ID:Python 教程MySql資料庫Python
- oracle 日期格式Oracle
- Oracle批量插入資料insert all into用法Oracle
- Oracle批次插入測試資料的方法Oracle