怎么把mysql数据库中的一条记录整行(所有字段)都打印出来

怎么把mysql数据库中的一条记录整行(所有字段)都打印出来,第1张

<?php

//连接数据库......省略

$rs = mysql_query("select * from tablename")

while($myrow = mysql_fetch_array($rs)){

?>

<table>

<tr>

<td><?php echo $myrow['id']?></td>

<td><?php echo $myrow['name']?></td>

<td><?php echo $myrow['age']?></td>

<td><?php echo $myrow['email']?></td>

</tr>

</table>

<?php

}

?>

PreparedStatement pstm = conn.prepareStatement("select value from test")

ResultSet rs=null

rs=pstm.executeQuery()

int i =0

while(rs!=null&&rs.next())

{

System.out.println(i+":"+rs.getString("value"))

i++

}

jdbc就可以

用循环保存

int index =0

while(rs.next){

Object obj = rs.get(index ++)

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/8439473.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-16
下一篇 2023-04-16

发表评论

登录后才能评论

评论列表(0条)

保存