JDBC Adapter To TimesTen

Is it possible to use the standard jdbc connection setting page to configure connection to Oracle TimesTen DB ? If yes then please share me the way …

Thanks in advance

What does the TimesTen documentation say is the way to connect to it?

If using java code it is possible to use jdbc with sample url below
String URL = “jdbc:timesten:client:dsn=demoCS”;

You should then be able to use the appropriate JDBC driver and specify the URL as you show.

The configuration of a JDBC connection using the Admin page is really no different than what you would do in code–specify the same settings as you would in code and you should be set to go.