gpt4 book ai didi

java - 如何在MySQL中将变量插入表中

转载 作者:行者123 更新时间:2023-11-29 06:44:55 25 4
gpt4 key购买 nike

我知道如何将数据添加到表格中。喜欢

String insertQuery = "INSERT INTO tablename (x_coord, y_coord)"
+"VALUES"
+"(11.1,12.1)";
s.execute(insertQuery);

11.1 和 12.1 可以插入到表中。现在给定一个浮点变量

float fv = 11.1;

如何将fv插入到表中?

最佳答案

在 JAVA 中,您可以像这样使用准备好的语句:

Connection conn = null;
PreparedStatement pstmt = null;

float floatValue1 = 11.1;
float floatValue2 = 12.1;

try {
conn = getConnection();
String insertQuery = "INSERT INTO tablename (x_coord, y_coord)"
+"VALUES"
+"(?, ?)";
pstmt = conn.prepareStatement(insertQuery);
pstmt.setFloat(1, floatValue1);
pstmt.setFloat(2, floatValue2);
int rowCount = pstmt.executeUpdate();
System.out.println("rowCount=" + rowCount);
} finally {
pstmt.close();
conn.close();
}

关于java - 如何在MySQL中将变量插入表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6566031/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com