首页 > 代码库 > 错误提示:在此上下文中不允许使用名称 "***"。有效表达式包括常量、 常量表达式和变量(在某些上下文中),不允许使用列名。

错误提示:在此上下文中不允许使用名称 "***"。有效表达式包括常量、 常量表达式和变量(在某些上下文中),不允许使用列名。

出现这种情况的原因,是因为在SQL语句的编写格式不正确。

 

事例展示:

 

错误:

1 string sql = "insert into person ([name], sex, salary) values (‘text_name ‘, ‘text_sex ‘, text_salary )";

 

正确:

1 string sql = "insert into person ([name], sex, salary) values (‘" + text_name + "‘, ‘" + text_sex + "‘, ‘" + text_salary + "‘)";

 

错误提示:在此上下文中不允许使用名称 "***"。有效表达式包括常量、 常量表达式和变量(在某些上下文中),不允许使用列名。