mirror of https://github.com/midoks/mdserver-web
parent
a42f15dae4
commit
5b441d5cb4
@ -0,0 +1,88 @@ |
|||||||
|
# coding: utf-8 |
||||||
|
|
||||||
|
import re |
||||||
|
import os |
||||||
|
import sys |
||||||
|
|
||||||
|
import psycopg2 |
||||||
|
|
||||||
|
|
||||||
|
class ORM: |
||||||
|
__DB_PASS = None |
||||||
|
__DB_USER = 'root' |
||||||
|
__DB_PORT = 5432 |
||||||
|
__DB_HOST = 'localhost' |
||||||
|
__DB_CONN = None |
||||||
|
__DB_CUR = None |
||||||
|
__DB_ERR = None |
||||||
|
__DB_CNF = '/etc/my.cnf' |
||||||
|
__DB_SOCKET = '/www/server/postgresql/mysql.sock' |
||||||
|
__DB_CHARSET = "utf8" |
||||||
|
|
||||||
|
def __Conn(self): |
||||||
|
'''连接数据库''' |
||||||
|
try: |
||||||
|
|
||||||
|
try: |
||||||
|
self.__DB_CONN = psycopg2.connect(database='postgres', user=self.__DB_USER, password=self.__DB_PASS, |
||||||
|
host=self.__DB_HOST, port=int(self.__DB_PORT)) |
||||||
|
except Exception as e: |
||||||
|
self.__DB_HOST = '127.0.0.1' |
||||||
|
self.__DB_CONN = psycopg2.connect(database='postgres', user=self.__DB_USER, password=self.__DB_PASS, |
||||||
|
host=self.__DB_HOST, port=int(self.__DB_PORT)) |
||||||
|
|
||||||
|
self.__DB_CUR = self.__DB_CONN.cursor() |
||||||
|
return True |
||||||
|
except Exception as e: |
||||||
|
self.__DB_ERR = e |
||||||
|
return False |
||||||
|
|
||||||
|
def setDbConf(self, conf): |
||||||
|
self.__DB_CNF = conf |
||||||
|
|
||||||
|
def setSocket(self, sock): |
||||||
|
self.__DB_SOCKET = sock |
||||||
|
|
||||||
|
def setCharset(self, charset): |
||||||
|
self.__DB_CHARSET = charset |
||||||
|
|
||||||
|
def setPort(self, port): |
||||||
|
self.__DB_PORT = port |
||||||
|
|
||||||
|
def setPwd(self, pwd): |
||||||
|
self.__DB_PASS = pwd |
||||||
|
|
||||||
|
def getPwd(self): |
||||||
|
return self.__DB_PASS |
||||||
|
|
||||||
|
def execute(self, sql): |
||||||
|
# 执行SQL语句返回受影响行 |
||||||
|
if not self.__Conn(): |
||||||
|
return self.__DB_ERR |
||||||
|
try: |
||||||
|
result = self.__DB_CUR.execute(sql) |
||||||
|
self.__DB_CONN.commit() |
||||||
|
self.__Close() |
||||||
|
return result |
||||||
|
except Exception as ex: |
||||||
|
return ex |
||||||
|
|
||||||
|
def query(self, sql): |
||||||
|
# 执行SQL语句返回数据集 |
||||||
|
if not self.__Conn(): |
||||||
|
return self.__DB_ERR |
||||||
|
try: |
||||||
|
self.__DB_CUR.execute(sql) |
||||||
|
result = self.__DB_CUR.fetchall() |
||||||
|
# print(result) |
||||||
|
# 将元组转换成列表 |
||||||
|
# data = map(list, result) |
||||||
|
self.__Close() |
||||||
|
return result |
||||||
|
except Exception as ex: |
||||||
|
return ex |
||||||
|
|
||||||
|
def __Close(self): |
||||||
|
# 关闭连接 |
||||||
|
self.__DB_CUR.close() |
||||||
|
self.__DB_CONN.close() |
@ -0,0 +1,11 @@ |
|||||||
|
port = 5432 |
||||||
|
listen_addresses='*' |
||||||
|
unix_socket_directories='{$APP_PATH}/tmp' |
||||||
|
|
||||||
|
max_wal_size = 1GB |
||||||
|
min_wal_size = 80MB |
||||||
|
|
||||||
|
log_timezone = 'Asia/Shanghai' |
||||||
|
datestyle = 'iso, ymd' |
||||||
|
timezone = 'Asia/Shanghai' |
||||||
|
default_text_search_config = 'pg_catalog.simple' |
Loading…
Reference in new issue