diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-10-30 09:21:32 +0100 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-10-30 09:21:32 +0100 |
commit | c821f53c45b6705e9e5362d331936c1d4280a163 (patch) | |
tree | 445fabebfc91cadc927f83d78682c66c5cb1bb43 | |
parent | b5322d74d1839c4af490f5c7297e439a8433ba9b (diff) |
finish mergestable-0.1.0
-rw-r--r-- | client/HandleMessage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/client/HandleMessage.cpp b/client/HandleMessage.cpp index f7f14f4..aa73828 100644 --- a/client/HandleMessage.cpp +++ b/client/HandleMessage.cpp @@ -18,8 +18,8 @@ void HandleMessage::ParseToSQL(QString input) { QSqlQuery queryInsertData; QString output = "INSERT INTO `WSdb`.`tblMain` () VALUES "; - QVector<QString> data; - QVector<QString> list = input.split("\n"); + QStringList data; + QStringList list = input.split("\n"); for (int i = 0; i < list.size(); ++i) { output += "("; |