aboutsummaryrefslogtreecommitdiff
path: root/engine/classes/InsertQueryTypeQueryComponent.php
blob: 20d1a7adf65ff165e98ba1cadaa27c5cc737e669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
/**
 * @class InsertQueryTypeQueryComponent
 * An insert query.
 * @author Curverider Ltd
 * @see Query
 */
class InsertQueryTypeQueryComponent extends QueryTypeQueryComponent
{
	function __construct()
	{
		$this->query_type = "INSERT INTO";
	}
}