diff Framework/SQLite/SQLiteStatement.cpp @ 245:9d00e5e073e8

rename FileValue as ResultFileValue
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Apr 2021 18:50:44 +0200
parents ab96698c73a3
children 16aac0287485
line wrap: on
line diff
--- a/Framework/SQLite/SQLiteStatement.cpp	Tue Apr 13 18:43:21 2021 +0200
+++ b/Framework/SQLite/SQLiteStatement.cpp	Tue Apr 13 18:50:44 2021 +0200
@@ -22,7 +22,7 @@
 #include "SQLiteStatement.h"
 
 #include "../Common/BinaryStringValue.h"
-#include "../Common/FileValue.h"
+#include "../Common/InputFileValue.h"
 #include "../Common/Integer64Value.h"
 #include "../Common/Query.h"
 #include "../Common/Utf8StringValue.h"
@@ -74,10 +74,10 @@
           break;
         }
 
-        case ValueType_File:
+        case ValueType_InputFile:
         {
-          const FileValue& blob =
-            dynamic_cast<const FileValue&>(parameters.GetValue(name));
+          const InputFileValue& blob =
+            dynamic_cast<const InputFileValue&>(parameters.GetValue(name));
           statement_->BindBlob(i, blob.GetBuffer(), blob.GetSize());
           break;
         }