Skip to content

Commit da81477

Browse files
committed
Fix issue #190
1 parent 8d7683e commit da81477

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

testconn/dub.sdl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,12 @@ copyright "Copyright (c) 2011-2021 Steve Teale, James W. Oliphant, Simen Endsj
55
authors "Steve Teale" "James W. Oliphant" "Simen Endsjø" "Sönke Ludwig" "Sergey Shamov" "Nick Sabalausky" "Steven Schveighoffer"
66

77
dependency "mysql-native" path="../"
8+
targetType "executable"
9+
10+
configuration "application" {
11+
}
12+
13+
configuration "connpool" {
14+
dependency "vibe-core" version=">=1.16.0"
15+
versions "UseConnPool"
16+
}

testconn/source/app.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void testMySql(string connStr)
3030
version(UseConnPool)
3131
{
3232
import mysql.pool;
33-
auto mdb = new MySqlPool(connStr);
33+
auto mdb = new MySQLPool(connStr);
3434
auto c = mdb.lockConnection();
3535
scope(exit) c.close();
3636
}

0 commit comments

Comments
 (0)