2016-04-15 56 views
0

在web2py中,在膠子/了contrib/pymysql/connections.py有一個創建新的MySQL連接的功能:的web2py:將參數傳遞給DB連接()

def __init__(self, host="localhost", user=None, passwd="", 
      db=None, port=3306, unix_socket=None, 

是否有任何方式來傳遞參數從web2py的這個功能?

回答

2

截至文檔的this section盡頭指出,你可以實例化DAL時指定的driver_args字典:

db = DAL(<connection_string>, 
     driver_args=dict(host='localhost', port=3306, ...)) 
+0

完美。對不起,我錯過了。 – user2667066