如何通过java写一个程序连接数据库,并在jsp页面中显示出来? 5
如何通过java写一个SONG类,并把这个SONG类的内容(如歌词、作者等)导入数据库,然后在jsp页面中把导入数据库的内容显示出来?...
如何通过java写一个SONG类,并把这个SONG类的内容(如歌词、作者等)导入数据库,然后在jsp页面中把导入 数据库的内容显示出来?
展开
3个回答
展开全部
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
}
显示也同理,写一个类
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
}
显示也同理,写一个类
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |