File tree 4 files changed +16
-10
lines changed
4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 9
9
"require-dev" : {
10
10
"dibi/dibi" : " ~3.0 | ~4.0 | ~5.0" ,
11
11
"doctrine/cache" : " ~1.11 | ~2.0" ,
12
- "doctrine/dbal" : " ~ 2.5 | ~3 .0" ,
13
- "doctrine/orm" : " ~2.5 " ,
12
+ "doctrine/dbal" : " ^ 2.5 || ^3.0 || ^4 .0" ,
13
+ "doctrine/orm" : " ^2.9 || ^3.0 " ,
14
14
"mockery/mockery" : " ~1.3" ,
15
15
"nette/database" : " ~2.4 | ~3.0" ,
16
16
"nette/di" : " ~2.4.10 | ~3.0" ,
Original file line number Diff line number Diff line change @@ -44,30 +44,30 @@ public function exec(string $sql): int
44
44
45
45
public function escapeString (string $ value ): string
46
46
{
47
- return $ this ->conn ->quote ( $ value, ' string ' );
47
+ return $ this ->conn ->getDatabasePlatform ()-> quoteStringLiteral ( $ value );
48
48
}
49
49
50
50
51
51
public function escapeInt (int $ value ): string
52
52
{
53
- return $ this -> conn -> quote ( $ value, ' integer ' ) ;
53
+ return ( string ) $ value ;
54
54
}
55
55
56
56
57
57
public function escapeBool (bool $ value ): string
58
58
{
59
- return $ this ->conn -> quote ( $ value, ' boolean ' );
59
+ return $ this ->escapeString (( string ) ( int ) $ value );
60
60
}
61
61
62
62
63
63
public function escapeDateTime (DateTimeInterface $ value ): string
64
64
{
65
- return $ this ->conn -> quote ( $ value , ' datetime ' );
65
+ return $ this ->escapeString ( $ value -> format ( $ this -> conn -> getDatabasePlatform ()-> getDateTimeFormatString ()) );
66
66
}
67
67
68
68
69
69
public function escapeIdentifier (string $ value ): string
70
70
{
71
- return $ this ->conn ->quoteIdentifier ($ value );
71
+ return $ this ->conn ->getDatabasePlatform ()-> quoteIdentifier ($ value );
72
72
}
73
73
}
Original file line number Diff line number Diff line change @@ -52,9 +52,9 @@ public function generateContent(): string
52
52
*/
53
53
protected function getUpdateQueries (): array
54
54
{
55
- $ cache = $ this ->entityManager ->getConfiguration ()->getMetadataCacheImpl ();
56
- if ($ cache instanceof ClearableCache ) {
57
- $ cache ->deleteAll ();
55
+ $ cache = $ this ->entityManager ->getConfiguration ()->getMetadataCache ();
56
+ if ($ cache !== null ) {
57
+ $ cache ->clear ();
58
58
}
59
59
60
60
$ schemaTool = new SchemaTool ($ this ->entityManager );
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+ PHP_VERSION_MIN=" 80100"
3
+ PHP_VERSION_MAX=" 80399"
4
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE doctrine/dbal:^4.0"
5
+ COMPOSER_REQUIRE=" $COMPOSER_REQUIRE nette/tester:~2.3"
6
+ DBAL=" doctrine"
You can’t perform that action at this time.
0 commit comments