Esto es sólo para expertos en JDBC
CONSIDERACIONES PREVIAS A LA PREGUNTA:
Cuando se desea, por ejemplo, realizar una conexión con una base de datos remota SQL Server, mediante Visual Basic, se puede usar las instrucciones que siguen a continuación, aplicándole los ajustes para cada caso en particular (quitar o agregar elementos):
Dim Cnn1 As ADODB.Connection
Dim ConnStr As String
ConnStr = "Provider=MSDASQL.1;driver={SQL Server};Password=MiPass;User ID=MiUserID;Connect Timeout=60; SERVER=200.168.0.1;UID= MiUserID;APP=Microsoft Development Environment;DATABASE=MiBaseDeDatos;
Set Cnn1 = New ADODB.Connection
Cnn1.Open ConnStr
En la documentación: “Getting Started with the JDBC API ” que se instala con los paquetes de java 1.4.2_01 , disponibles en htt://java.sun.com, me dicen lo siguiente:
The following code exemplifies opening a connection to a database located at the URL jdbc:odbc:wombat with a user ID of oboy and 12Java as the password:
String url = "jdbc:odbc:wombat";
Connection con = DriverManager.getConnection(url, "oboy", "12Java");
Luego, más adelante me indican:
If the data source is to be accessed over the Internet, for example, the network address should be included in the JDBC URL as part of the subname and should adhere to the following standard URL naming convention:
//hostname:port/subsubname
Supposing that dbnet is a protocol for connecting to a host on the Internet, a JDBC URL might look like this:
jdbc:dbnet://wombat:356/fred
También agregan, finalmente:
jdbc:odbc:<data-source-name>[;<attribute-name>=<attribute-value>]*
Thus all of the following are valid jdbc:odbc names:
jdbc:odbc:qeor7
jdbc:odbc:wombat
jdbc:odbc:wombat;CacheSize=20;ExtensionCase=LOWER
jdbc:odbc:qeora;UID=kgh;PWD=fooey
-------------------------------------------------------------------------
AQUI LES VA LA PREGUNTA:
¿Cual sería entonces la forma correcta para conectarme con MiBaseDeDatos, usando algún parámetro parecido (no igual) a los que doy en mi ejemplo?
¿Se puede o no?
NOTAS:
1.- Se supone que estoy tratando con los que tiene experiencia en esto.
2.- Para no llenar este foro con datos inútiles, agradezco no responder nada que no tenga que ver con este tema.
------------
Gracias.