Changes between Initial Version and Version 3 of Ticket #171
- Timestamp:
- 04/20/08 01:30:58 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #171
- Property Milestone 3.3.0 → 3.3.1
-
Ticket #171 – Description
initial v3 1 1 With FDO it is possible to create a column with Primary = true and 2 2 autogenerate = false. 3 I think the PostGis provider should not do that assumption and let the user3 I think the !PostGis provider should not do that assumption and let the user 4 4 manage the primary key if the autogenerate flag is set to false. 5 5 6 6 Actually it is mandatory 7 7 there is the piece of code where you can find the limitation: 8 9 {{{ 10 11 8 12 void SchemaDescription::DescribeSchema(Connection* conn, FdoString* schemaName) 9 13 { … … 35 39 } 36 40 41 42 }}}