Skip to content

Commit 729baef

Browse files
committed
added toSql and toRawSql functions
1 parent 97b91cf commit 729baef

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/Database/Query/FMBaseBuilder.php

+13
Original file line numberDiff line numberDiff line change
@@ -1077,4 +1077,17 @@ public function getCountForPagination($columns = ['*'])
10771077
{
10781078
return $this->count($columns);
10791079
}
1080+
1081+
public function toRawSql()
1082+
{
1083+
$this->computeWhereIns();
1084+
1085+
return $this->wheres;
1086+
}
1087+
1088+
public function toSql()
1089+
{
1090+
1091+
return $this->toRawSql();
1092+
}
10801093
}

0 commit comments

Comments
 (0)