aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/InsertQueryTypeQueryComponent.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/classes/InsertQueryTypeQueryComponent.php')
-rw-r--r--engine/classes/InsertQueryTypeQueryComponent.php14
1 files changed, 14 insertions, 0 deletions
diff --git a/engine/classes/InsertQueryTypeQueryComponent.php b/engine/classes/InsertQueryTypeQueryComponent.php
new file mode 100644
index 000000000..20d1a7adf
--- /dev/null
+++ b/engine/classes/InsertQueryTypeQueryComponent.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * @class InsertQueryTypeQueryComponent
+ * An insert query.
+ * @author Curverider Ltd
+ * @see Query
+ */
+class InsertQueryTypeQueryComponent extends QueryTypeQueryComponent
+{
+ function __construct()
+ {
+ $this->query_type = "INSERT INTO";
+ }
+}