Review Preinstallation Documentation: Pre-Installation Requirements
Name | Description |
Tds | The TDS version to be used. The default is '8.0'. |
Cachemetadata | When used with prepareSQL=3, this property causes the driver to cache column meta data for SELECT statements. Use with care. The default value is - false. |
Charset | This very important setting determines the byte value to character mapping for CHAR/VARCHAR/TEXT values. It applies to characters from the extended character set (codes 128-255). It doesn't have any effect for NCHAR/NVARCHAR/NTEXT, since these values are stored using Unicode. The default setting is the character set that the server was installed with. |
Language | Applies to characters from the extended character set (codes 128-255). It doesn't have any effect for NCHAR/NVARCHAR/NTEXT, since these values are stored using Unicode. The default setting is the character set that the server was installed with. |
Domain | Specifies the Windows domain in which to authenticate. If present and a domain user name and password are provided, it uses Windows (NTLM) authentication instead of the usual Microsoft SQL Server authentication. This allows non-Windows clients to log in to servers which are only configured to accept Windows authentication. |
Instance | Passes a Named Instance. Microsoft SQL Server can run multiple so-called '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 usual '[host_name]'. You will have to split the two and use the instance name as a property. |
| Application name. No practical use. It's displayed by the Enterprise Manager or the Profiler associated with the connection. |
| Client library name. No practical use. It's displayed by the Enterprise Manager or Profiler associated with the connection. |
Wsid | Workstation ID. No practical use. It's displayed by the Enterprise Manager or the Profiler associated with the connection. The default value is the client host name. |
| Network interface card MAC address. The default value is '000000000000'. |
| Determines whether string parameters are sent to the Microsoft SQL Server database in Unicode or in the default character encoding of the database. The default value is 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. However, 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. The default value is true. |
| This parameter specifies the mechanism used for Prepared Statements. The default is - 3 for Microsoft SQL Server. |
| The network packet size (a multiple of 512). The default is 4096 for TDS 7.0/8.0 and 512 for TDS 4.2/5.0. |
| When true, enables TCP_NODELAY on the socket. The default value is 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. The default value is 32768. |
| The number of statement prepares each connection should cache. A value of 0 will disable statement caching. The default value is 500. |
| The amount of 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. |
| The amount of time to wait (in seconds) for network activity before timing out.Use with care! If a non zero value is supplied, |
| 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 |
Ssl | Specifies if and how to use SSL for secure communication. The default value is off. |
| Controls how many statements are sent to the server in a batch. The actual batch is broken up into pieces off this size that are sent separately.The default value is 0 (unlimited). |
| Instructs the driver to use server side cursors instead of direct selects (AKA firehose cursors) for forward-only read-only result sets. With other types of result sets, server- or client-side cursors are always used. The default value is 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 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. The default value is 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. This ensures good performance even when one statement caches a very large amount of data. The default value is 8. |
| Controls whether large types (IMAGE and TEXT/NTEXT) should be mapped by default (when using getObject()) to LOBs . 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. The default value is true. |
TABLEs
from the back-end DBMS.
Tick this box if you also need to see VIEWs
in the graphical query builder.
This option is redundant when Always include alltypes is ticked.
TABLEs
from the back-end DBMS.
Tick this box if you also need to see SYSTEM TABLEs
, VIEWs
, SYSTEM VIEWs
, SYNONYMs
, GLOBAL TEMPORARYs
, ALIASes
, and/or LOCAL TEMPORARYs
in the graphical query builder.
Note: the TABLE
list will be much longer than when this box is not ticked, and SYSTEM
objects will be sorted to the top of the list, due to typical naming conventions.