Skip to content
This repository was archived by the owner on Aug 13, 2023. It is now read-only.

Commit 8e77381

Browse files
authored
Update SQLite.php
1 parent aa48b81 commit 8e77381

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/QueryBuilder/Adapter/SQLite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public function columns()
5454
*/
5555
public function quote($string)
5656
{
57-
return '"' . $string . '"';
57+
return '"' . str_replace('.', '"."', $string) . '"';
5858
}
5959

6060
/**
@@ -65,4 +65,4 @@ public function name()
6565
return 'sqlite';
6666
}
6767

68-
}
68+
}

0 commit comments

Comments
 (0)