public sqlj.runtime.profile.ConnectedProfile | getProfile(java.sql.Connection conn, sqlj.runtime.profile.Profile baseProfile)Returns a connected profile for the baseProfile on the given jdbc
connection. The connected profile makes calls to PLSQL stored
procedures, as described by the underlying custom profile data.
Note that we reuse the "default" connected profile implementation,
creating it with a custom profile data object rather than the
default profile data.
System.out.println("creating plsql custom profile");
return ProfileImpl.getDefaultProfile(conn, m_customData);
|