Review Preinstallation Documentation: Pre-Installation Requirements
Attribute Name | Description |
---|---|
| The TDS version to be used. (default - '8.0') |
| When used with prepareSQL=3, causes the driver to cache column meta data for SELECT statements. Use with care. (default - false) |
| Very important setting, determines the byte-value-to-character mapping for CHAR/VARCHAR/TEXT values. Applies for characters from the extended set (codes 128-255). Has no effect on NCHAR/NVARCHAR/NTEXT values since these are stored using Unicode. (default - the character set the server was installed with) |
| ToBeDone? |
| Specifies the Windows domain in which to authenticate. If present, Windows (NTLM) authentication will be used instead of SQL Server authentication (i.e., the user and password provided are the domain user and password). This allows non-Windows clients to log in to servers which are only configured to accept Windows authentication. |
| Named instance. SQL Server can run multiple 'named instances' (i.e., different server instances, running on different TCP ports) on the same machine. When using Microsoft tools, selecting one of these instances is made by using '[host_name]\[instance_name]' instead of the simple '[host_name]'. You must split the compound identifier, and use the instance name as a property. |
| Application name. No practical use. It's displayed by Enterprise Manager or Profiler associated with the connection. |
| Client library name. No practical use. It's displayed by Enterprise Manager or Profiler associated with the connection. |
| Workstation ID. No practical use. it's displayed by Enterprise Manager or Profiler associated with the connection. (default - the client host name) |
| Network interface card MAC address. (default - '000000000000') |
| Determines whether string parameters are sent to the SQL Server database in Unicode or in the default character encoding of the database. (default - true) |
| If true, only the last update count will be returned by executeUpdate(). This is useful in case you are updating or inserting into tables that have triggers (such as replicated tables); there's no way to make the difference between an update count returned by a trigger and the actual update count, but the actual update count is always the last, as the triggers execute first. If false, all update counts are returned; use getMoreResults() to loop through them. (default - true) |
| This parameter specifies the mechanism used for Prepared Statements. (default - 3 for SQL Server) |
| The network packet size (a multiple of 512). (default - 4096 when TDS is set to 7.0 or greater (Microsoft SQL Server 7.x and later); 512 when TDS is set to 4.2 or 5.0 (any Sybase version or Microsoft SQL Server 6.x and earlier) |
| true to enable TCP_NODELAY on the socket; false to disable it. (default - true) |
| The amount of LOB data to buffer in memory before caching to disk. The value is in bytes for BLOB data and chars for CLOB data. (default - 32768) |
| The number of statement prepares each connection should cache. A value of 0 will disable statement caching. (default - 500) |
| The time to wait (in seconds) for a successful connection before timing out. If namedPipe is true and loginTimeout is non-zero, the value of loginTimeout is used for the retry timeout when 'All pipe instances are busy' error messages are received while attempting to connect to the server. If namedPipe is true and loginTimeout is zero (the default), a value of 20 seconds is used for the named pipe retry timeout. (default - 0) |
| The time to wait (in seconds) for network activity before timing out. Use with care! If a non-zero value is supplied, this must be greater than the maximum time that the server will take to answer any query. Once the timeout value is exceeded, the network connection will be closed. This parameter may be useful for detecting dead network connections in a pooled environment.(default - 0) |
| When set to true, named pipe communication is used to connect to the database instead of TCP/IP sockets. When the os.name system property starts with 'windows' (case-insensitive), named pipes (both local and remote) are accessed through the Windows filesystem by opening a |
| Specifies if and how to use SSL for secure communication. (default - off) |
| Controls how many statements are sent to the server in a batch. The actual batch is broken up into pieces this large that are sent separately.(default - 0[unlimited] for SQL Server) |
| Instructs the driver to use server side cursors instead of direct selects (also known as "firehose cursors") for forward-only, read-only result sets. (With other types of result sets, server- or client-side cursors are always used.) (default - false) |
| Controls the global buffer memory limit for all connections (in kilobytes). When the amount of buffered server response packets reaches this limit, additional packets are buffered to disk; there is however one exception: each Statement gets to buffer at least '[bufferMinPackets]' to memory before this limit is enforced. This means that this limit can and will usually be exceeded. (default - 1024) |
| Controls the minimum number of packets per statement to buffer to memory. Each Statement will buffer at least this many packets before being forced to use a temporary file if the [bufferMaxMemory] is reached, to ensure good performance even when one Statement caches a very large amount of data. (default - 8) |
| Controls whether large types (IMAGE and TEXT/NTEXT ) should be mapped to LOB s by default when using getObject() . The default type constant returned is also controlled by this property: Types.BLOB for IMAGE and Types.CLOB for TEXT/NTEXT when true ; Types.LONGVARBINARY for IMAGE and Types.LONGVARCHAR for TEXT/NTEXT when false . (default - true ) |