Autodesk MapGuide Developer
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
oracle preserve single quotes
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
76 Views, 1 Replies
05-07-2008 09:32 PM
I have several report queries that pull data from either shape file or an odbc connection. I am trying to switch one of these to an oracle odbc. however the syntax I have used for the msaccess connection doesn't isn't correct for the oracle. Can anyone help?
Thanks
SELECT * FROM GIS.SDO_SWCSCULVERTIN WHERE OBJECTID values (#PreserveSingleQuotes(OBJ_KEYS)#) ORDER BY OBJECTID
Thanks
SELECT * FROM GIS.SDO_SWCSCULVERTIN WHERE OBJECTID values (#PreserveSingleQuotes(OBJ_KEYS)#) ORDER BY OBJECTID
*Jason Birch
Re: oracle preserve single quotes
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
05-08-2008 05:45 PM in reply to:
ebnesom
SELECT *
FROM GIS.SDO_SWCSCULVERTIN
WHERE OBJECTID IN (#PreserveSingleQuotes(OBJ_KEYS)#)
ORDER BY OBJECTID
(or something like that)
FROM GIS.SDO_SWCSCULVERTIN
WHERE OBJECTID IN (#PreserveSingleQuotes(OBJ_KEYS)#)
ORDER BY OBJECTID
(or something like that)
