1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- This document was generated using DocBuilder 3.3.3 -->
<HTML>
<HEAD>
<TITLE>Older ODBC Release Notes
</TITLE>
<SCRIPT type="text/javascript" src="../../../../doc/erlresolvelinks.js">
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF00FF"
ALINK="#FF0000">
<CENTER>
<A HREF="http://www.erlang.se"><IMG BORDER=0 ALT="[Ericsson AB]" SRC="min_head.gif"></A>
</CENTER>
<A NAME="1"><!-- Empty --></A>
<H2>1 Older ODBC Release Notes
</H2>
<A NAME="1.1"><!-- Empty --></A>
<H3>1.1 odbc 1.0.6</H3>
<A NAME="1.1.1"><!-- Empty --></A>
<H4>1.1.1 Improvements and New Features</H4>
<P>
<UL>
<LI>
Error handling has been enhanced and better documented
<BR>
Own Id: OTP-4661
<BR>
</LI>
</UL>
<A NAME="1.2"><!-- Empty --></A>
<H3>1.2 odbc 1.0.5</H3>
<A NAME="1.2.1"><!-- Empty --></A>
<H4>1.2.1 Fixed Bugs and Malfunctions</H4>
<P>
<UL>
<LI>
Some error messages originating from the sql-driver where
corrupted so that odbc only returned the end of the error
message. This has now been fixed.
<BR>
Own Id: OTP-4636 Aux Id: seq7766
<BR>
</LI>
</UL>
<A NAME="1.2.2"><!-- Empty --></A>
<H4>1.2.2 Improvements and New Features</H4>
<P>
<UL>
<LI>
The erlang odbc process will now die normally if a
connection can not be established. No connection no
process it is expected. And as the client has already
received the error message that would be the reason with
which the erlang process would be stopped, the supervisor
report will be superfluous. Naturally you may still get
supervisor reports if the erlang process is stopped for
any other reason than the above.
<BR>
Own Id: OTP-4639 Aux Id: seq7766
<BR>
</LI>
</UL>
<A NAME="1.3"><!-- Empty --></A>
<H3>1.3 odbc 1.0.4</H3>
<A NAME="1.3.1"><!-- Empty --></A>
<H4>1.3.1 Fixed Bugs and Malfunctions</H4>
<P>
<UL>
<LI>
API function commit/3 is now exported.
<BR>
Own Id: OTP-4593 Aux Id: seq7766
<BR>
</LI>
<LI>
If an ODBC API function times out it will cause the
client to exit with reason timeout. If this exit was
caught and the client continued using the connection, the
next request could get the answer meant for the
previously timed out request, this is no longer the case.
<BR>
Own Id: OTP-4606 Aux Id: seq7766
<BR>
</LI>
</UL>
<A NAME="1.3.2"><!-- Empty --></A>
<H4>1.3.2 Improvements and New Features</H4>
<P>
<UL>
<LI>
Improved error messages so that the implementation not
shall shine through.
<BR>
Added possibility to let a connection return rows as
tuples instead of lists.
<BR>
Own Id: OTP-4605 Aux Id: seq7766
<BR>
</LI>
<LI>
Scrollable cursors are nice but causes some overhead. For
some connections speed might be more important than
flexible data access and then you can disable scrollable
cursor for a connection, limiting the API but gaining
speed.
<BR>
Own Id: OTP-4624
<BR>
</LI>
</UL>
<A NAME="1.4"><!-- Empty --></A>
<H3>1.4 odbc 1.0</H3>
<A NAME="1.4.1"><!-- Empty --></A>
<H4>1.4.1 Fixed Bugs and Malfunctions</H4>
<P>
<UL>
<LI>
API function commit/3 is now exported.
<BR>
Own Id: OTP-4593 Aux Id: seq7766
<BR>
</LI>
<LI>
If an ODBC API function times out it will cause the
client to exit with reason timeout. If this exit was
caught and the client continued using the connection, the
next request could get the answer meant for the
previously timed out request, this is no longer the case.
<BR>
Own Id: OTP-4606 Aux Id: seq7766
<BR>
</LI>
<LI>
Some error messages originating from the sql-driver where
corrupted so that odbc only returned the end of the error
message. This has now been fixed.
<BR>
Own Id: OTP-4636 Aux Id: seq7766
<BR>
</LI>
</UL>
<A NAME="1.4.2"><!-- Empty --></A>
<H4>1.4.2 Improvements and New Features</H4>
<P>
<UL>
<LI>
The Erlang ODBC application consists of both Erlang and C
code. The C code is delivered as a precompiled executable
for windows and solaris. For the purpose of recompilation
or compiling on some other platform there is a Makefile
included.
<BR>
Own Id: OTP-4193 Aux Id: seq7190
<BR>
</LI>
<LI>
Expensive constructs such as lists:flatten/1, double
buffering and string compare has been replaced by more
efficient constructs or when possible totally eliminated.
<BR>
Own Id: OTP-4362
<BR>
</LI>
<LI>
New API that has an Erlang/OTP touch and feel instead of
being a C-interface with Erlang syntax. The old interface
is deprecated and will be removed in release R10.
<BR>
*** POTENTIAL INCOMPATIBILITY ***
<BR>
Own Id: OTP-4498
<BR>
</LI>
<LI>
API functions that became deprecated in version 0.9.1 has
been removed.
<BR>
*** POTENTIAL INCOMPATIBILITY ***
<BR>
Own Id: OTP-4499
<BR>
</LI>
<LI>
Improved error messages so that the implementation not
shall shine through.
<BR>
Added possibility to let a connection return rows as
tuples instead of lists.
<BR>
Own Id: OTP-4605 Aux Id: seq7766
<BR>
</LI>
<LI>
Scrollable cursors are nice but causes some overhead. For
some connections speed might be more important than
flexible data access and then you can disable scrollable
cursor for a connection, limiting the API but gaining
speed.
<BR>
Own Id: OTP-4624
<BR>
</LI>
<LI>
The erlang odbc process will now die normally if a
connection can not be established. No connection no
process it is expected. And as the client has already
received the error message that would be the reason with
which the erlang process would be stopped, the supervisor
report will be superfluous. Naturally you may still get
supervisor reports if the erlang process is stopped for
any other reason than the above.
<BR>
Own Id: OTP-4639 Aux Id: seq7766
<BR>
</LI>
<LI>
Error handling has been enhanced and better documented
<BR>
Own Id: OTP-4661
<BR>
</LI>
</UL>
<A NAME="1.5"><!-- Empty --></A>
<H3>1.5 odbc 0.9.3</H3>
<A NAME="1.5.1"><!-- Empty --></A>
<H4>1.5.1 Fixed Bugs and Malfunctions</H4>
<P>
<UL>
<LI>
Erlang ODBC application can handle floating point number
and has been improved with null value handling. The error
messages has been improved with STATE-information from SQL
function SQLGetDiagRec.
<BR>
Own Id: OTP-4192 Aux Id: seq7195
<BR>
</LI>
<LI>
sqlCloseCursor have been replaced with sqlCloseHandle <BR>
(*** POTENTIAL INCOMPATIBILITY ***) <BR>
Aux Id: seq7283 <BR>
</LI>
</UL>
<CENTER>
<HR>
<SMALL>
Copyright © 1991-2006
<A HREF="http://www.erlang.se">Ericsson AB</A><BR>
</SMALL>
</CENTER>
</BODY>
</HTML>
|