我试图建立xplain2sql使用御坊编译器和它的工具 。 发行后geant compile
命令我得到了很多类似的错误:
[嘘声]类SQL_GENERATOR_TSQL65(SQL_GENERATOR,2610,5):的实际参数#1型“STRING_8”不符合输入形式参数的“UC_STRING”在功能“类‘`is_equal UC_STRING’
上述错误是指最后一行此代码:
sql_infix_expression (a_left: XPLAIN_EXPRESSION; an_operator: STRING; a_right: XPLAIN_EXPRESSION): STRING
-- SQL expression for multiplication/division, etc.
require
valid_left: a_left /= Void
valid_right: a_right /= Void
operator_not_empty: an_operator /= Void and then not an_operator.is_empty
local
left_value,
right_value: STRING
do
if
an_operator.is_equal (once "+") and then
我不知道埃菲尔铁塔,我只想编译这段代码。 有哪些我可以用其他编程语言的一些常识和经验来解决其他构建错误,但我不知道如何处理这个问题。