Index: Source/bindings/v8/custom/V8SQLTransactionCustom.cpp |
diff --git a/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp b/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp |
index c40ef9c0de90307c2826ce289fba1146fe671f6e..a85e95099b2ac24af43da926c827c4f68403d5f5 100644 |
--- a/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp |
+++ b/Source/bindings/v8/custom/V8SQLTransactionCustom.cpp |
@@ -54,7 +54,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8: |
return; |
} |
- V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, statement, info[0]); |
+ V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, statement, info[0]); |
Vector<SQLValue> sqlValues; |
@@ -84,7 +84,7 @@ void V8SQLTransaction::executeSqlMethodCustom(const v8::FunctionCallbackInfo<v8: |
V8TRYCATCH_VOID(double, sqlValue, value->NumberValue()); |
sqlValues.append(SQLValue(sqlValue)); |
} else { |
- V8TRYCATCH_FOR_V8STRINGRESOURCE_VOID(V8StringResource<>, sqlValue, value); |
+ V8STRINGRESOURCE_PREPARE_VOID(V8StringResource<>, sqlValue, value); |
sqlValues.append(SQLValue(sqlValue)); |
} |
} |