Thread: nxTools v1.0.3
View Single Post
Old 04-20-2006, 05:06 PM  
neoxed
Too much time...
 
Join Date: May 2003
Posts: 1,326
Default

It was brought to my attention that "SITE PRE STATS" no longer works. The latest version of SQLite changed the behavior of the SUM() command. All sums are returned as floating point, even if the operation is performed on a column of integers.

Open nxPre.tcl in your favourite text editor and replace:
Quote:
round(sum(Files)) AS Files
with:
Quote:
CAST(SUM(Files) AS INTEGER) AS Files
neoxed is offline   Reply With Quote