This document describes the changes made to the odbc application.
The format of the xml source for documentation is corrected in order to conform to the DTDs and to pass xmllint without errors.
Own Id: OTP-11193
Introduced functionality for inspection of system and build configuration.
Own Id: OTP-11196
Prevent odbcserver crash if it's executed and supplied incorrect data to stdin. Thanks to Sergei Golovan.
Own Id: OTP-11233
Fix a 64bit related bug in odbcserver. Thanks to Satoshi Kinoshita.
Own Id: OTP-10993
Postscript files no longer needed for the generation of PDF files have been removed.
Own Id: OTP-11016
Fix checking for odbc in standard locations when "with-odbc" flag present. Thanks to Alexey Saltanov.
Own Id: OTP-11126
Fixed calling odbc:param_query/3 and odbc:param_query/4 with unparameterized query string and empty parameters list. Thanks to Danil Onishchenko.
Own Id: OTP-10798
Under Unix enable TCP_NODELAY to disable Nagel's socket algorithm. Thanks to Andy Richards
Impact: Performance gain on Unix systems
Own Id: OTP-10506
Added extended_errors option to ODBC
When enabled, this option alters the return code of ODBC operations that produce errors to include the ODBC error code as well as the native error code, in addition to the ODBC reason field which is returned by default. Thanks to Bernard Duggan.
Own Id: OTP-10603
Where necessary a comment stating encoding has been added to Erlang files. The comment is meant to be removed in Erlang/OTP R17B when UTF-8 becomes the default encoding.
Own Id: OTP-10630
Some examples overflowing the width of PDF pages have been corrected.
Own Id: OTP-10665
Fix aotocommit for Oracle ODBC driver in Linux. Thanks to Danil Onishchenko.
Own Id: OTP-10735
Add support for NULL value in odbc:param_query
Support atom 'null' in odbc:param_query as database NULL value Fix "ODBC: received unexpected info:{tcp_closed, ...}" when connection is terminated. Fix possible access violation with 64bit ODBC. Thanks to Maxim Zrazhevskiy
Own Id: OTP-10206
An ODBC process should exit normally if its client exits with 'shutdown'
There is nothing strange about the client shutting down, so the ODBC process should exit normally to avoid generating a crash report for a non-problem. (Thanks to Magnus Henoch)
Own Id: OTP-9716
Erlang/OTP can now be built using parallel make if you
limit the number of jobs, for instance using '
Own Id: OTP-9451
When using output parameters the internal odbc state was not correctly cleaned causing the next call to param_query to misbehave.
Own Id: OTP-9444
XML files have been corrected.
Own Id: OTP-9550 Aux Id: OTP-9541
Add code to handle old ODBC drivers on solaris. Also adds tests with MySQL.
Own Id: OTP-8407
Odbc now supports SQL_WLONGVARCHAR, thanks to Hanfei Shen for the patch.
Own Id: OTP-8493
Better error messages for connection issues.
Own Id: OTP-9111
Ipv6 is now supported on Windows as well as on UNIX for internal socket communication. (ODBC uses sockets instead of the "Erlang port pipes" as some ODBC-drivers are known to mess with stdin/stdout.)
Loopback address constants are used when connecting the c-side to the erlang-side over local socket API avoiding getaddrinfo problems, and the {ip, loopback} option is added as a listen option on the erlang-side. Also cleaned up the TIME_STAMP contribution.
Own Id: OTP-8917
ODBC now handles the types SQL_WCHAR and SQL_WVARCHAR. Thanks to Juhani Ränkimies. ODBC also has a new connection option to return all strings as binaries and also expect strings to be binaries in the param_query function. These changes provides some unicode support.
Own Id: OTP-7452
Now supports SQL_TYPE_TIMESTAMP on the format {{YY, MM, DD}, {HH, MM, SS}}. Thanks to Juhani Ränkimies.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-8511
The odbc application can now be compiled on FreeBSD. (Thanks to Kenji Rikitake.)
Own Id: OTP-8444
Cross compilation improvements and other build system improvements.
Most notable:
(Thanks to Henrik Riomar for suggestions and testing)
(Thanks to Winston Smith for the AVR32-Linux cross configuration and testing)
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-8323
The documentation is now possible to build in an open source environment after a number of bugs are fixed and some features are added in the documentation build process.
- The arity calculation is updated.
- The module prefix used in the function names for bif's are removed in the generated links so the links will look like "http://www.erlang.org/doc/man/erlang.html#append_element-2" instead of "http://www.erlang.org/doc/man/erlang.html#erlang:append_element-2".
- Enhanced the menu positioning in the html documentation when a new page is loaded.
- A number of corrections in the generation of man pages (thanks to Sergei Golovan)
- The legal notice is taken from the xml book file so OTP's build process can be used for non OTP applications.
Own Id: OTP-8343
odbc:param_query() now properly indicates if nothing was updated. (Thanks to Paul Oliver.)
Own Id: OTP-8347
The ODBC test cases are failing for linux and MacOSX There is problems with setting of options on odbc-connections, and the odbcserver just exits with an exit code.
Own Id: OTP-8407
Applied a patch from Andrew Thompson, which fixes some error cases.
Own Id: OTP-8291
The documentation is now built with open source tools (xsltproc and fop) that exists on most platforms. One visible change is that the frames are removed.
Own Id: OTP-8250
A missing return statement in a non void function has been fixed in
Own Id: OTP-7978
param_query now handles the in_or_out parameter correctly.
Own Id: OTP-7720
Changed the internal socket use so that it will become more robust to non-functional ipv6 and fallback on ipv4.
Own Id: OTP-7721
Configure update for mac.
Own Id: OTP-7418
describe_table/[2,3] on mac gives an empty result
Own Id: OTP-7478
SQLINTEGERs where not retrieved correctly on 64 bit platforms as an SQLINTEGER is defined to be a 32 bit integer and not a true long.
Own Id: OTP-7297
Now supports out and input parameters for stored procedures.
Own Id: OTP-7019
ODBC is now prebuilt for SLES10 in the commercial build and parameters to error_logger:error_report/1 has been corrected.
Own Id: OTP-7294
Parametrized queries will now work correctly when using Erlang R12B-2 on Linux (SuSE 10.3), MySQL 5.0.45, myodbc 3.51 and unixODBC 2.2.12. Earlier it could happen that an error was returned even though data was correctly inserted into the database.
Own Id: OTP-7307
SQLINTEGERs are not retrieved correctly on 64 bit platforms as an SQLINTEGER seems to be defined to be a 32 bit integer and not a true long.
Own Id: OTP-7297
Enhanced configure to among other things work better when there is a library found but it is not usable e.i. 32 bit library in 64 bit build.
Own Id: OTP-7062
The odbc application now has to be explicitly started and stopped e.i. it will not automatically be started as a temporary application as it did before. Although a practical feature when testing things in the shell, it is not desirable that people take advantage of this and not start the odbc application in a correct way in their products. Added functions to the odbc API that calls application:start/stop.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-6984
Changed Makefile.in so that odbc is not disabled on 64-bits architectures. It was earlier disabled due to that it had never been tested in that environment.
Own Id: OTP-6987
Minor Makefile changes.
Own Id: OTP-6689
When using a parameterized query on a windows platform the data was inserted in the table on the sql-server but the connection was lost, this seems to be due to a compiler error that has now been worked around, but further investigation is ongoing to verify that that really was the problem.
Own Id: OTP-5504
param_query/[3,4] could return an unexpected row count for some drivers, in this case a postgresdriver.
Own Id: OTP-6363
pthread header and library mismatch on linux systems (at least some SuSE and Debian) with both NPTL and Linuxthreads libraries installed.
Own Id: OTP-5981
Changed configure to find odbc in /usr/local too
Own Id: OTP-5966
When using a parameterized query on a windows platform the data is inserted in the table on the sql-server but for some reason the connection is lost.
Own Id: OTP-5504
Fixed bug, reported error when deleting nonexisting rows, thanks to Laura M. Castro for reporting this.
Own Id: OTP-5759
When using a parameterized query on a windows platform the data is inserted in the table on the sql-server but for some reason the connection is lost.
Own Id: OTP-5504
/usr was added as a default place for configure to look for the odbc library on unix/linux platforms.
Own Id: OTP-5501
A legacy timer in the c port program was set to infinity. All timeout handling is handled by the erlang code and a extra timeout in the c code will just lead to confusion if it is released.
Own Id: OTP-5502
When using a parameterized query on a windows platform the data is inserted in the table on the sql-server but for some reason the connection is lost.
Own Id: OTP-5504
odbc now uses configure as all "normal" applications instead of providing special Makefiles for each commercial supported platform. This also makes it easier to build odbc on non supported platforms.
Own Id: OTP-5437
When issuing a batch of queries and one of the queries fail the odbc port program crashed. This is no longer the case.
Own Id: OTP-5176
Added use of the socket option TCP_NODELAY, as in the case of Erlang odbc the Nagel algorithm will never help, but always cause an unnecessary delay.
Own Id: OTP-5100
Erlang ODBC now handles batches of queries and can return multiple result sets.
Own Id: OTP-4642 Aux Id: seq7766
The old interface that became deprecated in odbc 1.0 has now been removed.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-4794
The port program now sends different exit codes to Erlang when it exits due to failure. This instead of sending the same exit code and then trying to write to stderr. Erlang encodes the exit code to a descriptive atom.
Own Id: OTP-4813
Erlang ODBC now supports parameterized queries for the most common ODBC data types.
Own Id: OTP-4821
SQL_NUMERIC and SQL_DECIMAL columns are converted to integer and float values if possible.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-4826
Result sets are now by default returned as a list of tuples which is the most intuitive and useful mapping. To keep some degree of backwards compatibility you may turn this off to get the old behavior that result sets are returned as lists of lists. However do not use this in new code as it is considered a deprecated feature that eventually will disappear.
*** POTENTIAL INCOMPATIBILITY ***
Own Id: OTP-4850
The odbc implementation now mostly uses sockets to communicate between the c and the erlang process, this is to avoid a lot of problems arising from different odbc-drivers doing strange things that disturbed the port-program communication mechanism.
Own Id: OTP-4875