|
POST
|
Thank you for posting your request to the Ideas site. We do not have any near-term plans to add support for raster access, but we do closely watch the votes that requests for new functionality get on the Ideas site. Please add a business justification and/or possible workflows to your Idea site posting.
... View more
01-10-2012
09:05 AM
|
0
|
0
|
3732
|
|
POST
|
The API is not dependent on any of the ArcGIS libraries. You do need to have the Microsoft Visual C++ 2010 Run-time installed. Also be aware that the API can only open 10.0 file geodatabases.
... View more
01-04-2012
01:11 PM
|
0
|
0
|
820
|
|
POST
|
Locking and poor system performance is likely the problem. If a write lock is not acquired using table.SetWriteLock and lock will be created for each insert. If system performance (a slow network or disk) is poor there is a chance that the lock will not be cleared before the next insert attempts to acquire a lock. Your choices are: 1) Use the VS 2010 .NET wrapper that we included in the 1.1 release of the API. It includes the SetWriteLock method. 2) Check the error returned in your insert loop and re-insert when you receive a -2147220893 error. You would want to limit the number of retries.
... View more
01-04-2012
07:57 AM
|
0
|
0
|
930
|
|
POST
|
Add the following two lines after you open the table. table.LoadOnlyMode(true); table.SetWriteLock(); Add the following after you finish inserting rows. table.LoadOnlyMode(false); table.FreeWriteLock(); LoadOnlyMode is usually a good choice when loading data. Setting it to true shuts down index update. Bulk update of indexes is much faster that single updates. Setting Load Only Mode to false, rebuilds all of the indexes. Without setting the write lock and lock is established for each insert. This is slow. Calling SetWriteLock establishes a write lock on the table and holds it until FreeWriteLock is called or the table is closed.
... View more
01-03-2012
07:11 AM
|
0
|
0
|
930
|
|
POST
|
I'm able to reproduce this and have entered a bug. The C++ API sets the guid values as expected. This has been entered as NIM076353 and will be fixed in the next release sometime early next year.
... View more
12-19-2011
11:01 AM
|
0
|
0
|
657
|
|
POST
|
The next release, sometime in the first half of 2012, includes a fix for this (NIM072876).
... View more
12-16-2011
07:29 AM
|
0
|
0
|
749
|
|
POST
|
What browser are you using? I just downloaded and unziped the API.
... View more
12-12-2011
08:31 AM
|
0
|
0
|
700
|
|
POST
|
Using the 1.1 version of the API I'm not able to reproduce your issue. I can zoom in, zoom out, and zoom to layer. Did you change the xml? If so please post it.
... View more
12-05-2011
12:50 PM
|
0
|
0
|
2186
|
|
POST
|
We have been able to reproduce this and have a fix (NIM075930). We will be including this fix in the next release.
... View more
12-02-2011
08:55 AM
|
0
|
0
|
696
|
|
POST
|
I've downloaded your code and will take a look at your issue.
... View more
11-28-2011
07:31 AM
|
0
|
0
|
696
|
|
POST
|
Are you able to connect to the file geodatabase via ArcCatalog? If not, what do you see under the file geodatabase directory?
... View more
11-18-2011
10:21 AM
|
0
|
0
|
814
|
|
POST
|
Prior to 10.0 ITableSort was used when sorting file geodatabase tables. At 10.0 we added SQL ORDER BY to the file geodatabase SQL and sort in the table grid was modified to use ORDER BY rather than ITableSort as this performs better with RDBMS data sources. This works fine with file geodatabase, but apparently slightly different SQL is used when the field is a text field and exceeds 255 characters. This is logged as NIM063655 and was fixed in 10.0 sp3.
... View more
11-14-2011
11:13 AM
|
0
|
0
|
2795
|
|
POST
|
File Geodatabase did not support ORDER BY until 10.0. Prior to 10.0 the SQL would parse, but no sorting would occur. "SELECT REMARKS, OBJECT FROM HI ORDER BY SUBSTRING(REMARKS, 1, 255) ASC" will not work as SUBSTRING is not supported in the ORDER BY. The ORDER BY should work on fields greater that 255. Have you tried "SELECT REMARKS, OBJECT FROM HI ORDER BY REMARKS ASC"?
... View more
11-10-2011
01:07 PM
|
0
|
0
|
2795
|
|
POST
|
There is an error in the sample. Replace: PointShapeBuffer geometry = row.Geometry; With: PointShapeBuffer geometry = row.GetGeometry();
... View more
11-08-2011
10:36 AM
|
0
|
0
|
838
|
|
POST
|
Are you using VS2010 Express or Professional? .NET Framework 4.0?
... View more
11-08-2011
07:27 AM
|
0
|
0
|
838
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-16-2013 09:31 AM | |
| 1 | 12-21-2016 08:14 AM | |
| 1 | 07-29-2016 08:34 AM | |
| 1 | 04-15-2015 09:20 AM | |
| 1 | 12-19-2016 04:33 PM |
| Online Status |
Offline
|
| Date Last Visited |
04-24-2025
12:47 PM
|