If I am given the JDBC and ODBC from a site and they aren't giving me what database in the backend they're using (MySQL, PostgreSQL, SQLServer). Is there a way to know about this information?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could manually compare against the examples in ODBC connection strings or JDBC connection strings Or you could try some queries against standard tables in each RDBMS type. E.g. select 'x' from dual; with a result indicating (but not proving) that its an Oracle DB. |
|||
|
|