Glynn Clements wrote: >> $ v.overlay ainput=small_box atype=area binput=big_box btype=area output=not >> operator=and >> >> Copying vector objects from vector map <small_box>... >> 100% >> Collecting input attributes... >> WARNING: Database connection not defined for layer 1 >> Copying vector objects from vector map <big_box>... >> 100% >> Collecting input attributes... >> WARNING: Database connection not defined for layer 1 >> DBMI-DBF driver error: >> SQL parser error: >> in statement: >> create table not (cat integer , a_cat integer, b_cat integer ) >> Error in db_execute_immediate() >> >> ERROR: Unable to create table: 'create table not (cat integer , a_cat >> integer, b_cat integer )' >> >> >> >> Same v.overaly command line, but with output other than "and", "or", "not", >> works OK.
> Vector attributes are stored in a table whose name is exactly the same > as the vector map, so a GRASS vector name must be valid as an SQL > table name. I see. This is indeed not a a problem with overlay. Eg. g.copy: $ g.copy vect=map,and Copy vector <[EMAIL PROTECTED]> to current mapset as <and> DBMI-DBF driver error: SQL parser error: in statement: create table and ( cat integer ) Cannot create table WARNING: Cannot create new table WARNING: Unable to copy table <and> WARNING: Cannot copy <[EMAIL PROTECTED]> to current mapset as <and> > This isn't something which can easily be fixed without breaking > existing setups. I'm not even sure that it's possible to detect in > advance whether a given name is valid. Some not SQL compliant names are already rejected. g.copy again: $ g.copy vect=map,1 Copy vector <[EMAIL PROTECTED]> to current mapset as <1> WARNING: Illegal vector map name <1>. Must start with a letter. ERROR: Vector map name is not SQL compliant Maybe there is a way to extend the test to reject names and, or, not? Should xor be rejected too? For now vectors and tables named "xor" are allowed and don't trigger SQL parser error like and/or/not? Maciek _______________________________________________ grass-dev mailing list [email protected] http://grass.itc.it/mailman/listinfo/grass-dev

