Please be aware that the content in SAP SQL Anywhere Forum will be migrated to the SAP Community in June and this forum will be retired.

ODBC Driver - 12.0.1.3817

SQL Anywhere Server - 11.0.1.2837

Just wanting to know if there would be any cause for concern using an ODBC Driver from version 12 with a version 11 database?

The statements that would be executed are very simple CRUD statements. E.g. select x from y where field = n, insert into x (...) values (...).

asked 14 Jan '13, 16:43

Nick%20Brooks's gravatar image

Nick Brooks
668212537
accept rate: 33%

edited 14 Jan '13, 16:43


From the v11 docs:

Compatibility with existing software
SQL Anywhere 11 database servers support connections from client applications using software from version 6.0.0 or later. Version 5 and earlier clients cannot connect to a version 11 database server.

AFAIK, the same is true for all other versions, too, and "or later" does include newer versions, as well.

So the general answer should be "yes".

The SQL syntax is usually no concern for the client-side at all, as it is simply handed over to the database server. Note: I'm deliberately saying "usually" as there are some client-side aspects that may have influence - cf. the fact that clients like DBISQL/dbisqlc do some parsing on statements themselves. However, I'm not aware that the ODBC driver does parse itself.

We have often used servers and clients of different versions without problems. Apparently, some advanced features of newer clients (say, connection pooling in v12) might not work with an older server, but that doesn't seem a drawback, methinks...

permanent link

answered 15 Jan '13, 04:17

Volker%20Barth's gravatar image

Volker Barth
40.2k361549822
accept rate: 34%

Thanks Volker. I spent a while searching the docs but was focusing more from the odbc driver side.

(15 Jan '13, 15:53) Nick Brooks
Your answer
toggle preview

Follow this question

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Markdown Basics

  • *italic* or _italic_
  • **bold** or __bold__
  • link:[text](http://url.com/ "title")
  • image?![alt text](/path/img.jpg "title")
  • numbered list: 1. Foo 2. Bar
  • to add a line break simply add two spaces to where you would like the new line to be.
  • basic HTML tags are also supported

Question tags:

×438
×145
×143
×9

question asked: 14 Jan '13, 16:43

question was seen: 1,993 times

last updated: 15 Jan '13, 15:53