Skip to content

Commit d3b002b

Browse files
committed
.
1 parent 3309506 commit d3b002b

136 files changed

Lines changed: 3815 additions & 6 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.DS_Store

6 KB
Binary file not shown.

Lesson04/build/classes/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/spms
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Lesson04/src/spms/servlets/MemberAddServlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ protected void doPost(
5555
sc.getInitParameter("password"));
5656
stmt = conn.prepareStatement(
5757
"INSERT INTO MEMBERS(EMAIL,PWD,MNAME,CRE_DATE,MOD_DATE)"
58-
+ "VALUES (?,?,?,NOW(),NOW());");
58+
+ " VALUES (?,?,?,NOW(),NOW())");
5959
stmt.setString(1, request.getParameter("email"));
6060
stmt.setString(2, request.getParameter("password"));
6161
stmt.setString(3, request.getParameter("name"));

Lesson04/src/spms/servlets/MemberAddServlet01.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ protected void doPost(
5252
"study"); // DBMS 사용자 암호
5353
stmt = conn.prepareStatement(
5454
"INSERT INTO MEMBERS(EMAIL,PWD,MNAME,CRE_DATE,MOD_DATE)"
55-
+ "VALUES (?,?,?,NOW(),NOW());");
55+
+ " VALUES (?,?,?,NOW(),NOW())");
5656
stmt.setString(1, request.getParameter("email"));
5757
stmt.setString(2, request.getParameter("password"));
5858
stmt.setString(3, request.getParameter("name"));

0 commit comments

Comments
 (0)