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)}
相關文章
- Java通過Mybatis實現批量插入資料到Oracle中JavaMyBatisOracle
- SQLServer插入資料到有自增列的表SQLServer
- 如何優雅地動態插入資料到UITableViewUIView
- ogg 同步pg資料到oracle--步驟Oracle
- Oracle使用RMAN從Windows遷移資料到LinuxOracleWindowsLinux
- Python批量匯入Excel資料到MySQLPythonExcelMySql
- Oracle批量插入資料insert all into用法Oracle
- 如何快速的插入 100W資料到資料庫,使用PreparedStatement 最快實現!資料庫
- 如何抽取Oracle資料到文字文件進行查詢NAOracle
- ORACLE日期型別Oracle型別
- oracle-資料庫- insert 插入語句Oracle資料庫
- Oracle資料庫日期格式轉換操作Oracle資料庫
- SpringBoot(18)---通過Lua指令碼批量插入資料到Redis布隆過濾器Spring Boot指令碼Redis過濾器
- KunlunDB 快速入門 4.0(從Oracle實時同步資料到kunlunDB)Oracle
- 【python】python初學 讀取map檔案資料到excel中PythonExcel
- ORACLE資料庫中如何插入生僻字Oracle資料庫
- Oracle-insert into加日期Oracle
- python如何將資料插入資料庫Python資料庫
- 遷移ORACLE資料到MogDB/openGauss時的字符集問題Oracle
- 使用 Python 字典向 SQLite 插入資料PythonSQLite
- python資料插入連線MySQL資料庫PythonMySql資料庫
- Oracle更改預設日期格式 更改會話日期格式Oracle會話
- oracle和mybatis整合,批次插入OracleMyBatis
- 【oracle】日期加減計算Oracle
- Oracle非法日期 處理方案Oracle
- MySQL 資料庫表格建立、資料插入及獲取插入的 ID:Python 教程MySql資料庫Python
- ORACLE(Linux版本)實時同步資料到MYSQL(Linux版本)解決方案:OGGOracleLinuxMySql
- mybatis oracle資料庫批次插入資料,忽略主鍵重複MyBatisOracle資料庫
- 「python」向DataFrame資料格式中插入行Python
- 105-Python中將資料插入字串Python字串
- excel導資料到PostgresqlExcelSQL
- oracle interval日期函式的bug!Oracle函式
- python插入排序Python排序
- mybatis+oracle 批次插入多條資料的處理方法MyBatisOracle
- mybatis插入資料、批量插入資料MyBatis
- Debezium vs OGG vs Tapdata:如何實時同步 Oracle 資料到 Kafka 訊息佇列?OracleKafka佇列
- Python匯出資料到Excel表格-NotImplementedError: formatting_info=True not yet implementedPythonExcelErrorORM
- flinkcdc同步mysql資料到selectdbMySql
- 遷移sqlserver資料到MongoDbSQLServerMongoDB