• 大小: 0.70M
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 数据库
  • 标签: sql  

资源简介


《数据库系统概念》第六版的实验数据。把这些数据导入数据库,就可以做书上的例题和习题。另外附带一个详细的表关系图,方便大家理解表。

资源截图

代码片段和文件信息

import java.util.Scanner;
import java.io.*;
import java.util.Random;
import java.text.DecimalFormat;
public class tableGen {
  private static int maxClassroom = 100 maxStudent = 4000 maxDepartment = 50 
    maxRoom = 1000 maxCourse = 1000 maxSection = 2000 maxAdvisor = 4000
    maxInstructor = 1000 maxTeaches = 5000 maxTakes= 40000 maxPrereq =  1000;
  private static int maxBuilding = 100 maxName = 4200 maxDept = 100 maxtitle = 1000;
  private static double maxSalary = 100000.0;
  private static double maxBudget = 999999.0;
  private static int maxID = 99999;
  private static Random rnd = new Random();
  private static String[] buildingArray = new String[maxBuilding];
  private static String[] nameArray = new String[maxName];
  private static String[] deptNameArray = new String[maxDept];
  private static String[] titleArray = new String[maxtitle];
  private static Boolean[] teachesArray = new Boolean[maxSection];
  private static int[] nextCourseSection = new int[1000]; //

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

     文件       3312  2014-10-05 22:00  数据库系统概念表数据\DDL+drop.sql

     文件       2901  2014-10-05 21:56  数据库系统概念表数据\DDL.sql

     文件    2294895  2014-10-05 22:04  数据库系统概念表数据\largeRelationsInsertFile.sql

     文件        185  2014-10-11 11:25  数据库系统概念表数据\readme.txt

     文件       9687  2014-10-05 22:00  数据库系统概念表数据\smallRelationsInsertFile.sql

     文件      15887  2014-10-05 22:01  数据库系统概念表数据\tableGen.java

     文件     539556  2014-10-11 11:21  数据库系统概念表数据\表关系图.jpg

    ..AD...         0  2014-10-11 11:25  数据库系统概念表数据

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

              2866423                    8


评论

共有 条评论