• 大小: 336KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-01-06
  • 语言: Java
  • 标签: tag  

资源简介

学生学籍管理系统--数据库课程设计(java)

资源截图

代码片段和文件信息

import java.util.Scanner;
import java.sql.*;

public class Student 
{
static boolean flag;        //标记是否为管理员
static int i =0;            //限制密码输入次数
static String present_name; //记录当前用户

public static void log_in(String nameString pwd) throws Exception//用户登录验证
{
String DBDrive = “sun.jdbc.odbc.JdbcOdbcDriver“;
String connectionStr = “jdbc:odbc:conn“;
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
Class.forName(DBDrive);
    con = DriverManager.getConnection(connectionStr“sa““sa“);
stmt = con.createStatement();
rs = stmt.executeQuery(“Select * From users where username= ‘“+name+“‘ and password= ‘“+pwd+“‘“);
if(rs.next())
{
System.out.println(“登录成功!“);
}
else
{                                   //设置三秒后关闭程序

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      30024  2010-06-06 23:23  数据库课程设计--学生学籍管理系统\Student.java

     文件     481280  2010-06-26 23:01  数据库课程设计--学生学籍管理系统\数据库课程设计.doc

     目录          0  2010-06-27 10:32  数据库课程设计--学生学籍管理系统

----------- ---------  ---------- -----  ----

               511304                    3


评论

共有 条评论