File: cursor.c

package info (click to toggle)
myodbc 3.51.09-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 4,400 kB
  • ctags: 1,596
  • sloc: ansic: 29,806; sh: 10,765; cpp: 627; makefile: 610
file content (1365 lines) | stat: -rw-r--r-- 36,349 bytes parent folder | download
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
/* Copyright (C) 1995-2004 MySQL AB

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.

   There are special exceptions to the terms and conditions of the GPL as it
   is applied to this software. View the full text of the exception in file
   EXCEPTIONS in the directory of this software distribution.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */


/***************************************************************************
 * CURSOR.C								   *
 *									   *
 * @description: Client side cursor functionality handling		   *
 *									   *
 * @author     : MySQL AB(monty@mysql.com, venu@mysql.com)		   *
 * @date       : 2001-Aug-15						   *
 * @product    : myodbc3						   *
 *									   *
 ****************************************************************************/

/***************************************************************************
 * The following ODBC APIs are implemented in this file:		   *
 *									   *
 *   SQLSetCursorName	 (ISO 92)					   *
 *   SQLGetCursorName	 (ISO 92)					   *
 *   SQLCloseCursor	 (ISO 92)					   *
 *   SQLSetPos		 (ODBC)						   *
 *   SQLBulkOperations	 (ODBC)						   *
 *									   *
 ****************************************************************************/

#include "myodbc3.h"
#include <locale.h>

/*
  @type    : myodbc3 internal
  @purpose : returns the table used by this query and
  ensures that all columns are from the same table
*/

static const char *find_used_table(STMT *stmt)
{
  MYSQL_FIELD  *field, *end;
  char *table_name;
  MYSQL_RES *result= stmt->result;
  DBUG_ENTER("find_used_table");

  if (stmt->table_name && stmt->table_name[0])
    DBUG_RETURN(stmt->table_name);    /* Return cached name */

  table_name= 0;
  for (field= result->fields, end= field+ result->field_count;
       field < end ; field++)
  {
    if (field->table)
    {
      if (!table_name)
	table_name= field->table;
      if (strcmp(field->table, table_name))
      {
	set_error(stmt,MYERR_S1000,
		  "Can't modify a row from a statement that uses more than one table",0);
	DBUG_RETURN(NULL);
      }
    }
  }
  /*
    We have to copy the strings as we may have to re-issue the query
    while using cursors.
  */
  stmt->table_name= dupp_str(table_name,SQL_NTS);
  DBUG_RETURN(stmt->table_name);
}


/*
  @type    : myodbc internal
  @purpose : returns the previous token in the query by eating white spaces
  if we found the start of the string, return it
*/

static const char *mystr_get_prev_token(const char **query, const char *start)
{
  const char *pos= *query;
  do
  {
    if (pos == start)
      return (*query= start);	  /* Return start of string */
  } while (!isspace(*(--pos))) ;
  *query= pos;		/* Remember pos to space */
  return (pos+1);	/* Return found token */
}


/*
  @type    : myodbc3 internal
  @purpose : checks whether the SQL statement contains WHERE CURRENT OF CURSOR
*/

my_bool check_if_positioned_cursor_exists(STMT FAR *stmt,STMT FAR **stmtNew)
{
  if (stmt->query && stmt->query_end)
  {
    char *szQueryEnd= stmt->query_end;
    const char *szCursor= mystr_get_prev_token((const char **)&szQueryEnd,
					       stmt->query);

    if (!myodbc_casecmp(mystr_get_prev_token((const char **)&szQueryEnd,
					     stmt->query),"OF",2) &&
	!myodbc_casecmp(mystr_get_prev_token((const char **)&szQueryEnd,
					     stmt->query),"CURRENT",7) &&
	!myodbc_casecmp(mystr_get_prev_token((const char **)&szQueryEnd,
					     stmt->query),"WHERE",5))
    {
      LIST *list_element,*next_element;
      DBC FAR *dbc= (DBC FAR*) stmt->dbc;

      for (list_element= dbc->statements ; list_element ;
	   list_element= next_element)
      {
	next_element= list_element->next;
	*stmtNew= (HSTMT)list_element->data;

	/*
	  Might have the cursor in the stmt without any resultset, so
	  avoid crashes, by keeping check on (*stmtNew)->result)
	*/
	if ((*stmtNew)->cursor.name &&
	    !myodbc_strcasecmp((*stmtNew)->cursor.name,szCursor) &&
	    (*stmtNew)->result)
	{
	  *szQueryEnd= '\0';
	  return(TRUE);
	}
      }
      if (!list_element)
      {
	char buff[100];
	strxmov(buff,"Cursor '",szCursor,"' does not exist",NullS);
	set_stmt_error(stmt,"34000",buff,ER_INVALID_CURSOR_NAME);
      }
      return(TRUE);
    }
  }
  return(FALSE);
}


/*
  @type    : myodbc3 internal
  @purpose : checks whether the Primary Key column exists in the table
  if it exists, returns the PK column name
*/

static SQLRETURN check_if_pk_exists(STMT FAR *stmt)
{
  char buff[NAME_LEN+18];
  MYSQL_ROW row;
  MYSQL_RES *presult;

  if (stmt->cursor.pk_validated)
    return (stmt->cursor.pk_count);

  /*
    Check for the existence of keys in the table
    We quote the table name to allow weird table names.
    TODO: Write a table-name-quote function and use this instead.
  */
  strxmov(buff,"show keys from `",stmt->result->fields->table,"`",NullS);
  MYLOG_QUERY(stmt, buff);
  pthread_mutex_lock(&stmt->dbc->lock);
  if (mysql_query(&stmt->dbc->mysql,buff) ||
      !(presult= mysql_store_result(&stmt->dbc->mysql)))
  {
    set_error(stmt,MYERR_S1000,mysql_error(&stmt->dbc->mysql),
	      mysql_errno(&stmt->dbc->mysql));
    pthread_mutex_unlock(&stmt->dbc->lock);
    return(0);
  }

  /*
    TODO: Fix this loop to only return columns that are part of the
    primary key.
  */
  while ((row= mysql_fetch_row(presult)) &&
	 (stmt->cursor.pk_count < MY_MAX_PK_PARTS))
  {
    /*
      Collect all keys, it may be
      - PRIMARY or
      - UNIQUE NOT NULL
      TODO: Fix this separatly and use the priority..
    */
    strmov(stmt->cursor.pkcol[stmt->cursor.pk_count++].name,row[4]);
  }
  mysql_free_result(presult);
  pthread_mutex_unlock(&stmt->dbc->lock);
  stmt->cursor.pk_validated= 1;
  return(stmt->cursor.pk_count);
}


/*
  @type    : myodbc3 internal
  @purpose : positions the data cursor to appropriate row
*/

void set_current_cursor_data(STMT FAR *stmt,SQLUINTEGER irow)
{
  long	     nrow, row_pos;
  MYSQL_RES  *result= stmt->result;
  MYSQL_ROWS *dcursor= result->data->data;

  /*
    If irow exists, then position the current row to point
    to the rowsetsize+irow, this is needed for positioned
    calls
  */
  row_pos= irow ? (long) (stmt->current_row+irow-1) : stmt->current_row;
  if (stmt->cursor_row != row_pos)
  {
    for (nrow= 0; nrow < row_pos; nrow++)
      dcursor= dcursor->next;

    stmt->cursor_row= row_pos;
    result->data_cursor= dcursor;
  }
}


/*
  @type    : myodbc3 internal
  @purpose : sets the dynamic cursor, when the cursor is not set
  explicitly by the application
*/

static void set_dynamic_cursor_name(STMT FAR *stmt)
{
  stmt->cursor.name= (char*) my_malloc(MYSQL_MAX_CURSOR_LEN,MYF(MY_ZEROFILL));
  sprintf((char*) stmt->cursor.name,"SQL_CUR%d",stmt->dbc->cursor_count++);
}


/*
  @type    : myodbc3 internal
  @purpose : updates the stmt status information
*/

static SQLRETURN update_status(STMT FAR *stmt, SQLUSMALLINT status)
{
  if (stmt->affected_rows == 0)
    return set_error(stmt,MYERR_01S03,NULL,0);

  else if (stmt->affected_rows > 1)
    return set_error(stmt,MYERR_01S04,NULL,0);

  else if (stmt->stmt_options.rowStatusPtr)
  {
    SQLUSMALLINT *ptr= stmt->stmt_options.rowStatusPtr+stmt->current_row;
    SQLUSMALLINT *end= ptr+stmt->affected_rows;

    for (; ptr != end ; ptr++)
      *ptr= status;
  }
  return SQL_SUCCESS;
}


/*
  @type    : myodbc3 internal
  @purpose : updates the SQLSetPos status information
*/

static SQLRETURN update_setpos_status(STMT FAR *stmt, SQLINTEGER irow,
				      my_ulonglong rows, SQLUSMALLINT status)
{
  stmt->affected_rows= stmt->dbc->mysql.affected_rows= rows;

  if (irow && rows > 1)
    return set_error(stmt,MYERR_01S04,NULL,0);

  /*
    If all rows successful, then only update status..else
    don't update...just for the sake of performance..
  */
  else if (stmt->stmt_options.rowStatusPtr)
  {
    SQLUSMALLINT *ptr= stmt->stmt_options.rowStatusPtr;
    SQLUSMALLINT *end= ptr+rows;

    for (; ptr != end ; ptr++)
      *ptr= status;
  }
  return SQL_SUCCESS;
}


/*
  @type    : myodbc3 internal
  @purpose : copy row buffers to statement
*/

static SQLRETURN copy_rowdata(STMT FAR *stmt, PARAM_BIND  param,
			      NET **net, SQLCHAR **to)
{
  SQLCHAR *orig_to= *to;
  MYSQL mysql= stmt->dbc->mysql;
  SQLUINTEGER length= *(param.actual_len)+1;

  if (!(*to= (SQLCHAR *) extend_buffer(*net,(char*) *to,length)))
    return set_error(stmt,MYERR_S1001,NULL,4001);

  if (!(*to= (SQLCHAR*) insert_param(&mysql, (char*) *to, &param)))
    return set_error(stmt,MYERR_S1001,NULL,4001);

  /* We have to remove zero bytes or we have problems! */
  while ((*to > orig_to) && (*((*to) - 1) == (SQLCHAR) 0)) (*to)--;

  /* insert "," */
  param.SqlType= SQL_INTEGER;
  param.CType= SQL_C_CHAR;
  param.buffer= (gptr) ",";
  *param.actual_len= 1;

  if (!(*to= (SQLCHAR*) insert_param(&mysql,(char*) *to, &param)))
    return set_error(stmt,MYERR_S1001,NULL,4001);

  return(SQL_SUCCESS);
}


/*
  @type    : myodbc3 internal
  @purpose : executes a statement query
*/

static SQLRETURN exec_stmt_query(STMT FAR *stmt,char *query,
				 SQLUINTEGER len)
{
  DBC FAR *dbc= stmt->dbc;
  SQLRETURN error= SQL_SUCCESS;

  MYLOG_QUERY(stmt, query);
  pthread_mutex_lock(&dbc->lock);
  if (check_if_server_is_alive(dbc) ||
      mysql_real_query(&dbc->mysql, query, len))
  {
    error= set_error(stmt,MYERR_S1000,mysql_error(&dbc->mysql),
		     mysql_errno(&dbc->mysql));
  }
  pthread_mutex_unlock(&dbc->lock);
  return(error);
}


/*
  @type    : myodbc3 internal
  @purpose : copy row buffers to statement
*/

static SQLRETURN copy_field_data(STMT FAR *stmt, PARAM_BIND  param,
				 NET **net, SQLCHAR **to)
{
  MYSQL mysql= stmt->dbc->mysql;
  SQLUINTEGER length= *(param.actual_len)+5;

  if (!(*to= (SQLCHAR*) extend_buffer(*net, (char*) *to,length)))
    return set_error(stmt,MYERR_S1001,NULL,4001);

  if (!(*to= (SQLCHAR*) insert_param(&mysql, (char*) *to, &param)))
    return set_error(stmt,MYERR_S1001,NULL,4001);

  /* Insert " AND ", where clause with multiple search */
  param.SqlType= SQL_INTEGER;
  param.CType= SQL_C_CHAR;
  param.buffer= (gptr) " AND ";
  *param.actual_len= 5;

  if (!(*to= (SQLCHAR*) insert_param(&mysql, (char*) *to, &param)))
    return set_error(stmt,MYERR_S1001,NULL,4001);

  return SQL_SUCCESS;
}


/*
  @type    : myodbc3 internal
  @purpose : copies field data to statement
*/

static my_bool insert_field(STMT FAR *stmt, MYSQL_RES *result,
			    DYNAMIC_STRING *dynQuery,
			    SQLUSMALLINT nSrcCol)
{
  PARAM_BIND  param;
  ulong       transfer_length,precision,display_size;
  MYSQL_FIELD *field= mysql_fetch_field_direct(result,nSrcCol);
  MYSQL_ROW   row_data= result->data_cursor->data + nSrcCol;
  NET	      *net=&stmt->dbc->mysql.net;
  SQLCHAR     *to= net->buff;
  SQLINTEGER  length;

  /* Copy row buffer data to statement */
  param.used= 1;
  param.SqlType= unireg_to_sql_datatype(stmt,field,0,
					&transfer_length,
					&precision,
					&display_size);
  param.CType= SQL_C_CHAR;

  if (row_data && *row_data)
  {
    param.buffer= (gptr) *row_data;
    length= strlen(*row_data);

    param.actual_len= &length;

    if (copy_field_data(stmt,param,&net,&to) != SQL_SUCCESS)
      return 1;

    length= (uint) ((char *)to - (char*) net->buff);
    dynstr_append_mem(dynQuery, (char*) net->buff, length);
  }
  else
  {
    dynQuery->length--;
    dynstr_append_mem(dynQuery, " IS NULL AND ",13);
  }
  return 0;
}


/*
  @type    : myodbc3 internal
  @purpose : checks for the float comparision in where clause
*/
static my_bool if_float_field(STMT FAR *stmt, MYSQL_FIELD *field)
{
  if (field->type == FIELD_TYPE_FLOAT || field->type == FIELD_TYPE_DOUBLE ||
      field->type == FIELD_TYPE_DECIMAL)
  {
    set_error(stmt,MYERR_S1000,
	      "Invalid use of floating point comparision in positioned operations",0);
    return 1;
  }
  return 0;
}


/*
  @type    : myodbc3 internal
  @purpose : checks for the existance of pk columns in the resultset,
  if it is, copy that data to query, else get the data by
  building a temporary resultset
*/

static SQLRETURN insert_pk_fields(STMT FAR *stmt, DYNAMIC_STRING *dynQuery)
{
  MYSQL_RES    *result= stmt->result;
  MYSQL_FIELD  *field;
  SQLUSMALLINT ncol;
  uint		index;
  MYCURSOR     *cursor= &stmt->cursor;
  SQLUINTEGER  pk_count= 0;

  /*
    Look for primary key columns in the current result set,
    if it exists, take that data else query new resultset
  */
  for (ncol= 0; ncol < result->field_count; ncol++)
  {
    field= result->fields+ncol;
    for (index= 0; index < cursor->pk_count; index++)
    {
      if (!myodbc_strcasecmp(cursor->pkcol[index].name,field->name))
      {
	/* PK data exists...*/
	dynstr_append_quoted_name(dynQuery,field->name);
	dynstr_append_mem(dynQuery,"=",1);
	if (insert_field(stmt,result,dynQuery,ncol))
	  return(SQL_ERROR);
	cursor->pkcol[index].bind_done= TRUE;
	pk_count++;
	break;
      }
    }
  }
  if (pk_count != cursor->pk_count)
  {
    /*
      Primary key column doesn't exists in the opened rs, so
      get the data by executing a query
    */
    DYNAMIC_STRING query;
    MYSQL_RES *presult;
    SQLUSMALLINT field_count= 0;

    if (init_dynamic_string(&query, "SELECT ", 1024,1024))
      return set_error(stmt,MYERR_S1001,NULL,4001);

    for (index= 0; index < cursor->pk_count; index++)
    {
      if (!cursor->pkcol[index].bind_done)
      {
	dynstr_append_quoted_name(&query,stmt->cursor.pkcol[index].name);
	dynstr_append_mem(&query,",",1);
      }
    }
    query.length-= 1;
    dynstr_append_mem(&query," FROM ",6);

    if (!find_used_table(stmt))
    {
      dynstr_free(&query);
      return(SQL_ERROR);
    }

    dynstr_append_quoted_name(&query,stmt->table_name);
    MYLOG_QUERY(stmt, query.str);
    pthread_mutex_lock(&stmt->dbc->lock);
    if (mysql_query(&stmt->dbc->mysql,query.str) ||
	!(presult= mysql_store_result(&stmt->dbc->mysql)))
    {
      set_error(stmt,MYERR_S1000,mysql_error(&stmt->dbc->mysql),
		mysql_errno(&stmt->dbc->mysql));
      pthread_mutex_unlock(&stmt->dbc->lock);
      dynstr_free(&query);
      return(SQL_ERROR);
    }
    pthread_mutex_unlock(&stmt->dbc->lock);

    for (index= 0;index< (uint) stmt->current_row;index++)
      presult->data_cursor= presult->data_cursor->next;

    for (index= 0; index < cursor->pk_count; index++)
    {
      if (!cursor->pkcol[index].bind_done)
      {
	dynstr_append_quoted_name(dynQuery,cursor->pkcol[index].name);
	dynstr_append_mem(dynQuery,"=",1);

	/*
	  Might have multiple pk fields in the missing list ..
	  so avoid the wrong query by having internal field_count..
	*/
	if (insert_field(stmt,presult,dynQuery,field_count++))
	{
	  mysql_free_result(presult);
	  dynstr_free(&query);
	  return(SQL_ERROR);
	}
      }
    }
    mysql_free_result(presult);
    dynstr_free(&query);
  }
  return(SQL_SUCCESS);
}


/*
  @type    : myodbc3 internal
  @purpose : copies all resultset column data to where clause
*/

static SQLRETURN insert_fields(STMT FAR *stmt, DYNAMIC_STRING *dynQuery)
{
  MYSQL_RES    *result= stmt->result;
  MYSQL_FIELD  *field;
  SQLUSMALLINT ncol;
  MYSQL_RES    *presult;
  char		select[NAME_LEN+15];


  /*
    As there is no key columns in the current result,
    try to include all columns from the table in the
    search clause
  */
  if (!(find_used_table(stmt)))
    return(SQL_ERROR);

  /* Get a temp result of all columns from the table .. */
  strxmov(select, "SELECT * FROM `",stmt->table_name,"`",NullS);
  MYLOG_QUERY(stmt, select);
  pthread_mutex_lock(&stmt->dbc->lock);
  if ((mysql_query(&stmt->dbc->mysql,select) ||
       !(presult= mysql_store_result(&stmt->dbc->mysql))))
  {
    set_error(stmt,MYERR_S1000,mysql_error(&stmt->dbc->mysql),
	      mysql_errno(&stmt->dbc->mysql));
    pthread_mutex_unlock(&stmt->dbc->lock);
    return(SQL_ERROR);
  }
  pthread_mutex_unlock(&stmt->dbc->lock);

  /*
    If current result set field count is not the total
    count from the actual table, then use the temp result
    to have a search condition from all table fields ..

    This can be buggy, if multiple times the same
    column is used in the select ..rare case ..
  */
  if (presult->row_count != result->row_count && !if_dynamic_cursor(stmt))
  {
    mysql_free_result(presult);
    presult= 0;
  }
  else if (presult->field_count != result->field_count ||
	   !result->data_cursor ||
	   (if_dynamic_cursor(stmt) &&
	    presult->row_count != result->row_count))
  {
    for (ncol= 0; ncol<(SQLUSMALLINT)stmt->current_row; ncol++)
      presult->data_cursor= presult->data_cursor->next;
    result= presult;
  }

  pthread_mutex_lock(&stmt->dbc->lock);
  /* Copy all row buffers to query search clause */
  for (ncol= 0; ncol < result->field_count; ncol++)
  {
    field= result->fields+ncol;
    dynstr_append_quoted_name(dynQuery,field->name);
    dynstr_append_mem(dynQuery,"=",1);

    if (if_float_field(stmt,field) ||
	insert_field(stmt,result,dynQuery,ncol))
    {
      mysql_free_result(presult);
      pthread_mutex_unlock(&stmt->dbc->lock);
      return(SQL_ERROR);
    }
  }
  mysql_free_result(presult);
  pthread_mutex_unlock(&stmt->dbc->lock);
  return(SQL_SUCCESS);
}

/*
  @type	  : myodbc3 internal
  @purpose : build the where clause
*/

static my_bool build_where_clause(STMT FAR *stmt, DYNAMIC_STRING *dynQuery,
				  SQLUSMALLINT irow)
{
  set_current_cursor_data(stmt,irow);
  dynstr_append_mem(dynQuery," WHERE ",7);

  if (check_if_pk_exists(stmt))
  {
    /* Primary keys exists, build the search pattern using keys */
    if (insert_pk_fields(stmt, dynQuery) != SQL_SUCCESS)
      return 1;
  }
  else
  {
    /*
      No primary key exists, build the search pattern using
      all current open columns
    */
    if (insert_fields(stmt, dynQuery) != SQL_SUCCESS)
      return 1;
  }
  dynQuery->length-= 5;

  /*
    If irow= 0, include search clause for all rows,
    else for all current rowset size
  */
  if (irow)
    dynstr_append_mem(dynQuery," LIMIT 1",8);
  else
  {
    char buff[32];
    sprintf(buff," LIMIT %lu",stmt->stmt_options.rows_in_set);
    dynstr_append(dynQuery,buff);
  }
  return 0;
}


/*
  @type	  : myodbc3 internal
  @purpose : if input param buffers exist, copy them to new
  statement
*/

static void copy_input_param(STMT FAR *stmt,STMT FAR *stmtNew,
			     SQLUINTEGER pcount)
{
  while (pcount--)
  {
    PARAM_BIND *param= dynamic_element(&stmt->params,pcount,PARAM_BIND*);
    PARAM_BIND *paramNew= dynamic_element(&stmtNew->params,pcount,PARAM_BIND*);
    param->pos_in_query= paramNew->pos_in_query;
    set_dynamic(&stmtNew->params,(gptr) param,pcount);
  }
}


/*
  @type    : myodbc3 internal
  @purpose : set clause building..
*/

static SQLRETURN build_set_clause(STMT FAR *stmt, SQLUINTEGER irow,
				  DYNAMIC_STRING *dynQuery)
{
  PARAM_BIND  param;
  SQLUINTEGER transfer_length,precision,display_size;
  SQLINTEGER  length;
  uint	      ncol, ignore_count= 0;
  MYSQL_FIELD *field;
  MYSQL_RES   *result= stmt->result;
  BIND	      *bind;
  NET	      *net=&stmt->dbc->mysql.net;
  SQLINTEGER  *pcbValue;

  dynstr_append_mem(dynQuery," SET ",5);

  /*
    To make sure, it points to correct row in the
    current rowset..
  */
  irow= irow ? irow-1: 0;
  for (ncol= 0; ncol < stmt->result->field_count; ncol++)
  {
    SQLCHAR *to= net->buff;
    field= mysql_fetch_field_direct(result,ncol);
    bind= stmt->bind+ncol;

    if (bind && !bind->field)
    {
      set_stmt_error(stmt,"21S02",
		     "Degree of derived table does not match column list",0);
      return(SQL_ERROR);
    }
    pcbValue= bind->pcbValue ? bind->pcbValue + irow : 0;
    if (pcbValue)
    {
      /*
	If the pcbValue is SQL_COLUMN_IGNORE, then ignore the
	column in the SET clause
      */
      if (*pcbValue == SQL_COLUMN_IGNORE)
      {
	ignore_count++;
	continue;
      }
      /*
	Take care of SQL_NTS in pcbValue
      */
      else if (*pcbValue == SQL_NTS)
	length= SQL_NTS;
      else
	length= *pcbValue;
    }
    else
      length= SQL_NTS;

    /* TODO : handle ..SQL_DATA_AT_EXEC here....*/

    dynstr_append_quoted_name(dynQuery,field->name);
    dynstr_append_mem(dynQuery,"=",1);

    param.used= 1;
    param.SqlType= unireg_to_sql_datatype(stmt,field,0,
					  &transfer_length,&precision,
					  &display_size);
    param.CType= bind->fCType;
    param.buffer= (gptr) bind->rgbValue+irow*bind->cbValueMax;
    param.ValueMax= bind->cbValueMax;
    length= length == (SQLUINTEGER) SQL_NTS ? strlen(param.buffer) : length;
    param.actual_len= &length;

    if (copy_rowdata(stmt,param,&net,&to) != SQL_SUCCESS)
      return(SQL_ERROR);

    length= (uint) ((char *)to - (char*) net->buff);
    dynstr_append_mem(dynQuery, (char*) net->buff, length);
  }
  if (ignore_count == result->field_count)
    return(ER_ALL_COLUMNS_IGNORED);

  dynQuery->str[--dynQuery->length]='\0';
  return(SQL_SUCCESS);
}


/*
  @type    : myodbc3 internal
  @purpose : deletes the positioned cursor row
*/

SQLRETURN my_pos_delete(STMT FAR *stmt, STMT FAR *stmtParam,
			SQLUSMALLINT irow, DYNAMIC_STRING *dynQuery)
{
  SQLRETURN sqlRet;

  /* Delete only the positioned row, by building where clause */
  if (build_where_clause(stmt, dynQuery, irow))
    return SQL_ERROR;

  /* DELETE the row(s) */
  DBUG_PRINT("SQL_DELETE:",("%s",dynQuery->str));
  sqlRet= exec_stmt_query(stmt, dynQuery->str, dynQuery->length);
  if (sqlRet == SQL_SUCCESS || sqlRet == SQL_SUCCESS_WITH_INFO)
  {
    stmtParam->affected_rows= mysql_affected_rows(&stmt->dbc->mysql);
    sqlRet= update_status(stmtParam,SQL_ROW_DELETED);
  }
  return sqlRet;
}


/*
  @type    : myodbc3 internal
  @purpose : updates the positioned cursor row
*/

SQLRETURN my_pos_update(STMT FAR *stmt, STMT FAR *stmtParam,
			SQLUSMALLINT irow, DYNAMIC_STRING *dynQuery)
{
  SQLRETURN sqlRet;
  SQLHSTMT  hstmtTemp;
  STMT FAR  *stmtTemp;

  if (build_where_clause(stmt, dynQuery, irow))
    return SQL_ERROR;

  /*
    Prepare and check if parameters exists in set clause..
    this happens with WHERE CURRENT OF statements ..
  */

  if (my_SQLAllocStmt(stmtParam->dbc, &hstmtTemp) != SQL_SUCCESS)
    return(SQL_ERROR);

  stmtTemp= (STMT FAR*)hstmtTemp;

  if (my_SQLPrepare(stmtTemp,(SQLCHAR FAR*) dynQuery->str,dynQuery->length) !=
      SQL_SUCCESS)
  {
    my_SQLFreeStmt(stmtTemp,SQL_DROP);
    return(SQL_ERROR);
  }
  if (stmtTemp->param_count)	  /* SET clause has parameters */
    copy_input_param(stmtParam,stmtTemp,stmtTemp->param_count);

  sqlRet= my_SQLExecute(stmtTemp);
  if (sqlRet == SQL_SUCCESS || sqlRet == SQL_SUCCESS_WITH_INFO)
  {
    stmtParam->affected_rows= mysql_affected_rows(&stmtTemp->dbc->mysql);
    sqlRet= update_status(stmtParam,SQL_ROW_UPDATED);
  }
  my_SQLFreeStmt(stmtTemp,SQL_DROP);
  return(sqlRet);
}


/*
  @type    : myodbc3 internal
  @purpose : deletes the positioned cursor row
*/

static SQLRETURN setpos_delete(STMT FAR *stmt, SQLUSMALLINT irow,
			       DYNAMIC_STRING *dynQuery)
{
  SQLUINTEGER  rowset_pos,rowset_end;
  my_ulonglong affected_rows= 0;
  SQLRETURN    sqlRet= SQL_SUCCESS;
  ulong        query_length;
  const char   *table_name;

  if (!(table_name= find_used_table(stmt)))
    return SQL_ERROR;

  dynstr_append_quoted_name(dynQuery,table_name);
  query_length= dynQuery->length;

  if (!irow)
  {
    /*
      If irow == 0, then delete all rows in the current rowset
    */
    rowset_pos= 1;
    rowset_end= stmt->rows_found_in_set;
  }
  else
    rowset_pos= rowset_end= irow;

  do /* DELETE	irow from current row set */
  {
    dynQuery->length= query_length;
    if (build_where_clause(stmt,dynQuery,(SQLUSMALLINT)rowset_pos))
      return SQL_ERROR;

    DBUG_PRINT("SQLPOS_DELETE:",("%s",dynQuery->str));
    if (!(sqlRet= exec_stmt_query(stmt, dynQuery->str, dynQuery->length)))
      affected_rows+= stmt->dbc->mysql.affected_rows;

  } while (++rowset_pos <= rowset_end);

  if (sqlRet == SQL_SUCCESS)
    sqlRet= update_setpos_status(stmt,irow,affected_rows,SQL_ROW_DELETED);

  return sqlRet;
}


/*
  @type    : myodbc3 internal
  @purpose : updates the positioned cursor row.
*/

static SQLRETURN setpos_update(STMT FAR *stmt, SQLUSMALLINT irow,
			       DYNAMIC_STRING *dynQuery)
{
  SQLUINTEGER  rowset_pos,rowset_end;
  my_ulonglong affected_rows= 0;
  SQLRETURN    sqlRet= SQL_SUCCESS;
  ulong        query_length;
  const char   *table_name;

  if (!(table_name= find_used_table(stmt)))
    return SQL_ERROR;

  dynstr_append_quoted_name(dynQuery,table_name);
  query_length= dynQuery->length;

  if (!irow)
  {
    /*
      If irow == 0, then update all rows in the current rowset
    */
    rowset_pos= 1;
    rowset_end= stmt->rows_found_in_set;
  }
  else
    rowset_pos= rowset_end= irow;

  do /* UPDATE, irow from current row set */
  {
    dynQuery->length= query_length;
    sqlRet= build_set_clause(stmt,rowset_pos,dynQuery);
    if (sqlRet == ER_ALL_COLUMNS_IGNORED)
    {
      /*
	All columns ignored in the update list, continue
	to the next statement ..
      */
      sqlRet= SQL_SUCCESS;
      continue;
    }
    else if (sqlRet == SQL_ERROR)
      return SQL_ERROR;

    if (build_where_clause(stmt,dynQuery,(SQLUSMALLINT)rowset_pos))
      return SQL_ERROR;

    DBUG_PRINT("SQLPOS_UPDATE:",("%s",dynQuery->str));
    if (!(sqlRet= exec_stmt_query(stmt, dynQuery->str, dynQuery->length)))
      affected_rows+= stmt->dbc->mysql.affected_rows;

  } while (++rowset_pos <= rowset_end);

  if (sqlRet == SQL_SUCCESS)
    sqlRet= update_setpos_status(stmt,irow,affected_rows,SQL_ROW_UPDATED);

  return sqlRet;
}


/*
  @type    : myodbc3 internal
  @purpose : batch insert
*/

