>我正在从 Paradox 数据库文件 (.DB)使用模块pypxlib。
在阅读每一行时,我写给CSV。
出于某种原因,预期为"无"的值显示为数字 -2147483648。
有谁知道这个数字的意义?为什么会出现此错误?
代码如下:
for idx in range(0,len(matches)): #for each file found
print "processing %s" % matches[idx]['file']
#outputfile = path.join('./output/' + form_file_name(dbfile) + '.csv')
try:
myTable = Table(matches[idx]['file']) #class from pypxlib that takes a filepath
cols = [] #and creates a 'table' that can be read
for col in myTable.fields: #gets fields from the table
cols.append(col)
pTable = []
with open(output_folder +"/myoutput_" + matches[idx]['f'] + ".csv", "wb") as f:
writer = csv.writer(f)
writer.writerow(cols)
rowcount = 0
for row in myTable: # for every row in table
myRow = []
for fld in cols: # for every cell in the row
myRow.append(row[fld]) #append cell to the row
writer.writerow(myRow) #then write the row to the csv
rowcount = rowcount + 1
if rowcount >= 100:
break #just testing on the first 1000 records
> Paradox 表包含几种数值类型,包括"数字"(64 位浮点)、"长整数"(32 位有符号整数)和"短"(16 位有符号整数)。这些类型中的每一种都有一个带内值,用于表示与零区分的"空白"。这些是您期望为"无"的值。
当 pxlib 库和 pypxlib 包装器将 Paradox 数据转换为 Python 数据类型时,"blank"的带内值将转换为 1,后跟所有 0。在二进制补码表示法中,这是在正向和负向上离零最远的值。
如果 BDE 类型是"长整数",那么这确实表示为 -2147483648。