Re: Specifying schema name with thin JDBC driver

2017-09-13 Thread Dmitriy Setrakyan
Vova, I think we need to abandon this "schema-name = table name" legacy. It is impossible to explain. Also, I would like to understand the current behavior. When I connect through JDBC, which schema am I connecting to? How do I know which schemas are there? D. On Wed, Sep 13, 2017 at 1:19 AM, Vl

Re: Specifying schema name with thin JDBC driver

2017-09-13 Thread Vladimir Ozerov
Valya, Schema name can be specified through Connection.setSchema() method. In the nearest release it would also be possible to specify schema in connection string. E.g. "jdbc:ignite:thin://myHost/*mySchema*". On Mon, Sep 11, 2017 at 10:22 PM, Valentin Kulichenko < valentin.kuliche...@gmail.com> w

Specifying schema name with thin JDBC driver

2017-09-11 Thread Valentin Kulichenko
Guys, Is there a way to specify default schema name when connecting to a cluster using thin JDBC driver? This seems to be possible with other versions of JDBC driver, but not with thin one. This forces users to prefix each table with cache name in all queries, which is not very usable. Do we have