<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-3" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Hamish wrote:
<blockquote cite="mid:984389.29044.qm@web45815.mail.sp1.yahoo.com"
type="cite">
<pre wrap="">Luigi:
</pre>
<blockquote type="cite">
<pre wrap="">Does the GRASS DBF engine has a size limitation for some operations?
I got an error while trying the following:
GRASS 6.2.2 (SoilEurope2):~ >d.vect -c sgdbe4_0_reclass
display=attr
attrcol=EAWC_TOP
DBMI-DBF driver error:
SQL parser error in statement:
select EAWC_TOP from smu_ptrdb.dbf where cat = 330677
Error in db_open_select_cursor()
ERROR: Cannot select attributes:
select EAWC_TOP from smu_ptrdb.dbf where cat = 330677
Note that cat=330677 is 2572th row of the .dbf table (if I change
attribute column, I always get an error on the same cat).
</pre>
</blockquote>
<pre wrap=""><!---->
select EAWC_TOP from smu_ptrdb where cat = 330677
not
select EAWC_TOP from smu_ptrdb.dbf where cat = 330677
</pre>
</blockquote>
Yes, my fault: I had tried to v.db.connect using a table name with .dbf
extension (i.e., smu_ptrdb.dbf). When using smu_ptrdb instead, all went
well. Apparently the DBF driver assumes the table has a .dbf extension.<br>
Thanks and regards,<br>
<br>
Luigi<br>
<br>
<br>
</body>
</html>