gpt4 book ai didi

sql - 如何使用带参数的插入查询?

转载 作者:行者123 更新时间:2023-12-03 15:37:30 27 4
gpt4 key购买 nike

当我尝试使用此查询时,我收到一条错误消息,指出 Perameter 电子邮件不存在,我确信变量:电子邮件、login_pass、 payment_method、operateur 有效且存在。

SQLQuery2.sql.Text := 'INSERT INTO registered (email,login_pass,payment_method,operateur) VALUES (":email",":login_pass",":payment_method",":avecpuce")';
SQLQuery2.ParamByName('email').AsString := email;
SQLQuery2.ParamByName('login_pass').AsString := login_pass;
SQLQuery2.ParamByName('payment_method').AsString := payment_method;
SQLQuery2.ParamByName('avecpuce').AsString := avecpuce;
SQLQuery2.ExecSQL(true);

我尝试删除引用,但我得到

You have an error in your Sql syntax, check the manual that corresponds to your SQL server for the right syntax to use near ':email,:login_pass,:payment_method,:avecpuce)' at line 1

如何使用上面带参数的插入查询?

最佳答案

来自TSQLQuery.ExecSQL文档:

ExecDirect indicates that the query does not need to be prepared before it is executed. This parameter can be set to true if the query does not include any parameters.

所以如果代码使用

SQLQuery2.ExecSQL(true);

这意味着将不支持参数。

但是因为你使用了参数,所以就使用

SQLQuery2.ExecSQL;

并删除参数周围的引号。

关于sql - 如何使用带参数的插入查询?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8667747/

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