I copied the code about connecting mysql but the compiler doesn't found "import org.apache.commons.dbcp.*;"
I put the path of dbcp into path environment variable but nothing change.
This is my code:
/////////////////////////////////////////////
////////////////////////////////////////////
package jforex;
import com.dukascopy.api.*;
import java.util.*;
import java.sql.*;
import javax.sql.*;
import org.apache.commons.dbcp.*;
/**
* commons-pool can be downloaded here -
https://commons.apache.org/pool/ * commons-dbcp can be downloaded here -
https://commons.apache.org/dbcp/ * mysql java connection can be downloaded here -
https://dev.mysql.com/downloads/connector/j/5.1.html */
@RequiresFullAccess
@Library("c:/Users/toni/JForex/commons-pool2-2.4.2-bin/commons-pool2-2.4.2/commons-pool2-2.4.2.jar;c:/Users/toni/JForex/commons-dbcp2-2.1.1-bin/commons-dbcp2-2.1.1/commons-dbcp2-2.1.1.jar;c:/Users/toni/JForex/mysql-connector-java-5.1.40/mysql-connector-java-5.1.40/mysql-connector-java-5.1.40-bin.jar")
public class TestMySQLAccess implements IStrategy {
/////////////////////////////////////////////
//////////////////////////////////////////////
Any suggestions?