Skip to content

Commit

Permalink
remove redundent import
Browse files Browse the repository at this point in the history
  • Loading branch information
SingingBush committed May 5, 2021
1 parent 4b7d9cb commit a4a2d1f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions source/ddbc/drivers/odbcddbc.d
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,10 @@ version (USE_ODBC)

DataSource createUnitTestODBCDataSource()
{
import std.file;
//import std.file : read;
//cast(string) read("test_connection.txt");

string url = "ddbc:odbc://localhost,1433?user=SA,password=bbk4k77JKH88g54,driver=FreeTDS";//cast(string) read("test_connection.txt");
string url = "ddbc:odbc://localhost,1433?user=SA,password=bbk4k77JKH88g54,driver=FreeTDS";

return createConnectionPool(url);
}
Expand Down

0 comments on commit a4a2d1f

Please sign in to comment.