2.12. Create a Connection to a VDB Using the Data Source Class


Prerequisites

  • The client application must have the JBoss Data Virtualization EAP_HOME/dataVirtualization/jdbc/teiid-VERSION-redhat-N-jdbc.jar JAR file in its classpath. (If the application is running on the same application server as the JBoss Data Virtualization instance to which the connection is desired, then this will already be the case.)
  • JBoss Data Virtualization must be installed and running, with the relevant virtual databases (VDBs) deployed.

Procedure 2.3. Create a Connection to a VDB Using the Data Source Class

  • Create a Connection Object

    Create a org.teiid.jdbc.TeiidDataSource object, set the required properties, and use the TeiidDataSource.getConnection() method to obtain a Connection object. For example:
    public class TeiidClient 
    {
       public Connection getConnection(String user, String password) throws Exception 
       {
          TeiidDataSource ds = new TeiidDataSource();
          ds.setUser(user);
          ds.setPassword(password);
          ds.setServerName("localhost");
          ds.setPortNumber(31000);
          ds.setDatabaseName("myVDB");
          return ds.getConnection();
       }
    }
Red Hat logoGithubredditYoutubeTwitter

Learn

Try, buy, & sell

Communities

About Red Hat Documentation

We help Red Hat users innovate and achieve their goals with our products and services with content they can trust. Explore our recent updates.

Making open source more inclusive

Red Hat is committed to replacing problematic language in our code, documentation, and web properties. For more details, see the Red Hat Blog.

About Red Hat

We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.

Theme

© 2026 Red Hat
Back to top