mirror of
https://github.com/FatttSnake/ClassroomInteraction.git
synced 2026-04-06 00:51:25 +08:00
Add library flatlaf. Fix database long id.
This commit is contained in:
10
.idea/libraries/formdev_flatlaf.xml
generated
Normal file
10
.idea/libraries/formdev_flatlaf.xml
generated
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
<component name="libraryTable">
|
||||||
|
<library name="formdev.flatlaf" type="repository">
|
||||||
|
<properties maven-id="com.formdev:flatlaf:1.2" />
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$PROJECT_DIR$/lib/flatlaf-1.2.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES />
|
||||||
|
</library>
|
||||||
|
</component>
|
||||||
@@ -133,7 +133,7 @@ public class DatabaseHelper {
|
|||||||
return ClassOA.selectAll();
|
return ClassOA.selectAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static AClass selectFromClass(int classID) throws NoConfigException, SQLException {
|
public static AClass selectFromClass(long classID) throws NoConfigException, SQLException {
|
||||||
return ClassOA.select(classID);
|
return ClassOA.select(classID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -157,7 +157,7 @@ public class DatabaseHelper {
|
|||||||
return ClassOA.insert(classID, majorName, grade, classNum);
|
return ClassOA.insert(classID, majorName, grade, classNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isExistsInClass(int classID) throws NoConfigException, SQLException {
|
public static boolean isExistsInClass(long classID) throws NoConfigException, SQLException {
|
||||||
return ClassOA.isExists(classID);
|
return ClassOA.isExists(classID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -165,7 +165,7 @@ public class DatabaseHelper {
|
|||||||
return ClassOA.isExists(majorID, grade, classNum);
|
return ClassOA.isExists(majorID, grade, classNum);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean deleteFromClass(int classID) throws NoConfigException, SQLException {
|
public static boolean deleteFromClass(long classID) throws NoConfigException, SQLException {
|
||||||
return ClassOA.delete(classID);
|
return ClassOA.delete(classID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -177,7 +177,7 @@ public class DatabaseHelper {
|
|||||||
return StudentOA.selectAll();
|
return StudentOA.selectAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Student selectFromStudent(int stuID) throws NoConfigException, SQLException {
|
public static Student selectFromStudent(long stuID) throws NoConfigException, SQLException {
|
||||||
return StudentOA.select(stuID);
|
return StudentOA.select(stuID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -185,11 +185,11 @@ public class DatabaseHelper {
|
|||||||
return StudentOA.insert(stuID, stuName, gender, classID, passwd, salt);
|
return StudentOA.insert(stuID, stuName, gender, classID, passwd, salt);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isExistsInStudent(int stuID) throws NoConfigException, SQLException {
|
public static boolean isExistsInStudent(long stuID) throws NoConfigException, SQLException {
|
||||||
return StudentOA.isExists(stuID);
|
return StudentOA.isExists(stuID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean deleteFromStudent(int stuID) throws NoConfigException, SQLException {
|
public static boolean deleteFromStudent(long stuID) throws NoConfigException, SQLException {
|
||||||
return StudentOA.delete(stuID);
|
return StudentOA.delete(stuID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -205,11 +205,11 @@ public class DatabaseHelper {
|
|||||||
return TeacherOA.insert(tchID, tchName, gender, facID, passwd, salt);
|
return TeacherOA.insert(tchID, tchName, gender, facID, passwd, salt);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isExistsInTeacher(int tchID) throws NoConfigException, SQLException {
|
public static boolean isExistsInTeacher(long tchID) throws NoConfigException, SQLException {
|
||||||
return TeacherOA.isExists(tchID);
|
return TeacherOA.isExists(tchID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean deleteFromTeacher(int tchID) throws NoConfigException, SQLException {
|
public static boolean deleteFromTeacher(long tchID) throws NoConfigException, SQLException {
|
||||||
return TeacherOA.delete(tchID);
|
return TeacherOA.delete(tchID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -217,7 +217,7 @@ public class DatabaseHelper {
|
|||||||
return CourseOA.selectAll();
|
return CourseOA.selectAll();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static Course selectFromCourse(int courID) throws NoConfigException, SQLException {
|
public static Course selectFromCourse(long courID) throws NoConfigException, SQLException {
|
||||||
return CourseOA.select(courID);
|
return CourseOA.select(courID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -225,11 +225,11 @@ public class DatabaseHelper {
|
|||||||
return CourseOA.insert(courID, subID, tchID, courTimeStart, courTimeEnd);
|
return CourseOA.insert(courID, subID, tchID, courTimeStart, courTimeEnd);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isExistsInCourse(int courID) throws NoConfigException, SQLException {
|
public static boolean isExistsInCourse(long courID) throws NoConfigException, SQLException {
|
||||||
return CourseOA.isExists(courID);
|
return CourseOA.isExists(courID);
|
||||||
}
|
}
|
||||||
|
|
||||||
public static boolean deleteFromCourse(int courID) throws NoConfigException, SQLException {
|
public static boolean deleteFromCourse(long courID) throws NoConfigException, SQLException {
|
||||||
return CourseOA.delete(courID);
|
return CourseOA.delete(courID);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -253,6 +253,12 @@ public class DatabaseHelper {
|
|||||||
return AttendanceOA.delete(attID);
|
return AttendanceOA.delete(attID);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static boolean queryCourses(long tchID) throws NoConfigException, SQLException, DependenciesNotFoundException {
|
||||||
|
if (isExistsInTeacher(tchID)) throw new DependenciesNotFoundException();
|
||||||
|
// TODO: Query Courses
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
public static void close() {
|
public static void close() {
|
||||||
PoolHelper.close();
|
PoolHelper.close();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,5 +12,6 @@
|
|||||||
<orderEntry type="module" module-name="ClassroomInteraction.Library.main" />
|
<orderEntry type="module" module-name="ClassroomInteraction.Library.main" />
|
||||||
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
||||||
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
||||||
|
<orderEntry type="library" name="formdev.flatlaf" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
@@ -14,5 +14,6 @@
|
|||||||
<orderEntry type="library" name="JUnit5.8.1" level="project" />
|
<orderEntry type="library" name="JUnit5.8.1" level="project" />
|
||||||
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
||||||
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
||||||
|
<orderEntry type="library" name="formdev.flatlaf" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
@@ -12,5 +12,6 @@
|
|||||||
<orderEntry type="module" module-name="ClassroomInteraction.Library.main" />
|
<orderEntry type="module" module-name="ClassroomInteraction.Library.main" />
|
||||||
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
||||||
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
||||||
|
<orderEntry type="library" name="formdev.flatlaf" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
@@ -14,5 +14,6 @@
|
|||||||
<orderEntry type="library" name="JUnit5.8.1" level="project" />
|
<orderEntry type="library" name="JUnit5.8.1" level="project" />
|
||||||
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-core-2.17.2" level="project" />
|
||||||
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
<orderEntry type="library" name="log4j-api-2.17.2" level="project" />
|
||||||
|
<orderEntry type="library" name="formdev.flatlaf" level="project" />
|
||||||
</component>
|
</component>
|
||||||
</module>
|
</module>
|
||||||
BIN
lib/flatlaf-1.2.jar
Normal file
BIN
lib/flatlaf-1.2.jar
Normal file
Binary file not shown.
Reference in New Issue
Block a user