About 18,500,000 results
Open links in new tab
  1. communication - How does jdbc work - Stack Overflow

    Apr 26, 2010 · From Wikipedia: JDBC is an API for the Java programming language that defines how a client may access a database. It provides methods for querying and updating data in a database. …

  2. Setting Network Timeout for JDBC connection - Stack Overflow

    Sep 16, 2013 · Apparently there is also a JDBC driver property for Oracle that can modify socket timeouts. You can also try using this Oracle JDBC property to set the socket timeout if you are using …

  3. JDBC connection to MSSQL server in windows authentication mode

    May 11, 2013 · com.microsoft.sqlserver.jdbc.SQLServerException: The TCP/IP connection to the host localhost, port 1433 has failed. Error: "Connection refused: connect. Verify the connection properties. …

  4. jdbc - How do I manually configure a DataSource in Java ... - Stack ...

    Mar 10, 2017 · 1) documentation for com.mysql.jdbc regarding a DataSource that I can understand, or 2) gives an example to follow for what the tutorial's code should be, for any database.

  5. URL string format for connecting to Oracle database with JDBC

    Jun 28, 2009 · I highly recommend to use the new format! The old format connects to one specific database instance and one specific database instance only. If you chose to create a database cluster …

  6. java - How to get the insert ID in JDBC? - Stack Overflow

    Dec 16, 2009 · I want to INSERT a record in a database (which is Microsoft SQL Server in my case) using JDBC in Java. At the same time, I want to obtain the insert ID. How can I achieve this using …

  7. JDBC connection string with instance name and domain

    Nov 26, 2016 · There is no domain= property defined for the connection URL for Microsoft's JDBC driver for SQL Server. Logging in to the SQL Server instance with Windows domain credentials is done …

  8. java - ODBC vs JDBC performance - Stack Overflow

    Mar 3, 2016 · On Windows systems that support both ODBC and JDBC drivers, pure JDBC drivers and the native ODBC interface provide better connectivity and performance than the JDBC/ODBC bridge.

  9. How to connect to Oracle using Service Name instead of SID

    300 I have a Java application that uses JDBC (via JPA) that was connecting to a development database using hostname, port and Oracle SID, like this: …

  10. What is the MySQL JDBC driver connection string?

    Sep 22, 2009 · I am new to JDBC and I am trying to make a connection to a MySQL database. I am using Connector/J driver, but I cant find the JDBC connection string for my Class.forName() method.