static SQLRETURN batch_insert(STMT FAR *stmt, SQLUSMALLINT irow,
			      DYNAMIC_STRING *ext_query)
{
  MYSQL_RES    *result= stmt->result;
  SQLUINTEGER  insert_count= 1;
  SQLUINTEGER  count= 0;
  SQLINTEGER   length;
  NET	       *net;
  SQLUSMALLINT ncol;
  SQLCHAR      *to;
  ulong        query_length= 0;
  my_bool      break_insert= FALSE;
  MYSQL        mysql= stmt->dbc->mysql ;
  PARAM_BIND   param;

  if (!irow && stmt->stmt_options.rows_in_set > 1) /* batch wise */
  {
    insert_count= stmt->stmt_options.rows_in_set;
    query_length= ext_query->length;
  }

  do
  {
    if (break_insert)
    {
      /*
	If query exceeded its length, then set the query
	from begining..
      */
      ext_query->length= query_length;
    }
    while (count < insert_count)
    {
      net= &mysql.net;
      to = net->buff;

      dynstr_append_mem(ext_query,"(", 1);

      for (ncol= 0; ncol < result->field_count; ncol++)
      {
	SQLUINTEGER transfer_length,precision,display_size;
	MYSQL_FIELD *field= mysql_fetch_field_direct(result,ncol);
	BIND	    *bind= stmt->bind+ncol;

	param.SqlType= unireg_to_sql_datatype(stmt,field,0,
					      &transfer_length,&precision,
					      &display_size);
	param.CType = bind->fCType;
	param.buffer= (gptr) bind->rgbValue+count*bind->cbValueMax;

	if (param.buffer)
	{
	  if (bind->pcbValue)
	  {
	    if (*bind->pcbValue == SQL_NTS)
	      length= strlen(param.buffer);
      else if (*bind->pcbValue == SQL_COLUMN_IGNORE)
	      length= SQL_NULL_DATA;
	    else length= *bind->pcbValue;
	  }
	  else length= bind->cbValueMax;
	}
	else length= SQL_NULL_DATA;
	param.actual_len= &length;

	if (copy_rowdata(stmt,param,&net,&to) != SQL_SUCCESS)
	  return(SQL_ERROR);

      } /* END OF for (ncol= 0; ncol < result->field_count; ncol++) */

      length= (uint) ((char *)to - (char*) net->buff);
      dynstr_append_mem(ext_query, (char*) net->buff, length-1);
      dynstr_append_mem(ext_query, "),", 2);
      count++;
      if (ext_query->length+length >= net_buffer_length)
      {
	break_insert= TRUE;
	break;
      }
    }  /* END OF while(count < insert_count) */

    ext_query->str[--ext_query->length]= '\0';
    DBUG_PRINT("batch_insert:",("%s",ext_query->str));
    if (exec_stmt_query(stmt, ext_query->str, ext_query->length) !=
	SQL_SUCCESS)
      return(SQL_ERROR);

  } while (break_insert && count < insert_count);

  stmt->affected_rows= stmt->dbc->mysql.affected_rows= insert_count;
  if (stmt->stmt_options.rowStatusPtr)
  {
    for (count= insert_count; count--;)
      stmt->stmt_options.rowStatusPtr[count]= SQL_ROW_ADDED;
  }
  return(SQL_SUCCESS);
}


/*
  @type    : myodbc internal
  @purpose : sets the cursor position in a rowset and allows an application
  to refresh data in the rowset or to update or delete data in
  the result set
*/

static const char *alloc_error=
"Driver Failed to set the internal dynamic result";


static SQLRETURN SQL_API my_SQLSetPos(SQLHSTMT hstmt, SQLUSMALLINT irow,
				      SQLUSMALLINT fOption, SQLUSMALLINT fLock)
{
  STMT FAR  *stmt= (STMT FAR*) hstmt;
  SQLRETURN sqlRet= SQL_SUCCESS;
  MYSQL_RES *result= stmt->result;
  DBUG_ENTER("SQLSetPos");
  DBUG_PRINT("enter",("irow: %d fOption: %s   Lock: %d",
		      irow,dbug_pos_type(fOption),fLock));

  CLEAR_STMT_ERROR(stmt);

  if (!result)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1010,NULL,0));

  /* If irow > maximum rows in the resultset */
  if (fOption != SQL_ADD && irow > result->row_count)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1107,NULL,0));

  /* Not a valid lock type ..*/
  if (fLock != SQL_LOCK_NO_CHANGE)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1C00,NULL,0));

  switch(fOption) {
  case SQL_POSITION:
  {
    if (irow == 0)
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1109,NULL,0));

    if (irow > stmt->rows_found_in_set)
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1107,NULL,0));

    /* If Dynamic cursor, fetch the latest resultset */
    if (if_dynamic_cursor(stmt) && set_dynamic_result(stmt))
    {
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1000, alloc_error, 0));
    }

    pthread_mutex_lock(&stmt->dbc->lock);
    irow--;
    sqlRet= SQL_SUCCESS;
    stmt->cursor_row= (long)(stmt->current_row+irow);
    mysql_data_seek(stmt->result,(my_ulonglong)stmt->cursor_row);
    stmt->current_values= stmt->result->data_cursor->data;
    stmt->last_getdata_col= (uint)  ~0;; /* reset */
    if (stmt->fix_fields)
      stmt->current_values= (*stmt->fix_fields)(stmt,stmt->current_values);
    else
      stmt->result_lengths= mysql_fetch_lengths(stmt->result);
    pthread_mutex_unlock(&stmt->dbc->lock);
    break;
  }

  case SQL_DELETE:
  {
    DYNAMIC_STRING dynQuery;

    if (irow > stmt->rows_found_in_set)
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1107,NULL,0));

    if (if_dynamic_cursor(stmt) && set_dynamic_result(stmt))
    {
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1000, alloc_error, 0));
    }
    if (init_dynamic_string(&dynQuery, "DELETE FROM ", 1024, 1024))
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1001,NULL,4001));

    sqlRet= setpos_delete(stmt,irow,&dynQuery);
    dynstr_free(&dynQuery);
    break;
  }

  case SQL_UPDATE:
  {
    DYNAMIC_STRING dynQuery;

    if (irow > stmt->rows_found_in_set)
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1107,NULL,0));

    if (if_dynamic_cursor(stmt) && set_dynamic_result(stmt))
    {
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1000, alloc_error, 0));
    }
    if (init_dynamic_string(&dynQuery, "UPDATE ", 1024, 1024))
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1001,NULL,4001));

    sqlRet= setpos_update(stmt,irow,&dynQuery);
    dynstr_free(&dynQuery);
    break;
  }

  case SQL_ADD:
  {
    MYSQL_FIELD *field, *end;
    const char	*table_name;
    DYNAMIC_STRING dynQuery;

    if (if_dynamic_cursor(stmt) && set_dynamic_result(stmt))
      DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1000, alloc_error, 0));
    result= stmt->result;

    if (!(table_name= find_used_table(stmt)))
      DBUG_RETURN_STATUS(SQL_ERROR);

    if (init_dynamic_string(&dynQuery, "INSERT INTO ", 1024,1024))
      DBUG_RETURN_STATUS(set_stmt_error(stmt,"S1001","Not enough memory",
					4001));

    dynstr_append_quoted_name(&dynQuery,table_name);
    dynstr_append_mem(&dynQuery,"(",1);

    for (field= result->fields, end= field+ result->field_count;
	 field < end ; field++)
    {
      dynstr_append_quoted_name(&dynQuery,field->name);
      dynstr_append_mem(&dynQuery,",",1);
    }
    dynQuery.length--;	      /* Remove last ',' */
    dynstr_append_mem(&dynQuery,") VALUES ",9);
    sqlRet= batch_insert(stmt, irow, &dynQuery);
    dynstr_free(&dynQuery);
    break;
  }

  case SQL_REFRESH:
  {
    /*
      Bug ...SQL_REFRESH is not suppose to fetch any
      new rows, instead it needs to refresh the positioned
      buffers
    */
    sqlRet= my_SQLExtendedFetch(hstmt, SQL_FETCH_ABSOLUTE, irow,
				stmt->stmt_options.rowsFetchedPtr,
				stmt->stmt_options.rowStatusPtr, 0);
    break;
  }

  default:
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1009,NULL,0));
  }
  DBUG_RETURN_STATUS(sqlRet);
}


