domain ->entity,SQL -> lowercase

domain ->entity,SQL ->  lowercase
This commit is contained in:
MaxKey
2021-04-19 20:03:30 +08:00
parent b4d7911afc
commit 5f21d81346
272 changed files with 1259 additions and 1246 deletions

View File

@@ -55,7 +55,7 @@ public class DerbyTest {
/*interact with Derby*/
Statement s = conn.createStatement();
ResultSet rs = s.executeQuery("SELECT * FROM SECONDTABLE");
ResultSet rs = s.executeQuery("select * from secondtable");
while(rs.next()){
System.out.println("key : "+rs.getInt("ID")+" ,name : "+rs.getString("NAME"));