正解在这里:
我想楼主的数据库uno,password这两列应该是字符串类型的吧。
string sql = string.Format("select count(*) from u where uno='{0}' and password='{1}'", this.cboId.Text.Trim(), this.txtKey.Text.Trim());
string sql = string.Format("select count(*) from u where uno={0} and password={1}", this.cboId.Text.Trim(), this.txtKey.Text.Trim());
把逗号改为and就Ok了
列名无效有可能是你的数据库表中没有这个字段
要使用group by必须在select后面选择的字段中包含分组的字段
三楼正解, 怎么where条件有逗号的,呵呵 不是AND 就是 OR
你试试这个:
string sql="select * from u where uno='"+this.cbold.Text.Trim()+"' ,password='"+this.txtKey.Text.Trim()+"'";
把大括号去掉