求指教: String sql="select * from users where username="+u+" and password="+p; 其中u和p为变量,

2024-11-04 12:53:18
推荐回答(2个)
回答1:

"select * from users where username='"+u+"' and password='"+p+"'";
你这是在C#里面的
如果在VB中这样写
"select * from users where username='"&u&"' and password='"&p&"'";
字符串变量,要用单引号括起来

回答2:

String sql="select * from users where username='" + u + "' and password='" + p + "'";