当前位置: 首页>>代码示例>>Python>>正文


Python MysqlObj.insert方法代码示例

本文整理汇总了Python中MysqlObj.insert方法的典型用法代码示例。如果您正苦于以下问题:Python MysqlObj.insert方法的具体用法?Python MysqlObj.insert怎么用?Python MysqlObj.insert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MysqlObj的用法示例。


在下文中一共展示了MysqlObj.insert方法的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: insertTags

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertTags(tags):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    for id in tags:
        try:
            db.insert('tags', {'id': id, 'name': tags[id]})
        except Exception, e:
            print "tag exists"
开发者ID:ijustloveses,项目名称:sae_local,代码行数:9,代码来源:dbutils.py

示例2: insertAction

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertAction(uid, statdate, stattime, action):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    db.insert('action', {'uid': uid, 'statdate': statdate, 'stattime': stattime, 'action': action})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:5,代码来源:dbutils.py

示例3: insertMedicine

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertMedicine(uid, statdate, stattype, medicine=0):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    db.insert('medicine', {'uid': uid, 'statdate': statdate, 'stattype': stattype, 'medicine': medicine})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:5,代码来源:dbutils.py

示例4: insertPasswd

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertPasswd(uid, project, idno, passwd):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    db.insert('passwd', {'uid': uid, 'project': project, 'idno': idno, 'passwd': passwd})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:5,代码来源:dbutils.py

示例5: insertTvshow

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertTvshow(uid, name, season, episode):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    db.insert('tvshow', {'uid': uid, 'name': name, 'season': season, 'episode': episode})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:5,代码来源:dbutils.py

示例6: insertSleep

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertSleep(uid, statdate, longmins, shortmins):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    db.insert('sleeps', {'uid': uid, 'statdate': statdate, 'longmins': longmins, 'shortmins': shortmins})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:5,代码来源:dbutils.py

示例7: insertPost

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def  insertPost(post):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    return db.insert('posts', post).lastrowid
开发者ID:ijustloveses,项目名称:sae_local,代码行数:5,代码来源:dbutils.py

示例8: insertPostsTags

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertPostsTags(posts_tags, uid):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    for pid in posts_tags:
        for tid in posts_tags[pid]:
            db.insert('posts_tags', {'pid': pid, 'tid': tid, 'uid': uid})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:7,代码来源:dbutils.py

示例9: insertPosts

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def  insertPosts(posts):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    for post in posts:
        db.insert('posts', post)
开发者ID:ijustloveses,项目名称:sae_local,代码行数:6,代码来源:dbutils.py

示例10: insertUniqRawPosts

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertUniqRawPosts(favorites):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    for id in favorites:
        db.insert('uniq_raw_posts', {'id': id, 'content': favorites[id]})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:6,代码来源:dbutils.py

示例11: insertRawPosts

# 需要导入模块: import MysqlObj [as 别名]
# 或者: from MysqlObj import insert [as 别名]
def insertRawPosts(favorites):
    db = MysqlObj(host=MYSQL_HOST, db=MYSQL_DB, user=MYSQL_USER, passwd=MYSQL_PASS, port=int(MYSQL_PORT))
    for fav in favorites:
        db.insert('raw_posts', {'content': json.dumps(fav)})
开发者ID:ijustloveses,项目名称:sae_local,代码行数:6,代码来源:dbutils.py


注:本文中的MysqlObj.insert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。