我在表with open('bsxlength.txt' , 'r') as string:
result = []
while True:
chunk = string.readline(513)
if chunk:
result.append(chunk)
else:
break
中有一个BLOB
数据类型列,我的查询是
referral_documents
它无法返回任何内容数据。
答案 0 :(得分:0)
脚本是否在mysql workbench中运行?
另外,当我使用drupal 8时,我遇到了PDO驱动程序的问题。他们被覆盖了。
尝试建立自己与数据库http://php.net/manual/en/pdo.connections.php的连接并运行这样的脚本。
另外,如果您只想要推介文件中的1个内容,请尝试。 fetch
(PDO::FETCH_COLUMN,0)
抓取下一行,而{{1}}抓取第一列。因此,它将返回您的数据,而无需将额外的开销放入数组中。