<docbook><section><title>HowDoICreateAJDBCType1URLToConnectToSybaseASA</title><para> How do I create a JDBC Type 1 URL to connect to Sybase ASA?    </para><para>Sybase Type 1 JDBC connection URLs take the following format:   </para><programlisting>jdbc:openlink://ODBC[/DSN][/UID][/PWD][/READONLY]
</programlisting> Here is a description of each of the URL parameters:  	 	* /DSN - Local ODBC Data Source Name that connects to a Sybase database 	 	* /UID - Sybase database username 	 	* /PWD - Sybase database password  	 	* /READONLY - Read-write or read-only session mode 	 Here is a sample Sybase Type 1  connection URL:  
<programlisting>
jdbc:openlink://ODBC/DSN=Local Sybase Sample DSN/UID=sa/PWD=sa
</programlisting></section></docbook>