資源簡介
植物資源管理系統,基于java開發的桌面程序,含代碼和文檔。

代碼片段和文件信息
import?java.sql.*;
import?java.util.*;
public?class?DeleteRecord
{
String?deletename;??
String?deletewhat;
public?DeleteRecord(String?deletenameString?deletewhat)
{
? this.deletename=deletename;
? this.deletewhat=deletewhat;
String?url=“jdbc:sqlserver://localhost:1433;databaseName=plantsystem;user=sb;password=123“;
Connection?con=null;
Statement?st=null;
ResultSet?rs=null;
try
{
Class.forName(“com.microsoft.sqlserver.jdbc.SQLServerDriver“).newInstance();
con=DriverManager.getConnection(url);
st=?con.createStatement();
if(deletewhat==“toperson“)
st.executeUpdate(“delete?from?“+deletewhat+
????????????????????“?where?personname=‘“+deletename+“‘“);
else?st.executeUpdate(“delete?from?“+deletewhat+
????????????????????“?where?“+deletewhat+“name=‘“+deletename+“‘“);
}
catch(Exception?e)
{
e.printStackTrace();
}
finally
{
try
{
if(con!=null)
con.close();
}
catch(SQLException?e)
{
e.printStackTrace();
}
}
}
public?void?setname(String?deletename)?{
this.deletename?=?deletename;
}
public?void?setdeletewhat(String?deletewhat)?{
this.deletewhat?=?deletewhat;
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件?????353445??2012-01-03?23:03??代碼\(2).png
?????文件????????383??2012-01-03?23:03??代碼\.classpath
?????文件????????399??2012-01-03?23:03??代碼\.project
?????文件????????629??2012-01-03?23:04??代碼\.settings\org.eclipse.jdt.core.prefs
?????文件?????122810??2012-01-03?23:03??代碼\1.PNG
?????文件???????8333??2012-01-03?23:03??代碼\11.png
?????文件????????568??2012-01-03?23:03??代碼\124.png
?????文件??????34789??2012-01-03?23:03??代碼\2.jpg
?????文件?????103357??2012-01-03?23:03??代碼\a.png
?????文件??????19220??2012-01-03?23:03??代碼\background.jpg
?????文件???????2292??2012-01-03?23:03??代碼\bin\DeleteRecord.class
?????文件???????1771??2012-01-03?23:03??代碼\bin\Flower.class
?????文件????????709??2012-01-03?23:03??代碼\bin\FlowerPane$1.class
?????文件???????1071??2012-01-03?23:03??代碼\bin\FlowerPane$2.class
?????文件????????753??2012-01-03?23:03??代碼\bin\FlowerPane$actionlistener.class
?????文件???????4194??2012-01-03?23:03??代碼\bin\FlowerPane.class
?????文件???????1553??2012-01-03?23:03??代碼\bin\FlowerSave$1.class
?????文件???????4850??2012-01-03?23:03??代碼\bin\FlowerSave.class
?????文件????????767??2012-01-03?23:03??代碼\bin\ImageButton$1.class
?????文件????????770??2012-01-03?23:03??代碼\bin\ImageButton$GlassPanel$1.class
?????文件???????1413??2012-01-03?23:03??代碼\bin\ImageButton$GlassPanel.class
?????文件???????1126??2012-01-03?23:03??代碼\bin\ImageButton$listener.class
?????文件???????2471??2012-01-03?23:03??代碼\bin\ImageButton.class
?????文件???????2277??2012-01-03?23:03??代碼\bin\InsertRecord.class
?????文件???????2092??2012-01-03?23:03??代碼\bin\li
?????文件???????2133??2012-01-03?23:03??代碼\bin\ListPane$1.class
?????文件???????3038??2012-01-03?23:03??代碼\bin\ListPane.class
?????文件????????418??2012-01-03?23:03??代碼\bin\Login.class
?????文件????????983??2012-01-03?23:03??代碼\bin\Main.class
?????文件????????762??2012-01-03?23:03??代碼\bin\MainPanel$1.class
............此處省略93個文件信息
評論
共有 條評論