On 9/7/06, krishna <kri...@gm...> wrote:
>
> Hi
> The the JDBC URL that you I am using is
> jdbc:microsoft:<aliasname>:\\<SQL-server-name>\<database-name>
>
> Driver class name is - microsft NS sql server jdbc driver
I don't recognize that driver class name. In the SQL-Server 2005 version
of the JDBC driver it looks like:
com.microsoft.sqlserver.jdbc.SQLServerDriver
The URL look for the SQL-Server 2005 version of the JDBC driver looks like:
jdbc:sqlserver://<SERVER>:<PORT>/database=<DATABASE_NAME>
At the very least, I believe your backslashes ("\") should be forward
slashes ("/")
You probably want to go and get the latest SQL-Server 2005 version of the
JDBC driver from Microsoft. It seemed compatible with SQL-Server 2000
when I had tested it in the past.
Rob
|