我正在使用 perl 脚本从我的数据库中提取 url,在该脚本中我使用fetchrow_array从数据库中提取 URL,这工作正常,直到我遇到一个很长的 URL georgelog24.blog.iskreni.net/?bid=6744d9dcf85991ed2e4b8a258153a1ab&lid=ff9963b9a798ea335b75b5f7c0c295d1
,然后它开始给我这个错误。
DBD::ODBC::st fetchrow_array failed: st_fetch/SQLFetch (long truncated DBI attribute LongTruncOk not set and/or LongReadLen too small) (SQL-HY000) [state was HY000 now 01004]
[Microsoft][ODBC SQL Server Driver]String data, right truncation (SQL-01004) at C:\test\multihashtest2.pl line 44.
我相信这是在数据库方面,因为我一直用来拉 URL 的代码以前工作过。我使用的数据库是MSSQL server 2005。
数据库中的 URL 列当前使用文本类型,但我尝试将其更改为varchar(max)和nvarchar(max)但错误仍然存在。
经过一番反复试验,我发现 url 的最大长度然后我可以使用 fetchrow_array 成功查询为 81 个字符。而且由于 URL 有时可以跨越荒谬的长度,我不能对 URL 长度进行限制。
任何人都可以帮助我理解并建议解决这个问题吗?
仅供参考:第 44 行是我下面代码中的第一行
while (($myid,$url) = $statement_handle->fetchrow_array()) { # executes as many threads as there are jobs to do
my $thread = threads->create(\&webcrawl); #initiate thread
my $tid = $thread->tid;
print " - Thread $tid started\n"; #obtain thread no. and print
push (@Threads, $thread); #push thread into array for "housekeeping" later on
}