Erro na linha 4.. me ajudem

bom… estou tentando fazer um trabalho aqui e não consigo rodar
dá o seguinte erro:

[code]org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: 4 in the jsp file: /index.jsp
Generated servlet error:
C:\Documents and Settings\Administrador.netbeans.1ea2\jakarta-tomcat-5.0.28_base\work\Catalina\localhost\testweb\org\apache\jsp\index_jsp.java:52: cannot find symbol
symbol : method CreateStatement()
location: interface java.sql.Connection
Statement stm = con.CreateStatement();
^
1 error

org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:332)
org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:412)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:472)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:451)
org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:511)
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:295)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:362)

[/code]

o código seria esse:

[code]
<%@ page import=“java.sql.*”%>

Seus usuários são:
<% Class.forName("com.mysql.jdbc.Driver"); Connection con = DriverManager.getConnection( "jdbc:mySQL://localhost:3306/mySQL?useUnicode=true", "root", "root"); Statement stm = con.CreateStatement(); ResultSet res = stm.executeQuery("select user from user"); while (res.next()) { out.println(res.getString(1)+"
"); } res.close(); %> [/code]

Olá
Provavelmente o “c” do createStatement na linha Statement stm = con.CreateStatement();
é minusculo
o correto seria

Statement stm = con.createStatement();

aee
valeu!!
funcionou direitinho aqui
brigadão mesmo