?? listing 11-17.java
字號:
private void DownRow ( ResultSet DisplayResults ) throws SQLException
{
String FirstName= new String();
String LastName= new String();
String Street= new String();
String City = new String();
String State = new String();
String ZipCode= new String();
String printrow;
FirstName = DisplayResults.getString ( 1 ) ;
LastName = DisplayResults.getString ( 2 ) ;
Street = DisplayResults.getString ( 3 ) ;
City = DisplayResults.getString ( 4 ) ;
State = DisplayResults.getString ( 5 ) ;
ZipCode = DisplayResults.getString ( 6 ) ;
printrow = FirstName + " " + LastName + " " +
City + " " + State + " " + ZipCode;
System.out.println(printrow);
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -