Tony,

> connPool[i]=DriverManager.getConnection("jdbc:mysql://"+dbServer+"?user="+db
> 
> Login); 
> As for connecting with a non-empty password, I don't know
> how to do that. 
> If you figure it out, please let me know.
>

Passing the userid and password separately works fine for me:

   connection = DriverManager.getConnection(connectionURL,
    "userid", "password");
    

Dave

Dave Harms
[EMAIL PROTECTED]

Reply via email to