Class CatDriver

All Implemented Interfaces:
Driver

@DriverCapability(prefix="cat", description="Pass-through driver that forwards all calls unchanged", capabilities="passthrough") public class CatDriver extends AbstractProxyDriver
Pass-through driver that forwards all calls unchanged to the target driver.

CatDriver is the simplest PJDBC driver - it does nothing but delegate to the wrapped driver. It serves as:

  • A template for creating new drivers
  • A base for composition when you only need other drivers' behaviors
  • A testing aid to verify proxy infrastructure works correctly

URL format: jdbc:cat:jdbc:target:...

Example:

 jdbc:cat:jdbc:postgresql://localhost/mydb
 
  • Constructor Details

    • CatDriver

      public CatDriver()
  • Method Details