如何使用jdbc将从用户获取的数据插入到mysql中

发布于 2024-11-05 19:01:46 字数 377 浏览 0 评论 0原文

我想从用户那里获取数据(例如名称)并使用 JDBC 将其插入到 mysql 中。

我正在尝试做这样的事情:

String uName = Username.getText(); (where uName is the name of the texfield)

然后我想将这个“uName”变量插入到mysql中。我知道它不起作用,但我试了一下,并尝试使用以下查询来完成它:(

statement.executeUpdate("INSERT INTO users(username) VALUES(uName)");

其中用户名是列的名称。)

它不起作用:)有什么建议吗?

I'd like to get a data (e.g. name) from user and insert it into mysql using JDBC.

I'm trying to do something like this:

String uName = Username.getText(); (where uName is the name of the texfield)

Then I'd like to insert this 'uName' variable into mysql. I knew it wouldnt work, but I gave it a shot, and tried to do it with the following query:

statement.executeUpdate("INSERT INTO users(username) VALUES(uName)");

(Where username is the name of the column.)

It didnt work :) Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

忱杏 2024-11-12 19:01:46

假设您以正确的方式打开与数据库的连接,您可以执行以下操作:

String connString = "jdbc:mysql://localhost:3306/<db_name>?user=<user>&password=<password>";
Class.forName("com.mysql.jdbc.Driver");
Connection connect = DriverManager.getConnection(connString);

// open connection
// ...

try 
{
  String query = "INSERT INTO users (username) VALUES (" + uName + ")"
  statement = connect.createStatement();
  statement.executeUpdate(query);
}
catch (SQLException se)
{
  es.printStackTrace();
}

Assuming you are opening connection to your database in the right way, you can do something like:

String connString = "jdbc:mysql://localhost:3306/<db_name>?user=<user>&password=<password>";
Class.forName("com.mysql.jdbc.Driver");
Connection connect = DriverManager.getConnection(connString);

// open connection
// ...

try 
{
  String query = "INSERT INTO users (username) VALUES (" + uName + ")"
  statement = connect.createStatement();
  statement.executeUpdate(query);
}
catch (SQLException se)
{
  es.printStackTrace();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文