-
Notifications
You must be signed in to change notification settings - Fork 0
/
FAQ
1278 lines (900 loc) · 46.8 KB
/
FAQ
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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
=head1 NAME
DBD::ODBC::FAQ - Frequently Asked Questions for DBD::ODBC
=head1 SYNOPSIS
perldoc DBD::ODBC::FAQ
=head1 VERSION
($Revision$)
=head1 QUESTIONS
=head2 How do I read more than N characters from a Memo | BLOB | LONG field?
See LongReadLen in the DBI docs.
Example:
$dbh->{LongReadLen} = 20000;
$sth = $dbh->prepare("select long_col from big_table");
$sth->execute;
etc
=head2 What is DBD::ODBC?
=head2 Why can't I connect?
=head2 Do I need an ODBC driver?
=head2 What is the ODBC driver manager?
These, general questions lead to needing definitions.
=over 4
=item ODBC Driver
The ODBC Driver is the driver that the ODBC manager uses to connect
and interact with the RDBMS. You B<DEFINITELY> need this to connect to
any database. For Win32, they are plentiful and installed with many
applications. For Linux/Unix, you can find a fairly comprehensive list
at L<http://www.unixodbc.org/drivers.html>.
=item ODBC Driver Manager
The ODBC driver manager is the interface between an ODBC application
(DBD::ODBC in this case) and the ODBC driver. The driver manager
principally provides the ODBC API so ODBC applications may link with a
single shared object (or dll) and be able to talk to a range of ODBC
drivers. At run time the application provides a connection string
which defines the ODBC data source it wants to connect to and this in
turn defines the ODBC driver which will handle this data source. The
driver manager loads the requested ODBC driver and passes all ODBC API
calls on to the driver. In this way, an ODBC application can be built
and distributed without knowing which ODBC driver it will be using.
However, this is a rather simplistic description of what the driver
manager does. The ODBC driver manager also:
* Controls a repository of installed ODBC drivers (on UNIX this is the
file odbcinst.ini).
* Controls a repository of defined ODBC data sources (on UNIX these are
the files odbc.ini and .odbc.ini).
* Provides the ODBC driver APIs (SQLGetPrivateProfileString and
SQLWritePrivateProfileString) to read and write ODBC data source
attributes.
* Handles ConfigDSN which the driver exports to configure data
sources.
* Provides APIs to install and uninstall drivers (SQLInstallDriver).
* Maps ODBC versions e.g. so an ODBC 2.0 application can work with an
ODBC 3.0 driver and vice versa.
* Maps ODBC states between different versions of ODBC.
* Provides a cursor library for drivers which only support
forward-only cursors.
* Provides SQLDataSources and SQLDrivers so an application can find
out what ODBC drivers are installed and what ODBC data sources are
defined.
* Provides an ODBC administrator which driver writers can use to
install ODBC drivers and users can use to define ODBC data sources.
The ODBC Driver Manager is the piece of software which interacts with
the drivers for the application. It "hides" some of the differences
between the drivers (i.e. if a function call is not supported by a
driver, it 'hides' that and informs the application that the call is
not supported. DBD::ODBC needs this to talk to drivers.
Under Win32, you usually get the ODBC Driver Manager as part of the
OS. Under Unix/Linux you may have to find and build the driver
manager yourself. The two main driver managers for Unix are unixODBC
(L<http://www.unixodbc.org>) and iODBC (L<http://www.iodbc.org>).
B<It is strongly advised you get an ODBC Driver Manager before trying to
build DBD::ODBC unless you intend linking DBD::ODBC directly with your
driver.>
For a reasonable description of ODBC on Unix/Linux see
L<http://www.easysoft.com/developer/interfaces/odbc/linux.html>
=item DBD::ODBC
DBD::ODBC uses the driver manager to talk to the ODBC driver(s) on
your system. You need both a driver manager and driver installed and
tested before working with DBD::ODBC. You need to have a DSN (see
below) configured and B<TESTED> before being able to test DBD::ODBC.
=item DSN (Data Source Name)
The DSN is a way of referring to a particular driver and database by
any name you wish. The DSN is usually a key to a list of attributes
the ODBC driver needs to connect to the database (e.g. ip address and
port) but there is always a key which names the driver so the driver
manager knows which driver to use with which data source. Do no
confuse DSNs with ODBC connection strings or DBI's "$data_source" (the
first argument to L<DBI/connect>.
The $data_source argument to DBI is composed of 'dbi:DRIVER:something_else'
where DRIVER is the name of the DBD driver you want to use (ODBC of
course for DBD::ODBC). The "something_else" for DBD::ODBC can be a DSN
name or it can be a normal ODBC connection string.
An ODBC connection string consists of attribute/value pairs separated
with semicolons (;). You can replace "something_else" above with a
normal ODBC connection string but as a special case for DBD::ODBC you can
just use the DSN name without the usual ODBC connection string prefix
of "DSN=dsn_name".
e.g.
=over
=item dbi:ODBC:DSN=fred
ODBC connection string using fred DSN
=item dbi:ODBC:fred
Same as above (a special case).
=item dbi:ODBC:Driver={blah blah driver};Host=1.2.3.4;Port=1000;
This is known as a DSN-less connection string for obvious reasons.
=back
=back
=head2 Where do I get an ODBC driver manager for Unix/Linux?
DBD::ODBC used to come bundled with a driver manager but this became
inconvenient when the driver manager was updated.
The two main ODBC Driver Managers for Unix are unixODBC (L<http://www.unixodbc/org>) and iODBC (L<http://www.iodbc.org>).
If you are running a packaged Linux like RedHat, Ubuntu, Fedora, Suse
etc etc you'll usually find it packaged with unixODBC and using the
package manager to install it is fairly straight forward. However,
make sure that if the driver manager is split into multiple packages
you install the development package as well as that contains the C
header files required by DBD::ODBC.
If you cannot find an ODBC Driver Manager package for your OS you can
download the source tar files for either of the driver managers above
and build it yourself.
=head2 How do I access a MS SQL Server database from Linux/UNIX?
You have loads of choices (in no particular order):
* using DBI::ProxyServer or DBD::Gofer. You'll need the former if you
use transactions.
* using a commercial ODBC Driver or bridge like the ones from Easysoft
or Openlink.
* using FreeTDS an open source TDS library which includes an ODBC Driver.
* using DBD::Sybase and Sybase libraries.
=head2 How do I access a MS-Access database from Linux?
There are basically three choices:
* a commercial MS Access ODBC Driver like the one from Easysoft.
* a commercial ODBC Bridge like the ones from Easysoft or OpenLink.
* using mdbtools although as of writing it has not been updated since
June 2004, only provides read access and seems to be a little buggy.
=head2 Almost all of my tests for DBD::ODBC fail. They complain about not being able to connect or the DSN is not found.
Please, please test your configuration of ODBC and driver before
trying to test DBD::ODBC. Most of the time, this stems from the fact
that the DSN (or ODBC) is not configured properly. unixODBC comes with
a small program isql and iODBC comes with odbctest and you should use
these to test your ODBC configuration is working properly first.
=head2 I'm attempting to bind a Long Var char (or other specific type)
and the binding is not working.
The code I'm using is below:
$sth->bind_param(1, $str, $DBI::SQL_LONGVARCHAR);
^^^
The problem is that DBI::SQL_LONGVARCHAR is not the same as
$DBI::SQL_LONGVARCHAR and that $DBI::SQL_LONGVARCHAR is an error!
It should be:
$sth->bind_param(1, $str, DBI::SQL_LONGVARCHAR);
=head2 Does DBD::ODBC support Multiple Active Statements?
Multiple Active Statements (MAS) are concurrent statements created
from the same database handle which both have pending actions on them
(e.g. they both have executed a select statement but not retrieved all
the available rows yet).
DBD::ODBC does support MAS but whether you can actually use MAS is
down to the ODBC Driver.
By default MS SQL Server did not used to support multiple active
statements if any of them were select statements. You could get around
this (with caution) by changing to a dynamic cursor. There is a "hack"
in DBD::ODBC which can be used to enable MAS but you have to fully
understand the implications of doing so(see
L<DBD::ODBC/odbc_SQL_ROWSET_SIZE> and L<DBD::ODBC/odbc_cursortype>).
In MS SQL Server 2005, there is a new thing called MARS (Multiple
Active Result Sets) which allows multiple active select statements but
it has some nasty implications if you are also doing transactions. To
enable MARS from DBD::ODBC add "MARS_Connection=Yes" to the connection
string as in:
$h->DBI->connect('dbi:ODBC:DSN=mydsn;MARS_Connection=Yes;');
NOTE: Even though you may be using MS SQL Server 2005 if you are using
MS SQL Server drivers you will need to use the Native Client Driver or
a later MS SQL Server ODBC driver (2008 or later) to use MARS.
For other drivers it depends. I believe various Oracle ODBC drivers do
support multiple active statements as myodbc does.
Think carefully before using multiple active statements. It is
probably not portable and there is nearly always a better way of doing
it.
If anyone wants to report success with a particular driver and
multiple active statements I will collect them here.
Also see L<http://www.easysoft.com/developer/languages/perl/multiple-active-statements.html>
=head2 Why do I get "Datetime field overflow" when attempting to insert a
date into Oracle?
If you are using the Oracle or Microsoft ODBC drivers then you may get
the following error when inserting dates into an Oracle database:
[Oracle][ODBC]Datetime field overflow. (SQL-22008)
If you do then check v$nls_parameters and v$parameter to see if you are
using a date format containing the RR format. e.g.,
select * from v$nls_parameters where parameter = 'NLS_DATE_FORMAT'
select * from v$parameter where name = 'nls_date_format'
If you see a date format like 'DD-MON-RR' (e.g., contains an RR) then
all I can suggest is you change the date format for your session as I
have never been able to bind a date using this format. You can do this
with:
alter session set nls_date_format='YYYY/MM/DD'
and use any format you like but keep away from 'RR'.
You can find some test code in the file examples/rtcpan_28821.pl which
demonstrates this problem. This was originally a rt.cpan issue which
can be found at L<http://rt.cpan.org/Ticket/Display.html?id=28821>.
As an aside, if anyone is reading this and can shed some light on the problem
I'd love to hear from you. The technical details are:
create table rtcpan28821 (a date)
insert into rtcpan28821 values('23-MAR-62') fails
Looking at the ODBC trace, C<SQLDescribeParam> returns:
data type: 93, SQL_TYPE_TIMESTAMP
size: 19
decimal digits: 0
nullable: 1
and DBD::ODBC calls SQLBindParameter with:
ValueType: SQL_C_CHAR
ParameterType: SQL_TYPE_TIMESTAMP
ColumnSize: 9
DecimalDigits: 0
Data: 23-MAR-62
BufferLength: 9
=head2 Why do my SQL Server temporary objects disappear?
If you are creating temporary objects (e.g., temporary tables) in
SQL Server you find they have disappeared when you attempt to use
them. Temporary objects only have a lifetime of the session they
are created in but in addition, they cannot be created using
prepare/execute. e.g., the following fails:
$s = $h->prepare('select * into #tmp from mytable');
$s->execute;
$s = $h->selectall_arrayref('select * from #tmp');
with "Invalid object name '#tmp'". Your should read
L<http://technet.microsoft.com/en-US/library/ms131667.aspx> which
basically says I<Prepared statements cannot be used to create
temporary objects on SQL Server 2000 or later...>. The proper way to
avoid this is to use the C<do> method but if you cannot do that then
you need to add the L<DBD::ODBC/odbc_exec_direct> attribute to your prepare as
follows:
my $s = $h->prepare('select * into #tmp from mytable',
{ odbc_exec_direct => 1});
See L<DBD::ODBC/odbc_exec_direct>.
=head2 Why cannot I connect to my data source on Windows 64?
If you are running a 32bit Perl on a 64bit Windows machine you will
need to be aware there are two ODBC administrators and you need to
create your DSNs with the right one. The ODBC Administrator you get to
from Control Panel, Administrative Tools, Data Sources is the 64bit
one and data sources created here will not be visible or useable from
32bit applications. The ODBC administrator you need to use for 32bit
applications can be found at X:\windows\syswow64\odbcad32.exe.
You can find more about this than you'd probably care to know
at http://www.easysoft.com/developer/interfaces/odbc/64-bit.html
=head2 How do I use DBD::ODBC with web servers under Win32.
=over 4
=item General Commentary re web database access
This should be a DBI faq, actually, but this has somewhat of an
Win32/ODBC twist to it.
Typically, the Web server is installed as an NT service or a Windows
95/98 service. This typically means that the web server itself does
not have the same environment and permissions the web developer does.
This situation, of course, can and does apply to Unix web servers.
Under Win32, however, the problems are usually slightly different.
=item Defining your DSN -- which type should I use?
Under Win32 take care to define your DSN as a system DSN, not as a user
DSN. The system DSN is a "global" one, while the user is local to a
user. Typically, as stated above, the web server is "logged in" as a
different user than the web developer. This helps cause the situation
where someone asks why a script succeeds from the command line, but
fails when called from the web server.
=item Defining your DSN -- careful selection of the file itself is important!
For file based drivers, rather than client server drivers, the file
path is VERY important. There are a few things to keep in mind. This
applies to, for example, MS Access databases.
1) If the file is on an NTFS partition, check to make sure that the Web
B<service> user has permissions to access that file.
2) If the file is on a remote computer, check to make sure the Web
B<service> user has permissions to access the file.
3) If the file is on a remote computer, try using a UNC path the file,
rather than a X:\ notation. This can be VERY important as services
don't quite get the same access permissions to the mapped drive letters
B<and>, more importantly, the drive letters themselves are GLOBAL to
the machine. That means that if the service tries to access Z:, the Z:
it gets can depend upon the user who is logged into the machine at the
time. (I've tested this while I was developing a service -- it's ugly
and worth avoiding at all costs).
Unfortunately, the Access ODBC driver that I have does not allow one to
specify the UNC path, only the X:\ notation. There is at least one way
around that. The simplest is probably to use Regedit and go to
(assuming it's a system DSN, of course)
HKEY_LOCAL_USERS\SOFTWARE\ODBC\"YOUR DSN" You will see a few settings
which are typically driver specific. The important value to change for
the Access driver, for example, is the DBQ value. That's actually the
file name of the Access database.
=back
=head2 How do I connect without DSN
The ability to connect without a full DSN was introduced in version 0.21.
Example (using MS Access):
my $DSN = 'driver=Microsoft Access Driver(*.mdb);dbq=\\\\cheese\\g$\\perltest.mdb';
my $dbh = DBI->connect("dbi:ODBC:$DSN", '','') or die "$DBI::errstr\n";
The above sample uses Microsoft's UNC naming convention to point to
the MSAccess file (\\cheese\g$\perltest.mdb). The dbq parameter tells
the access driver which file to use for the database.
Example (using MSSQL Server):
my $DSN = 'driver={SQL Server};Server=server_name;database=database_name;uid=user;pwd=password;';
my $dbh = DBI->connect("dbi:ODBC:$DSN") or die "$DBI::errstr\n";
=head2 Why do I get data truncated error from SQL Server when inserting with parameters?
Please see "Why am I getting errors with bound parameters" below which
collects all parameter issues together in one FAQ item.
=head2 Why do I get invalid value for cast specification (22018) from SQL Server when inserting with parameters?
Please see "Why am I getting errors with bound parameters" below which
collects all parameter issues together in one FAQ item.
=head2 Why do I get strange results with SQL Server and named parameters?
If you are using a MS SQL Server driver and named parameters to
procedures be very careful to use then in the same order they are
defined in the procedure. i.e., if you have a procedure like this:
create procedure test
@param1 varchar(50),
@param2 smallint
as
begin
..
end
then ensure if you call it using named parameters you specify them in
the same order they are declared:
exec test @param1=?,@param2=?
and not
exec test @param2=?,@param1=?
The reason for this is that all SQL Server drivers we have seen
describe procedures parameters in the order they are declared and
ignore the order they are used in the SQL. If you specify them out of
order DBD::ODBC will get details on p1 which are really for p2
etc. This can lead to data truncation errors and all sorts of other
problems it is impossible for DBD::ODBC to spot or workaround.
=head2 Why do I get "Numeric value out of range" when binding dates in Oracle?
Also see "Why do I get "Datetime field overflow" when attempting to insert a
date into Oracle?".
Here is some example code binding dates; some work, some don't, see comments.
use DBI;
use strict;
# table is "create table martin (a date, b int)"
my $h = DBI->connect;
$h->do(q{alter session set nls_date_format='DD-MON-YY'});
my $s = $h->prepare(q{select * from v$nls_parameters where parameter = 'NLS_DATE_FORMAT'});
$s->execute;
print DBI::dump_results($s);
my $date = '30-DEC-99';
my $dateodbc = qq/{ d '1999-12-30'}/;
# the following works ok - resulting in 2099-12-30 being inserted
$h->do(qq{insert into martin values ('$date', 1)});
# the following works resulting in 1999-12-30 being inserted
$h->do(qq{insert into martin values ($dateodbc, 2)});
# fails
eval {
my $s = $h->prepare(q{insert into martin values(?,3)});
$s->bind_param(1, $date);
# fails
# Numeric value out of range: invalid character in date/time string (SQL-22003)
$s->execute;
};
# works resulting in 2099-12-30 being inserted
eval {
my $s = $h->prepare(q{insert into martin values(?,4)});
$s->bind_param(1, $date, DBI::SQL_VARCHAR);
$s->execute;
};
# works resulting in 1999-12-30 being inserted
eval {
my $s = $h->prepare(q{insert into martin values(?,5)});
$s->bind_param(1, $dateodbc);
$s->execute;
};
In general, when using an ODBC driver you should use the ODBC syntax
for dates, times and timestamps as those are the only formats an ODBC
has to support.
In the above case with Oracle, the date parameter is described as a
SQL_TYPE_DATE SQL type so by default DBD::ODBC binds your parameter as
a SQL_TYPE_DATE. If you use '30-DEC-99' then that means the C type is
SQL_CHAR and the SQL type is SQL_TYPE_DATE so the driver is forced to
parse the date before sending it to Oracle (that would mean knowing
what your NLS_DATE_FORMAT is and it would also mean knowing all the
magic special characters Oracle can use to define date formats).
If you override the bind type to SQL_VARCHAR then the driver sees
SQL_CHAR => SQL_VARCHAR, nothing to do and hence Oracle itself does
the translation - that is why the SQL_VARCHAR works.
=head2 CWB0111 error with System i Access ODBC Driver
The full error this relates to is:
[unixODBC][IBM][System i Access ODBC Driver]Column 1: CWB0111 - A buffer passed to a system call is too small to hold return data (SQL-22018)
The iSeries ODBC driver looks at your environment and decides that if
you have UTF-8 set it will encode data returned from the database in
UTF-8.
e.g., LC_CTYPE=fr_FR.UTF-8
If you then select data from your database containing non-ASCII
characters e.g., accented characters the iSeries ODBC driver will
encode the data in UTF-8. UTF-8 encoding increases the size of strings
containing characters with codes > 127.
DBD::ODBC uses SQLDescribeCol and SQLColAttribute ODBC calls to work
out the size of the columns you are retrieving and allocate space for
them. As the ODBC API specifies the sizes returned are on bytes when
the driver says a string column is N is size DBD::ODBC allocates N+1
(for NULL) bytes. If the driver then encodes N characters in UTF-8 the
size will be too big to fit into DBD::ODBC's buffer and you will get
the error above. This is most often seen with char(N) columns as the
trailing spaces are returned by the driver so you are bound to
overflow the buffer as soon as a non-ASCII characters is found.
What are your possible solutions?
You can attempt to trim the data to leave room for the encoding.
e.g., RTRIM(column_name) in your select on char(N) columns but this is
a poor choice and only going to work in a few circumstances.
You can increase the sizes of your columns in the database but this is
another hack.
You can rearrange your SQL to cast the columns in question to larger
types.
Remove UTF-8 from your locale. This is the best solution as it is
guaranteed to stop this error but if you have data which cannot be
represented in 8 bit characters this won't help.
=head2 "ConnectionWrite (send())" error and bind parameters
The following error can happen when using more than 2097 bind
parameters in a single query with SQL Server 2000:
[Microsoft][ODBC SQL Server Driver][DBNETLIB]ConnectionWrite (send()).
(SQL-01000) [state was 01000 now 08S01]
[Microsoft][ODBC SQL Server Driver][DBNETLIB]General network error.
Check your network documentation. (SQL-08S01)
This error is most likely due to a bug in the Microsoft SQL Server
ODBC driver as it fails for some versions of the driver and not
others. It is known to fail for version 2000.85.1132.00
See bug report https://rt.cpan.org/Public/Bug/Display.html?id=49061
for more details.
=head2 SQL query length limited to about 65500 characters in SQL Server 2000
When using bind parameters and a query longer than about 65500
characters the query will fail with some versions of the SQL Server
2000 ODBC driver. The error message from the server can vary. Below is
an example:
[Microsoft][ODBC SQL Server Driver][SQL Server]Invalid column name
'TES[...]P1I'. (SQL-42S22) [state was 42S22 now 42000]
[Microsoft][ODBC SQL Server Driver][SQL Server]Statement(s) could not
be prepared. (SQL-42000)
Removing the use of binding will allow queries that are longer than
65500 characters.
This bug is known to affect Microsoft SQL Server ODBC driver version
2000.85.1132.00.
See bug report https://rt.cpan.org/Public/Bug/Display.html?id=49065
=head2 HY009, "invalid length or pointer" from SQLite
See rt 52651 at http://rt.cpan.org/Public/Bug/Display.html?id=52651.
During connection if you get a HY009 "invalid length or pointer" error
it is a bug in SQLSetConnectAttr in SQLite and you will need a version
at least 0.85pre1.
=head2 Where do I get the latest MDAC Development Kit?
MS keep moving this around. If you want to build DBD::ODBC yourself
from source you'll need the latest Microsoft Data Access Components
(MDAC) Software Development Kit. You can get it as part of the Platform
Development Kit, with some of the Visual Studio versions and occasionally
from:
http://msdn.microsoft.com/en-us/data/aa937730.aspx
where in April 2010 it listed the "Microsoft Data Access Componetns (MDAC)
2.8 Software Development Kit.
=head2 Why does DBD::ODBC fail to compile with missing definitions for SQLLEN/SQLULEN?
This happens because Microsoft changed their headers to add SQLLEN/SQLULEN
types and your C headers are probably out of date. As DBD::ODBC needs
to use these types you'll need an updated MDAC Development Kit. See
" Where do I get the latest MDAC Development Kit?".
=head2 Why do I get errors with bound parameters and MS SQL Server?
See the question "Why do I get data truncated error from SQL Server
when inserting with parameters?" above. These errors are often because
of bugs in the MS SQL Server ODBC driver in its SQLBindParameter
implementation and can be worked around by specifying a type at bind
time.
e.g.,
Instead of:
my $s = prepare(q/some sql with parameters/);
$s->execute($param1, $param2);
try:
my $s = prepare(q/some sql with parameters/);
$s->bind_param(1, $param1, {TYPE => SQL_VARCHAR});
$s->bind_param(2, $param2, {TYPE => SQL_VARCHAR});
$s->execute;
See https://connect.microsoft.com/SQLServer/feedback/details/527188/paramater-datatype-lookup-returns-incorrectly and rt ticket 50852.
=head2 Why does my script pause for a while whenever my statement handle is destroyed (goes out of scope)?
The symptom is that sometimes when your statement handle goes out of
scope and is hence destroyed your script pauses for a while. If you
are using MS SQL Server and certain MS SQL Server ODBC Drivers this
can happen when you issue a select which would return a lot of rows
but you don't fetch them all.
The problem is that the TDS protocol (normally, without Multiple
Active Statement support, or MARS) sends all the result-set down the
socket until it is consumed by the client end. When your statement
handle is destroyed with pending results the ODBC Driver needs to read
all the results to clear the socket. In reality MS SQL Server will
only write so many rows at a time to the socket depending on its
buffer size and will occasionally look at the socket for new requests
so it is possible for ODBC Drivers which support SQLCancel to reduce
the number of rows sent by using DBI's cancel method. In this way the
statement destruction is speeded up since fewer rows you don't need
are sent. See DBI's cancel method and if you destroy a statement
handle with pending results, call cancel before destruction.
However, you are best not selecting rows you have no intention of
retrieving.
See cancel_big_fetch.pl in the DBD::ODBC examples dir. NOTE: more recent
MS SQL Server drivers are better in this respect and sometimes the test
script cancel_big_fetch.pl shows no difference.
=head2 Why does my backup/restore/some_other_procedure in MS SQL Server not complete?
MS SQL Server batches up results in a procedure. A result may be the
output of a print or a select or in some cases even an insert/update
(see SET NOCOUNT ON|OFF). If you attempt to call a procedure using the
C<do> method and it outputs results (e.g., a print statement saying
the % completed) the procedure probably will not fully
complete. Instead you should do the following:
$sth-prepare(call to my procedure);
$sth->execute;
do {
while (my @row = $sth->fetchrow_array()) {
# do stuff here
}
} while ($sth->{odbc_more_results});
# do not forget to check $sth->err here if not using RaiseError as
# the outer while loop will stop when there are no more results OR
# if an error occurs.
=head2 Why do I get "The data types ntext and varchar are incompatible in the equal to operator"?
Or "The data types ntext and nvarchar(max) are incompatible in the
equal to operator".
MS SQL Server does not like equality comparisons with ntext columns.
You can get this error without using any Perl or DBD::ODBC simply by doing:
select * from mytable where ntext_column = 'hello'
You unfortunately need to change your SQL to:
select * from mytable where CAST(ntext_column AS nvarchar(max)) = 'hello'
=head2 Why are my integers returned as decimals?
If you are using the MS SQL Server ODBC driver and get
integers/booleans back as apparently decimals e.g. 0.00 instead of 0 and
integer primary keys as nn.nn you've probably either:
=over
=item enabled regional settings in the ODBC DSN setup (called "use regional settings with outputting..."
=item added "Regional=Yes" to your connection string.
The MS SQL Server ODBC Driver regional settings are massively flawed
and break lots of applications - turn it off.
=back
=head2 Why does Connect call fail on Ubuntu with a "undefined symbol SQLxxx" error?
Sometimes SQLxxx is SQLAllocHandle or SQLFetch but it could almost be
any ODBC API.
Did you build DBD::ODBC against iODBC? Some versions of Ubunutu Linux
seem to install the libiodbc shared object without a libiodbc.so
symbolic link. The key giveaway when you build DBD::ODBC is a warning like
this:
Note (probably harmless): No library found for -liodbc.so
You can fix this manually by creating a symbolic link something like this:
sudo ln /usr/lib/libiodbc.so.2 /usr/lib/libiodbc.so
but to be honest this just moved the problem on for me and I've never got
iODBC working on Ubuntu.
I suggest you remove iODBC and installing the unixodbc, unixodbc-dev and
unixodbc-bin packages.
=head2 Why does Connect fail with "Option type out of range"
You are probably setting an ODBC connection option like
odbc_SQL_ROWSET_SIZE in the connect method. The problem is that some
options can be set in ODBC with SQLSetConnectOption but not retrieved
(silly but that is how some of the driver managers work). In the past
this did not matter but a small bug in DBI introduced years ago causes
attribute values to be fetched.
You need to get a DBI release newer than 1.615 or revision 14463 from
the DBI subversion repository. The change was:
--- dbi/trunk/DBI.pm (original)
+++ dbi/trunk/DBI.pm Thu Oct 7 02:45:05 2010
@@ -717,7 +717,8 @@
$dbh->{$a} = delete $apply->{$a};
}
while ( my ($a, $v) = each %$apply) {
- eval { $dbh->{$a} = $v } or $@ && warn $@;
+ eval { $dbh->{$a} = $v }; # assign in void context to avoid re-FETCH
+ warn $@ if $@;
}
}
=head2 Why do I get undefined symbol my_snprintf?
It is my fault. Basically, I changed DBD::ODBC to use Devel::PPPort's
my_snprintf instead of sprintf (for safety) but because of the way DBI
includes ppport.h (as dbipport.h) I cannot override it in DBD::ODBC.
This should now be fixed in DBI but I cannot retrofit it so if you
get this error you need to upgrade DBI to at least version 1.609.
Sorry, some things are as they are.
From DBD::ODBC 1.26_1 a requirement is DBI 1.609 so this should not be
an issue but the 1.24 and 1.25 series DBD::ODBC did not have this
requirement.
=head2 Why can I appear to insert more than 255 chrs into a MS Access text column but when I read them back I only get 255 chrs?
The simple answer is that MS Access only supports 255 characters in a
text column. You can see this if you create a table with a text column
then examine the PRECISION attribute (see DBI) and it returns 255.
Unfortunately some versions of the MS Access ODBC driver silently
truncate the data instead of issuing a data truncation error so you
are not aware of the truncation until you read it back.
Someone pointed out you can insert more than 255 characters into a MS
Access text column with DBD::ADO but I believe if you look at the
column types after creating the table with DBD::ADO the text column is
really a memo column.
=head2 Why am I getting errors with bound parameters?
There are various problems with parameter binding in ODBC Drivers most
of them down to bugs in the ODBC drivers. I created this FAQ to try
and bring them all together in one place and other FAQ entries point
at this one as a number of them boil down to a single problem.
DBD::ODBC used to (many many versions ago) bind all parameters as
SQL_VARCHAR and this mostly works because a SQL_VARCHAR can almost
always be converted to any other SQL type. However, because of bugs in
some ODBC drivers, additional SQL types which work in mysterious ways
(like varchar(max) in MS SQL Server) and dates, DBD::ODBC was changed
to ask the ODBC Driver (C<SQLDescribeParam>) about parameters before
binding them.
There are a few things to note first:
=over
=item default bind type
Some ODBC Drivers do not support C<SQLDescribeParam> (e.g. freeTDS) and
in those cases DBD::ODBC reverts to its old behaviour of binding
everything as a SQL_VARCHAR or SQL_WVARCHAR (UNICODE build). In some
rare cases the default bind type might not be what you want.
In addition, if C<SQLDescribeParam> is supported but fails the default
bind type is used.
=item overriding the default bind type
You can always override the default bind type used when
C<SQLDescribeParam> is not supported using odbc_default_bind_type.
=item forcing a bind type
Sometimes the ODBC Driver can support C<SQLDescribeParam> but get the
answer wrong e.g., "select myfunc(?) where 1 = 1)" often causes a
problem because the parameter does not correspond to a real column in
a table. In these cases you can use odbc_force_bind_type to stop
DBD::ODBC calling C<SQLDescribeParam> and use the specified type
instead. However, adding TYPE => xxx to the bind_param call is nearly
always better (as it is more specific) and always overrides
odbc_force_bind_type.
=item specifying a bind type on the bind_param call
In all cases this overrides anything else that DBD::ODBC might do
and bare in mind parameter bind types set in this way are "sticky" (see
DBI). This is usually the best method unless you prefer to use a
cast in your SQL.
=back
Now to the specific problems:
=over
=item data truncated error
DBD::ODBC attempts to use the ODBC API C<SQLDescribeParam> to obtain
information about parameters in parameterised SQL. e.g.,
insert into mytable (column1) values(?)
The C<?> is a parameter marker. You supply the parameter value (in
this case parameter 1) with a call to the C<bind_param> method or by
adding the parameter to the C<execute> method call. When DBD::ODBC
sees the parameter marker in the SQL it will call C<SQLDescribeParam>
to obtain information about the parameter size and type etc (assuming
your ODBC driver supports C<SQLDescribeParam>).
When you call C<SQLDescribeParam> in the MS SQL Server ODBC driver the
driver will scan your SQL attempting to discover the columns in your
database the parameters align with. e.g., in the above case the
parameter to be bound is linked with "column1" so C<SQLDescribeParam>
should return information about "column1". The SQL Server ODBC driver
finds information about "column1" (in this example) by creating SQL such
as:
select column1 from mytable where 1 = 2
then looking at the column details. Unfortunately, some SQL confuses
SQL Server and it will generate SQL to find out about your parameters
which examines the wrong columns and on rare occasions it may even
generate totally incorrect SQL. The test case F<t/rt_39841.t>
demonstrates a couple of these.
The upshot of this is that DBD::ODBC is sometimes lied to about
parameters and will then bind your parameters incorrectly. This can lead
to later errors when C<execute> is called. This happens most commonly
when using parameters in SQL with sub-selects. For example:
create table one (a1 integer, a2 varchar(10))
create table two (b1 varchar(10), b2 varchar(20))
insert into one values(1, 'aaaaaaaaaa')
insert into two values('aaaaaaaaaa','bbbbbbbbbbbbbbbbbbbb')
select b1, (select a2 from one where a2 = b1) from two where b2 = ?
param 1 bound as 'bbbbbbbbbbbbbbbbbbbb'
Clearly in this example, the one and only parameter is for two.b2 which
is a varchar(20) but when SQL Server rearranges your SQL to describe
the parameter it issues:
select a2 from one where 1 = 0
and DBD::ODBC is told the parameter is a VARCHAR(10). In DBD::ODBC
1.17 this would then lead to a data truncation error because parameter
1 would be bound as 'bbbbbbbbbbbbbbbbbbbb' but with a column size of
10 as that is what C<SQLDescribeParam> returned. DBD::ODBC 1.17_1 (and
later) works around this problem for VARCHAR columns because it is
obvious a VARCHAR parameter of length 20 cannot have a column size of
10 so the column size is increased to the length of the parameter.
=item invalid value for the cast specification (22018)
See the previous item as this follows on from that.
See L<http://support.microsoft.com/kb/269011> on the microsoft web
site for a bug you may have hit.
In Perl the most common reason for this is that you have bound column
data in SQL which does not match the column type in the database and
the ODBC driver cannot perform the necessary conversion. DBD::ODBC
mostly binds all column data as strings and lets the ODBC driver
convert the string to the right column type. If you supply a string
which cannot be converted to the native column type you will get this
error e.g., if you attempt to bind a non-datetime string to a datetime
column or a non-numeric string to a numeric column.
A more difficult error (from that above in the previous item) can
occur when SQL Server describes the parameter as totally the wrong
type. The first example in F<t/rt_39841.t> demonstrates this. SQL
Server describes a VARCHAR parameter as an integer which DBD::ODBC has
little choice to believe but when something like 'bbbbbbbbbb' is bound
as an integer, SQL Server will then return an error like "invalid
value for cast specification". The only way around this is to
specifically name the parameter type. e.g.,
create table one (a1 integer, a2 varchar(20))
create table two (b1 double precision, b2 varchar(8))
insert into one values(1, 'aaaaaaaaaa')
insert into two values(1, 'bbbbbbbb')
select b1, ( select a2 from one where a1 = b1 ) from two where b2 = ?
param 1 bound as 'bbbbbbbbbb'
Clearly parameter 1 is a varchar(8) but SQL Server rearranges the SQL to:
select a1 from one where 1 = 2
when it should have run
select b2 from two where 1 = 2
As a result parameter 1 is described as an integer and this leads to the
problem. To workaround this problem you would need to bind parameter 1
naming the SQL type of the parameter using something like:
use DBI qw(:sql_types);
bind_param(1, 'bbbbbbbbbb', SQL_VARCHAR);
as omitting SQL_VARCHAR will cause DBD::ODBC to use the type
C<SQLDescribeParam> returned.
See https://connect.microsoft.com/SQLServer/feedback/details/527188/paramater-datatype-lookup-returns-incorrectly and rt ticket 50852.
=item problems with named parameters
If you are using a MS SQL Server driver and named parameters to
procedures be very careful to use then in the same order they are
defined in the procedure. i.e., if you have a procedure like this:
create procedure test