摘要: 在使用PHP进行读取Mongo数据时,如果读取的int数据过大时,会自动转变为int64位。 并会报以下错误: Cannot natively represent the long 8331412483000 on this platform 只要在需要的地方添加代码: ini_set('mongo 阅读全文
posted @ 2016-05-03 11:56 iDark 阅读(828) 评论(0) 推荐(0) 编辑
摘要: 一、MongoDB 数据库操作 1. 连接数据库 import pymongo conn = pymongo.Connection() # 连接本机数据库 # conn = pymongo.Connection(host="192.168.1.202") # 连接指定IP的数据库 db = conn 阅读全文
posted @ 2016-05-03 00:46 iDark 阅读(1041) 评论(0) 推荐(0) 编辑