/*
  @type    : ODBC 1.0 API
  @purpose : associates a cursor name with an active statement.
  If an application does not call SQLSetCursorName, the driver
  generates cursor names as needed for SQL statement processing
*/

SQLRETURN SQL_API SQLSetCursorName(SQLHSTMT hstmt, SQLCHAR *szCursor,
				   SQLSMALLINT cbCursor)
{
  STMT FAR *stmt= (STMT FAR*) hstmt;
  DBUG_ENTER("SQLSetCursorName");

  CLEAR_STMT_ERROR(stmt);

  if (!szCursor)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1009,NULL,0));

  if (cbCursor == SQL_NTS)
    cbCursor= (SQLSMALLINT) strlen((char*) szCursor);

  if (cbCursor < 0)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1090,NULL,0));

  if ((cbCursor == 0) ||
      (cbCursor > MYSQL_MAX_CURSOR_LEN) ||
      (myodbc_casecmp((char*) szCursor, "SQLCUR", 6) == 0)  ||
      (myodbc_casecmp((char*) szCursor, "SQL_CUR", 7) == 0))
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_34000,NULL,0));

  x_free((gptr) stmt->cursor.name);
  stmt->cursor.name= dupp_str((char*) szCursor,cbCursor);
  DBUG_RETURN_STATUS(SQL_SUCCESS);
}


/*
  @type    : ODBC 1.0 API
  @purpose : returns the cursor name associated with a specified statement
*/

SQLRETURN SQL_API SQLGetCursorName(SQLHSTMT hstmt, SQLCHAR FAR *szCursor,
				   SQLSMALLINT cbCursorMax,
				   SQLSMALLINT FAR *pcbCursor)
{
  STMT FAR    *stmt= (STMT FAR*) hstmt;
  SQLINTEGER  nLength;
  SQLSMALLINT nDummyLength;
  DBUG_ENTER("SQLGetCursorName");

  CLEAR_STMT_ERROR(stmt);

  if (cbCursorMax < 0)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_S1090,NULL,0));

  if (!pcbCursor)
    pcbCursor= &nDummyLength;

  if (cbCursorMax)
    cbCursorMax-= sizeof(char);

  if (!stmt->cursor.name)
    set_dynamic_cursor_name(stmt);

  *pcbCursor= strlen(stmt->cursor.name);
  if (szCursor && cbCursorMax > 0)
    strmake((char*) szCursor, stmt->cursor.name, cbCursorMax);

  nLength= min(*pcbCursor , cbCursorMax);

  if (nLength != *pcbCursor)
    DBUG_RETURN_STATUS(set_error(stmt,MYERR_01004,NULL,0));

  DBUG_RETURN_STATUS(SQL_SUCCESS);
}


/*
  @type    : ODBC 1.0 API
  @purpose : sets the cursor position in a rowset and allows an application
  to refresh data in the rowset or to update or delete data in
  the result set
*/

SQLRETURN SQL_API SQLSetPos(SQLHSTMT hstmt, SQLUSMALLINT irow,
			     SQLUSMALLINT fOption, SQLUSMALLINT fLock)
{
  return my_SQLSetPos(hstmt,irow,fOption,fLock);
}

/*
  @type    : ODBC 1.0 API
  @purpose : performs bulk insertions and bulk bookmark operations,
  including update, delete, and fetch by bookmark
*/

SQLRETURN SQL_API SQLBulkOperations(SQLHSTMT  Handle, SQLSMALLINT Operation)
{
  DBUG_ENTER("SQLBulkOperations");

  if (Operation == SQL_ADD)
    DBUG_RETURN_STATUS(my_SQLSetPos(Handle, 0, SQL_ADD, SQL_LOCK_NO_CHANGE));

  DBUG_RETURN_STATUS(set_error(Handle,MYERR_S1C00,NULL,0));
}


/*
  @type    : ODBC 3.0 API
  @purpose : closes a cursor that has been opened on a statement
  and discards any pending results
*/

SQLRETURN SQL_API SQLCloseCursor(SQLHSTMT Handle)
{
  DBUG_ENTER("SQLCloseCursor");
  DBUG_RETURN_STATUS(my_SQLFreeStmt(Handle, SQL_CLOSE));
}