Updating rows kinda works.
Blocking calls are still used.
This commit is contained in:
parent
99d738ee65
commit
628c16e2f4
10 changed files with 179 additions and 81 deletions
|
|
@ -92,11 +92,15 @@ namespace Pgsql {
|
|||
std::string getErrorMessage() const;
|
||||
|
||||
Result query(const char * command);
|
||||
|
||||
Result query(const QString &command)
|
||||
{
|
||||
return query(command.toUtf8().data());
|
||||
}
|
||||
|
||||
Result queryParam(const char * command, const Params ¶ms);
|
||||
Result queryParam(const QString &command, const Params ¶ms);
|
||||
|
||||
bool sendQuery(const char * query);
|
||||
bool sendQuery(const std::string &command)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue