Skip to content

Commit

Permalink
Add doc for SQLServer connection
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Italia authored and Michael Italia committed Jul 31, 2013
1 parent 38c13a7 commit 42ba67c
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@ package edu.chop.cbmi.dataExpress.backends

import java.util.Properties

/**
* Backend for accessing SqlServer databases. This will use a connection properties file that
* should look something like the following:
* {{{driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
jdbcUri=jdbc:sqlserver://server_address:server_port
database=database_name
user=user_name
password=password
}}}
*
*/


class SqlServerBackend(override val connectionProperties : Properties, _sqlDialect : SqlDialect = null,
_driverClassName : String = null)
extends SqlBackend(connectionProperties, if(_sqlDialect==null)SqlServerSqlDialect else _sqlDialect,
Expand Down

0 comments on commit 42ba67c

Please sign in to comment.