-
Notifications
You must be signed in to change notification settings - Fork 1
Fixed your readme.md formatting. <3 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
8b30175
aeea950
d27ceb8
0a08828
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -43,8 +43,12 @@ CREATE TABLE students ( | |||||
| age INT, | ||||||
| marks INT DEFAULT 0 | ||||||
| ); | ||||||
| ``` | ||||||
|
|
||||||
|
|
||||||
| ## Project Structure | ||||||
|
|
||||||
| ``` | ||||||
| ├── Task1.java # MySQL Connection Test | ||||||
| ├── Task2.java # Read (SELECT) Operation | ||||||
| ├── Task3.java # Insert (INSERT) Operation | ||||||
|
|
@@ -54,10 +58,15 @@ CREATE TABLE students ( | |||||
| ├── Main.java # Menu Driven Program | ||||||
| ├── Methods.java # CRUD Methods | ||||||
| └── README.md | ||||||
| ``` | ||||||
|
|
||||||
| --- | ||||||
|
|
||||||
| ## 🔑 MySQL Connection Configuration | ||||||
| String mysqlUrl = "jdbc:mysql://localhost:3306/Student_db"; | ||||||
|
|
||||||
| String username = "root"; | ||||||
|
|
||||||
| String password = "your_password"; | ||||||
|
|
||||||
| 🚀 How to Run the Project | ||||||
|
|
@@ -76,25 +85,30 @@ javac *.java | |||||
| java Main | ||||||
|
|
||||||
| 📋 CRUD Operations Explained | ||||||
| ➕ Insert Data | ||||||
| ➕ | ||||||
|
|
||||||
| ```sql | ||||||
| -- Insert Data | ||||||
| INSERT INTO students VALUES (?, ?, ?); | ||||||
|
|
||||||
| 📖 Read Data | ||||||
| -- 📖 Read Data | ||||||
| SELECT * FROM students; | ||||||
|
|
||||||
| ✏ Update Data | ||||||
| -- Update Data | ||||||
|
||||||
| -- Update Data | |
| -- ✏ Update Data |
Copilot
AI
Jan 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's an extra space before "Delete". This should be "-- ❌ Delete Data" with a single space after the emoji for consistency with the other comment lines.
| -- Delete Data | |
| -- ❌ Delete Data |
Copilot
AI
Jan 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section title is missing the emoji that was present in the original. Consider adding "🎯" before "Ideal For" to maintain consistency with other section headers in the document.
| ## Ideal For | |
| ## 🎯 Ideal For |
Copilot
AI
Jan 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This section title is missing the emoji that was present in the original. Consider adding "👨💻" before "Author" to maintain consistency with other section headers in the document.
| ## Author | |
| ## 👨💻 Author |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The emoji is separated from the section title. It should be part of a comment line like "-- ➕ Insert Data" for consistency with the other operations in this SQL code block.