如何使用jdbc将从用户获取的数据插入到mysql中
我想从用户那里获取数据(例如名称)并使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您以正确的方式打开与数据库的连接,您可以执行以下操作:
Assuming you are opening connection to your database in the right way, you can do something like: