diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-10-07 22:23:29 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-10-07 22:23:29 +0000 |
commit | 933bb6c9254ba4761eb960c1b3893a9e57c39fb6 (patch) | |
tree | bf50da8ca46d1c60b6de5e23e9881b806c75de51 /Frameworks/MCPKit/MCPFoundationKit/MCPResult.m | |
parent | 600314d27c03b299e3a9d0f986698a8c2baca9bc (diff) | |
download | sequelpro-933bb6c9254ba4761eb960c1b3893a9e57c39fb6.tar.gz sequelpro-933bb6c9254ba4761eb960c1b3893a9e57c39fb6.tar.bz2 sequelpro-933bb6c9254ba4761eb960c1b3893a9e57c39fb6.zip |
• enhanced spatial support
- implemented native routine to immediate AsText() [MULTIPOLYGON and GEOMETRYCOLLECTION are not yet ready]
- enabled editing of spatial data in Content View for tables and views and in Custom Query via wkt strings which will be saved automatically as wkb by using GeomFromText()
Diffstat (limited to 'Frameworks/MCPKit/MCPFoundationKit/MCPResult.m')
-rw-r--r-- | Frameworks/MCPKit/MCPFoundationKit/MCPResult.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m b/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m index 82b0636e..24d14193 100644 --- a/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m +++ b/Frameworks/MCPKit/MCPFoundationKit/MCPResult.m @@ -470,7 +470,7 @@ const OUR_CHARSET our_charsets60[] = break; case FIELD_TYPE_GEOMETRY: - theCurrentObj = [MCPGeometryData dataWithData:[NSData dataWithBytes:theData length:theLengths[i]]]; + theCurrentObj = [MCPGeometryData dataWithBytes:theData length:theLengths[i]]; break; default: |