Skip to content
This repository was archived by the owner on Jan 31, 2026. It is now read-only.

Commit 6971efa

Browse files
committed
Project Folder and README Update
1 parent ddbee99 commit 6971efa

32 files changed

Lines changed: 203 additions & 64 deletions

File tree

.vscode/launch.json

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "java",
9+
"name": "Current File",
10+
"request": "launch",
11+
"mainClass": "${file}"
12+
},
13+
{
14+
"type": "java",
15+
"name": "Connect",
16+
"request": "launch",
17+
"mainClass": "dbms.Connect",
18+
"projectName": "DatabaseManagementSystem"
19+
},
20+
{
21+
"type": "java",
22+
"name": "HelloFX",
23+
"request": "launch",
24+
"mainClass": "dbms.HelloFX",
25+
"projectName": "DatabaseManagementSystem",
26+
},
27+
{
28+
"type": "java",
29+
"name": "Launcher",
30+
"request": "launch",
31+
"mainClass": "dbms.Launcher",
32+
"projectName": "DatabaseManagementSystem",
33+
"args": "jdbc:oracle:thin:system/RomitSagu@10.0.0.213:1521:xe"
34+
// Change the args where system is the user, RomitSagu is the password, 10.0.0.213 is the ip address, xe is the service name
35+
}
36+
]
37+
}
Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
1010
<attributes>
1111
<attribute name="maven.pomderived" value="true"/>
12+
<attribute name="optional" value="true"/>
1213
</attributes>
1314
</classpathentry>
1415
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
@@ -22,13 +23,35 @@
2223
<attributes>
2324
<attribute name="maven.pomderived" value="true"/>
2425
<attribute name="test" value="true"/>
26+
<attribute name="optional" value="true"/>
27+
</attributes>
28+
</classpathentry>
29+
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
30+
<attributes>
31+
<attribute name="maven.pomderived" value="true"/>
2532
</attributes>
2633
</classpathentry>
27-
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
2834
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
2935
<attributes>
3036
<attribute name="maven.pomderived" value="true"/>
3137
</attributes>
3238
</classpathentry>
39+
<classpathentry kind="src" path="target/generated-sources/annotations">
40+
<attributes>
41+
<attribute name="optional" value="true"/>
42+
<attribute name="maven.pomderived" value="true"/>
43+
<attribute name="ignore_optional_problems" value="true"/>
44+
<attribute name="m2e-apt" value="true"/>
45+
</attributes>
46+
</classpathentry>
47+
<classpathentry kind="src" output="target/test-classes" path="target/generated-test-sources/test-annotations">
48+
<attributes>
49+
<attribute name="optional" value="true"/>
50+
<attribute name="maven.pomderived" value="true"/>
51+
<attribute name="ignore_optional_problems" value="true"/>
52+
<attribute name="m2e-apt" value="true"/>
53+
<attribute name="test" value="true"/>
54+
</attributes>
55+
</classpathentry>
3356
<classpathentry kind="output" path="target/classes"/>
3457
</classpath>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target/
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<projectDescription>
3-
<name>project</name>
3+
<name>DatabaseManagementSystem</name>
44
<comment></comment>
55
<projects>
66
</projects>
@@ -22,7 +22,7 @@
2222
</natures>
2323
<filteredResources>
2424
<filter>
25-
<id>1669277060029</id>
25+
<id>1683324150395</id>
2626
<name></name>
2727
<type>30</type>
2828
<matcher>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
eclipse.preferences.version=1
2+
org.eclipse.jdt.apt.aptEnabled=false

project/.settings/org.eclipse.jdt.core.prefs renamed to DatabaseManagementSystem/.settings/org.eclipse.jdt.core.prefs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
1010
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
1111
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
1212
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
13-
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
14-
org.eclipse.jdt.core.compiler.release=enabled
13+
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=ignore
14+
org.eclipse.jdt.core.compiler.processAnnotations=disabled
15+
org.eclipse.jdt.core.compiler.release=disabled
1516
org.eclipse.jdt.core.compiler.source=1.8
File renamed without changes.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
22
<modelVersion>4.0.0</modelVersion>
3-
<groupId>com.cps510</groupId>
4-
<artifactId>project</artifactId>
3+
<groupId>DatabaseManagementSystem</groupId>
4+
<artifactId>DatabaseManagementSystem</artifactId>
55
<version>0.0.1-SNAPSHOT</version>
6-
<name>cps510project</name>
6+
77
<properties>
88
<maven.compiler.source>1.8</maven.compiler.source>
99
<maven.compiler.target>1.8</maven.compiler.target>

project/src/main/java/project/Connect.java renamed to DatabaseManagementSystem/src/main/java/dbms/Connect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package project;
1+
package dbms;
22

33
import java.sql.Connection;
44
import java.sql.DriverManager;

project/src/main/java/project/CusLogin.java renamed to DatabaseManagementSystem/src/main/java/dbms/CusLogin.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package project;
1+
package dbms;
22

33
public class CusLogin {
44
private int userID;

0 commit comments

Comments
 (0)