在JAVA 中生成代码试运行操作SQL SERVER中的存储过程:
import java.sql.*;
public class lab4 {
static String driverName="com.microsoft.jdbc.sqlserver.SQLServerDriver";
static String userName="sa"; //数据库用户名
static String userPasswd="123"; //数据库密码
static String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=student";
//student为本次连接所用的数据库名称
static Connection conn=null;
ResultSet rs=null;
Statement stmt=null;
public static void main(String[] args)
{
try{
String sql="create procedure my as select 学号,姓名 from 学生表";
//学生表中保存学号,性别,年龄,所在院系,入学时间等基本内容
String sql2="exec my";
String sql1="drop procedure my";
Class.forName(driverName).newInstance();
conn=DriverManager.getConnection(url,userName,userPasswd);
Statement stmt=conn.createStatement();
System.out.println("Ok");
stmt.execute(sql2);
ResultSet rs=stmt.getResultSet();
System.out.println("------------------------------------");
System.out.println("| 学号 | 姓名 |");
System.out.println("-----------------------------------");
while(rs.next())
{
System.out.print(rs.getString("学号")+"|");
System.out.print(rs.getString("姓名")+"|\n");
System.out.println("--------------------------------");
}
}
catch(Exception e)
{
e.printStackTrace();
}
}
}