vs2005中的如何设置/mapinfo:lines

babala2009 2008-04-22 10:27:21
vs2005中
1 如何设置/mapinfo:lines
2 如何设置Debug Info下的Line Numbers Only (/Zd)

这2个在vc6下是有的,vs2005就没有,其中说/mapinfo:lines不再使用!

谁了解,说说

...全文
979 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
maoyeah 2010-11-29
  • 打赏
  • 举报
回复
如需要阅读该回复,请登录或注册CSDN!

登陆之后,还是出现这玩样
悟迟 2010-02-17
  • 打赏
  • 举报
回复
引用 4 楼 jameshooo 的回复:
是取消了,因为这个选项意义不大。只要你在RELEASE下编译生成了MAP文件,现在有很多工具可以直接帮你把错误偏移值直接定位到代码行。
请问,有哪些工具呢?
jameshooo 2008-04-22
  • 打赏
  • 举报
回复
是取消了,因为这个选项意义不大。只要你在RELEASE下编译生成了MAP文件,现在有很多工具可以直接帮你把错误偏移值直接定位到代码行。
gebifangjian 2008-04-22
  • 打赏
  • 举报
回复
在属性页的Link选项的Debugging项中有Map文件的相关设置,同时也有一些DebugInfo的设置。在属性页的C/C++选项的General项中可以设置DebugInfo的格式。
aniuman 2008-04-22
  • 打赏
  • 举报
回复
哦,对不起,没看清题目,呵呵
aniuman 2008-04-22
  • 打赏
  • 举报
