如何通过java写一个程序连接数据库,并在jsp页面中显示出来?

2024年12月02日 01:45
有3个网友回答
网友(1):

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

}

显示也同理,写一个类

网友(2):

就是一个添加一行数据,
用JDBC了,

网友(3):

今春笆核元老痘成