fix: type of imported BLOB data #239

This commit is contained in:
schdub
2015-04-13 20:49:15 +03:00
parent 8a9380ef41
commit e23b0112d4
4 changed files with 48 additions and 19 deletions

View File

@@ -88,7 +88,7 @@ public:
*/
QString emptyInsertStmt(const sqlb::Table& t, qint64 pk_value = -1) const;
bool deleteRecord(const QString& table, qint64 rowid);
bool updateRecord(const QString& table, const QString& column, qint64 row, const QByteArray& value);
bool updateRecord(const QString& table, const QString& column, qint64 row, const QByteArray& value, bool itsBlob);
bool createTable(const QString& name, const sqlb::FieldVector& structure);
bool renameTable(const QString& from_table, const QString& to_table);