回复
alt+F7打开属性页 配置属性->链接器->命令行->附加选项 添加就行了
MapInfo空间数据库建立 MapInfo空间数据库方案: 数据库:Oracle9i 数据上传工具:easyload 9.0 建立空间数据库时,easyload会自动创建一个mapinfo用户以及MAPINFO_MAPCATALOG表,但是easyload自己创建用户和表的时候好像不行,只能创建用户,MAPINFO_MAPCATALOG表创建失败,所以采用手工创建MAPINFO_MAPCATALOG的方式。 创建时,使用mapinfo用户登陆,默认密码是mapinfo ,空间数据可以都上传到这个用户下。 创建MAPINFO_MAPCATALOG表的sql语句如下: Create Table MAPINFO_MAPCATALOG ( SPATIALTYPE Float, TABLENAME Char(32), OWNERNAME Char(32), SPATIALCOLUMN Char(32), DB_X_LL Float, DB_Y_LL Float, DB_X_UR Float, DB_Y_UR Float, COORDINATESYSTEM Char(254), SYMBOL Char(254), XCOLUMNNAME Char(32), YCOLUMNNAME Char(32), RENDITIONTYPE INTEGER, RENDITIONCOLUMN CHAR(32), RENDITIONTABLE CHAR(32) ) 每个参数的具体描述如下: SPATIALTYPE NOTE: This column describes the Spatial Object Format of how the data is stored and indexed and the Spatial Object type(s) supported and not supported in the column. The digits to the left of the decimal point are the Spatial Object Format. The digits to the right represent the type of Spatial Object Type that can be stored in the column. MapInfo Spatial Object Format 1.x: Point layer in X/Y columns indexed with micode (a serialized quadtree key) 2.x: Oracle MD/SDO version 1 HHCODE_ - Not Supported 3.x: Oracle MD/SDO version 1 HHCODE_PARTIONED - Not Supported 4.x: Point layer in X/Y columns 5.x: SpatialWare for Oracle 6.x: Ingres SOL - Not Supported 7.x: Sybase SQS - Not Supported 8.x: Oracle SDO version 2 - Not Supported 9.x: MapInfo Geocoding DataBlade SpatialWare Point Module 10.x: MapInfo Geocoding DataBlade XY Module 11.x: SpatialWare IDS/UDO datablade 12.x: SpatialWare Extender for DB2 13.x: Oracle Spatial 14.x: SpatialWare for Microsoft SQL Server Spatial Object Type x.0: Points only x.1: Lines only x.2: Regions only x.3: All types supported 5.3 TABLENAME The name of the table. DRAINAGE OWNERNAME The owner name of the table. GEORGETOWN SPATIALCOLUMN The name of the column, if any, containing spatial features: SW_GEOMETRY (mappable using SpatialWare Type/IDS/UDO) NO_COLUMN (mappable using X–Y) MI_SQL_MICODE (mappable using MI Code) Or the name of the IDS/UDO, DB2, or Oracle column that is ST_SPATIAL datatype. Name of the Oracle 8i SDO_GEOMETRY column. SW_GEOMETRY DB_X_LL The X coordinate of the lower left corner of the layer’s bounding rectangle, in units that are indicated by the COORDINATESYSTEM (see below). –360 DB_Y_LL The lower left bounding Y value. –90 DB_X_UR The upper right bounding X value. 360 DB_Y_UR The upper right bounding Y value. 90 COORDINATESYSTEM A string representing a MapInfo CoordSys clause (but without the keyword "CoordSys" at the very start), which specifies a map projection, coordinate units, etc. For simple Lon/Lat maps, specify "Earth Projection 1, 0". Earth Projection 1, 0 SYMBOL A MapInfo Symbol clause (if the layer contains only points); or a Symbol clause followed by a Pen clause (indicating styles for linear features) followed by another Pen clause (indicating styles for the borders of regions) followed by a Brush clause. Symbol(35,0,12) Pen(1,2,0) Pen(1,2,0) Brush(2,255,255) XCOLUMNNAME For the X/Y mappable tables, specify the name of the column containing X–coordinates. If there is no such column (i.e., if this table uses a single spatial column instead of a pair of X–Y columns) then specify NO_COLUMN or leave empty. NO_COLUMN YCOLUMNNAME For the X/Y mappable tables, specify the name of the column containing Y–coordinates, or specify NO_COLUMN. NO_COLUMN RENDITIONTYPE This indicates how the object style information is applied. ? “0” - Indicates that all the objects will have the style specified in the symbol field of the Map.Catalog applied to them. ? “1” - Indicates that the table has a separate column which contains a string representation of the style information for each object in the table (e.g. each object may have its own style). 0 or 1 RENDITIONCOLUMN If RENDITIONTYPE is “1”, this field stores the name of the column in the spatial table (identified by the TABLENAME) that contains style information. This column is automatically added to any query against the table and is maintained (updated) as the object is updated. Users should NOT specify this column in their queries as problems can occur with intersect or update statements. Queries which include this column in the select clause (excluding the wildcard character “* “) may access the values through the Dataset object. Rows with a NULL value in their style column will have the style from the SYMBOL field of the MapCatalog applied to the object. MI_SYMBOLOGY RENDITIONTABLE Currently not used, but reserved for future use, this column must exist in order for MapX to correctly identify and apply record-level styles. NULL

16,467

社区成员

发帖
与我相关
我的任务
社区描述
VC/MFC相关问题讨论
社区管理员
  • 基础类社区
  • Web++
  • encoderlee
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

        VC/MFC社区版块或许是CSDN最“古老”的版块了,记忆之中,与CSDN的年龄几乎差不多。随着时间的推移,MFC技术渐渐的偏离了开发主流,若干年之后的今天,当我们面对着微软的这个经典之笔,内心充满着敬意,那些曾经的记忆,可以说代表着二十年前曾经的辉煌……
        向经典致敬,或许是老一代程序员内心里面难以释怀的感受。互联网大行其道的今天,我们期待着MFC技术能够恢复其曾经的辉煌,或许这个期待会永远成为一种“梦想”,或许一切皆有可能……
        我们希望这个版块可以很好的适配Web时代,期待更好的互联网技术能够使得MFC技术框架得以重现活力,……

试试用AI创作助手写篇文章吧