IBM Informix Spatial datablade LineFromText 函数
我正在将 IBM-Informix 用于我的学校项目,作为 IBM 开展的“Informix 校园”活动的一部分。
但是,在第二个 linefromtext 函数中,它给我的错误是“(USE31) - ST_LineFromText 中几何类型的点太少。”。
I am using IBM-Informix for my school project as part of "Informix on-campus" ativity conduted by IBM.
however it is giving me error as "(USE31) - Too few points for geometry type in ST_LineFromText.", in the second linefromtext function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
第二次调用 ST_LineFromText() 时的问题是您试图将参数传递给它,但这是不可能的。您有:
字符串包含“v1.pre”,这不是有效的数字等。如果您需要参数化查询,则需要使用这些值生成字符串,或者需要使用不同的方法。一种粗略但可能的解决方案是:
这可能无法完成工作 - 但说明了问题。
The problem in the second call to ST_LineFromText() is that you are attempting to pass parameters into it, which isn't possible. You have:
The string contains 'v1.pre' which is not a valid number, etc. If you need to parameterize your query, you either need to generate the string with those values in place, or you need to use a different method. One crude but possible solution is:
This may not do the job - but illustrates the problem.