sql语句报错,You have an error in your SQL syntax; check the manual that corresponds to your ...
ps = ct.prepareStatement("seect * from news where classId = (select classId from newsclass where className = ?) limit ?");
ps.setString(1, newsClass);
ps.setInt(2, num);
是这样报错的,You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'seect * from news where classId = (select classId from newsclass where className' at line 1
我这个sql语句有问题么?news和newsclass两个表我都建好了的 展开
步骤/方法
2/2分步阅读
在我们c#与sql链接的过程中,一般会有两种方法,而每种方法均赋予了不同的权限;如下:
1、集成的Windows身份验证语法范例:
String connectionString = "server=localhost;database=Northwind;integrated security=SSPI";
代码说明:其中server表示运行Sql Server的计算机名,由于在本书中,ASP.NET程序和数据库系统是位于同一台计算机的,所以我们可以用localhost取代当前的计算机名,当然localhost也可以用“.”来代替。database表示所使用的数据库名,这里设置为Sql Server自带的一个示例数据库--Northwind。由于我们希望采用集成的Windows验证方式,所以设置 integrated security为SSPI即可。
注意:在使用集成的Windows验证方式时,并不需要我们输入用户名和口令,而是把登录Windows时输入的用户名和口令传递到Sql Server。然后Sql Server检查用户清单,检查其是否具有访问数据库的权限。而且数据库连接字符串是不区分大小写的。
2/2
采用Sql Server身份验证的语法范例:
string connectionString = "server=localhost;database=Northwind;uid=sa;pwd=sa";
代码说明:在上述语法范例的程序代码中,采用了使用已知的用户名和密码验证进行数据库的登录。localhost可以用“.”来代替,uid为指定的数据库用户名,pwd为指定的用户口令。为了安全起见,一般不要在代码中包括用户名和口令,你可以采用前面的集成的Windows验证方式或者对Web.Config文件中的连接字符串加密的方式提高程序的安全性。
pstmt
=
con.prepareStatement(sqlStr.toString());
pstmt.addBatch();
英文提示你seect * from news where classId
select拼写错误
select拼写错误
不好意思,粘贴的时候弄错了,这个原本就是select的,
报错信息就是这个拼写错误,改了你再试试
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'seect * from news where classId = (select classId from newsclass where className' at line 1
2014-03-28