public void Add( Song song, int n ){
conn = DBConn.GetConnection();// 获得连接
try{
StringBuffer sBuffer = new StringBuffer();
sBuffer.append( "insert into 数据库表名 " )
.append( " ( 列名,…… ) " )
.append( " values ( ?,…… ) " );
PreparedStatement st = conn.prepareStatement( sBuffer.toString() );
//----------------
int i = 1;
String s =取出类中的对应值;
st.setString( i, s );
++i;
//-----------问号个数对应你类中相应变量,一一对应
int count = st.executeUpdate( );// 执行语句
System.out.printf( "插入%d条记录", count );
}
catch( SQLException e ){
System.out.printf( "插入失败:" + e.getMessage() );
}
finally{
if( conn != null ){
try{
conn.close();
}
catch( SQLException e ){
System.out.printf( "关闭连接失败\n" + e.getMessage() );
}// try
}// if
}// finally
}
显示也同理,写一个类
就是一个添加一行数据,
用JDBC了,
今春笆核元老痘成