regedit: An English (United States) spelling fix.
[wine/multimedia.git] / dlls / msi / sql.y
blobead7743171deac9b007f612f77a176c23e651295
1 %{
3 /*
4 * Implementation of the Microsoft Installer (msi.dll)
6 * Copyright 2002-2004 Mike McCormack for CodeWeavers
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "config.h"
26 #include <stdarg.h>
27 #include <stdio.h>
28 #include <stdlib.h>
30 #include "windef.h"
31 #include "winbase.h"
32 #include "query.h"
33 #include "wine/list.h"
34 #include "wine/debug.h"
35 #include "wine/unicode.h"
37 #define YYLEX_PARAM info
38 #define YYPARSE_PARAM info
40 static int sql_error(const char *str);
42 WINE_DEFAULT_DEBUG_CHANNEL(msi);
44 typedef struct tag_SQL_input
46 MSIDATABASE *db;
47 LPCWSTR command;
48 DWORD n, len;
49 UINT r;
50 MSIVIEW **view; /* View structure for the resulting query. This value
51 * tracks the view currently being created so we can free
52 * this view on syntax error.
54 struct list *mem;
55 } SQL_input;
57 static UINT SQL_getstring( void *info, const struct sql_str *strdata, LPWSTR *str );
58 static INT SQL_getint( void *info );
59 static int sql_lex( void *SQL_lval, SQL_input *info );
61 static LPWSTR parser_add_table( void *info, LPCWSTR list, LPCWSTR table );
62 static void *parser_alloc( void *info, unsigned int sz );
63 static column_info *parser_alloc_column( void *info, LPCWSTR table, LPCWSTR column );
65 static BOOL SQL_MarkPrimaryKeys( column_info **cols, column_info *keys);
67 static struct expr * EXPR_complex( void *info, struct expr *l, UINT op, struct expr *r );
68 static struct expr * EXPR_unary( void *info, struct expr *l, UINT op );
69 static struct expr * EXPR_column( void *info, const column_info *column );
70 static struct expr * EXPR_ival( void *info, int val );
71 static struct expr * EXPR_sval( void *info, const struct sql_str *str );
72 static struct expr * EXPR_wildcard( void *info );
74 #define PARSER_BUBBLE_UP_VIEW( sql, result, current_view ) \
75 *sql->view = current_view; \
76 result = current_view
80 %pure-parser
82 %union
84 struct sql_str str;
85 LPWSTR string;
86 column_info *column_list;
87 MSIVIEW *query;
88 struct expr *expr;
89 USHORT column_type;
90 int integer;
93 %token TK_ALTER TK_AND TK_BY TK_CHAR TK_COMMA TK_CREATE TK_DELETE TK_DROP
94 %token TK_DISTINCT TK_DOT TK_EQ TK_FREE TK_FROM TK_GE TK_GT TK_HOLD TK_ADD
95 %token <str> TK_ID
96 %token TK_ILLEGAL TK_INSERT TK_INT
97 %token <str> TK_INTEGER
98 %token TK_INTO TK_IS TK_KEY TK_LE TK_LONG TK_LONGCHAR TK_LP TK_LT
99 %token TK_LOCALIZABLE TK_MINUS TK_NE TK_NOT TK_NULL
100 %token TK_OBJECT TK_OR TK_ORDER TK_PRIMARY TK_RP
101 %token TK_SELECT TK_SET TK_SHORT TK_SPACE TK_STAR
102 %token <str> TK_STRING
103 %token TK_TABLE TK_TEMPORARY TK_UPDATE TK_VALUES TK_WHERE TK_WILDCARD
106 * These are extra tokens used by the lexer but never seen by the
107 * parser. We put them in a rule so that the parser generator will
108 * add them to the parse.h output file.
111 %nonassoc END_OF_FILE ILLEGAL SPACE UNCLOSED_STRING COMMENT FUNCTION
112 COLUMN AGG_FUNCTION.
114 %type <string> table tablelist id string
115 %type <column_list> selcollist collist selcolumn column column_and_type column_def table_def
116 %type <column_list> column_assignment update_assign_list constlist
117 %type <query> query from selectfrom unorderdfrom
118 %type <query> oneupdate onedelete oneselect onequery onecreate oneinsert onealter onedrop
119 %type <expr> expr val column_val const_val
120 %type <column_type> column_type data_type data_type_l data_count
121 %type <integer> number alterop
123 %left TK_OR
124 %left TK_AND
125 %left TK_NOT
126 %left TK_EQ TK_NE TK_LT TK_GT TK_LE TK_GE TK_LIKE
127 %right TK_NEGATION
131 query:
132 onequery
134 SQL_input* sql = (SQL_input*) info;
135 *sql->view = $1;
139 onequery:
140 oneselect
141 | onecreate
142 | oneinsert
143 | oneupdate
144 | onedelete
145 | onealter
146 | onedrop
149 oneinsert:
150 TK_INSERT TK_INTO table TK_LP collist TK_RP TK_VALUES TK_LP constlist TK_RP
152 SQL_input *sql = (SQL_input*) info;
153 MSIVIEW *insert = NULL;
155 INSERT_CreateView( sql->db, &insert, $3, $5, $9, FALSE );
156 if( !insert )
157 YYABORT;
159 PARSER_BUBBLE_UP_VIEW( sql, $$, insert );
161 | TK_INSERT TK_INTO table TK_LP collist TK_RP TK_VALUES TK_LP constlist TK_RP TK_TEMPORARY
163 SQL_input *sql = (SQL_input*) info;
164 MSIVIEW *insert = NULL;
166 INSERT_CreateView( sql->db, &insert, $3, $5, $9, TRUE );
167 if( !insert )
168 YYABORT;
170 PARSER_BUBBLE_UP_VIEW( sql, $$, insert );
174 onecreate:
175 TK_CREATE TK_TABLE table TK_LP table_def TK_RP
177 SQL_input* sql = (SQL_input*) info;
178 MSIVIEW *create = NULL;
179 UINT r;
181 if( !$5 )
182 YYABORT;
183 r = CREATE_CreateView( sql->db, &create, $3, $5, FALSE );
184 if( !create )
186 sql->r = r;
187 YYABORT;
190 PARSER_BUBBLE_UP_VIEW( sql, $$, create );
192 | TK_CREATE TK_TABLE table TK_LP table_def TK_RP TK_HOLD
194 SQL_input* sql = (SQL_input*) info;
195 MSIVIEW *create = NULL;
197 if( !$5 )
198 YYABORT;
199 CREATE_CreateView( sql->db, &create, $3, $5, TRUE );
200 if( !create )
201 YYABORT;
203 PARSER_BUBBLE_UP_VIEW( sql, $$, create );
207 oneupdate:
208 TK_UPDATE table TK_SET update_assign_list TK_WHERE expr
210 SQL_input* sql = (SQL_input*) info;
211 MSIVIEW *update = NULL;
213 UPDATE_CreateView( sql->db, &update, $2, $4, $6 );
214 if( !update )
215 YYABORT;
217 PARSER_BUBBLE_UP_VIEW( sql, $$, update );
219 | TK_UPDATE table TK_SET update_assign_list
221 SQL_input* sql = (SQL_input*) info;
222 MSIVIEW *update = NULL;
224 UPDATE_CreateView( sql->db, &update, $2, $4, NULL );
225 if( !update )
226 YYABORT;
228 PARSER_BUBBLE_UP_VIEW( sql, $$, update );
232 onedelete:
233 TK_DELETE from
235 SQL_input* sql = (SQL_input*) info;
236 MSIVIEW *delete = NULL;
238 DELETE_CreateView( sql->db, &delete, $2 );
239 if( !delete )
240 YYABORT;
242 PARSER_BUBBLE_UP_VIEW( sql, $$, delete );
246 onealter:
247 TK_ALTER TK_TABLE table alterop
249 SQL_input* sql = (SQL_input*) info;
250 MSIVIEW *alter = NULL;
252 ALTER_CreateView( sql->db, &alter, $3, NULL, $4 );
253 if( !alter )
254 YYABORT;
256 PARSER_BUBBLE_UP_VIEW( sql, $$, alter );
258 | TK_ALTER TK_TABLE table TK_ADD column_and_type
260 SQL_input *sql = (SQL_input *)info;
261 MSIVIEW *alter = NULL;
263 ALTER_CreateView( sql->db, &alter, $3, $5, 0 );
264 if (!alter)
265 YYABORT;
267 PARSER_BUBBLE_UP_VIEW( sql, $$, alter );
269 | TK_ALTER TK_TABLE table TK_ADD column_and_type TK_HOLD
271 SQL_input *sql = (SQL_input *)info;
272 MSIVIEW *alter = NULL;
274 ALTER_CreateView( sql->db, &alter, $3, $5, 1 );
275 if (!alter)
276 YYABORT;
278 PARSER_BUBBLE_UP_VIEW( sql, $$, alter );
282 alterop:
283 TK_HOLD
285 $$ = 1;
287 | TK_FREE
289 $$ = -1;
293 onedrop:
294 TK_DROP TK_TABLE table
296 SQL_input* sql = (SQL_input*) info;
297 MSIVIEW* drop = NULL;
298 UINT r;
300 r = DROP_CreateView( sql->db, &drop, $3 );
301 if( r != ERROR_SUCCESS || !$$ )
302 YYABORT;
304 PARSER_BUBBLE_UP_VIEW( sql, $$, drop );
308 table_def:
309 column_def TK_PRIMARY TK_KEY collist
311 if( SQL_MarkPrimaryKeys( &$1, $4 ) )
312 $$ = $1;
313 else
314 $$ = NULL;
318 column_def:
319 column_def TK_COMMA column_and_type
321 column_info *ci;
323 for( ci = $1; ci->next; ci = ci->next )
326 ci->next = $3;
327 $$ = $1;
329 | column_and_type
331 $$ = $1;
335 column_and_type:
336 column column_type
338 $$ = $1;
339 $$->type = ($2 | MSITYPE_VALID);
340 $$->temporary = $2 & MSITYPE_TEMPORARY ? TRUE : FALSE;
344 column_type:
345 data_type_l
347 $$ = $1;
349 | data_type_l TK_LOCALIZABLE
351 $$ = $1 | MSITYPE_LOCALIZABLE;
353 | data_type_l TK_TEMPORARY
355 $$ = $1 | MSITYPE_TEMPORARY;
359 data_type_l:
360 data_type
362 $$ |= MSITYPE_NULLABLE;
364 | data_type TK_NOT TK_NULL
366 $$ = $1;
370 data_type:
371 TK_CHAR
373 $$ = MSITYPE_STRING | 1;
375 | TK_CHAR TK_LP data_count TK_RP
377 $$ = MSITYPE_STRING | 0x400 | $3;
379 | TK_LONGCHAR
381 $$ = MSITYPE_STRING | 0x400;
383 | TK_SHORT
385 $$ = 2 | 0x400;
387 | TK_INT
389 $$ = 2 | 0x400;
391 | TK_LONG
393 $$ = 4;
395 | TK_OBJECT
397 $$ = MSITYPE_STRING | MSITYPE_VALID;
401 data_count:
402 number
404 if( ( $1 > 255 ) || ( $1 < 0 ) )
405 YYABORT;
406 $$ = $1;
410 oneselect:
411 TK_SELECT selectfrom
413 $$ = $2;
415 | TK_SELECT TK_DISTINCT selectfrom
417 SQL_input* sql = (SQL_input*) info;
418 MSIVIEW* distinct = NULL;
419 UINT r;
421 r = DISTINCT_CreateView( sql->db, &distinct, $3 );
422 if (r != ERROR_SUCCESS)
423 YYABORT;
425 PARSER_BUBBLE_UP_VIEW( sql, $$, distinct );
429 selectfrom:
430 selcollist from
432 SQL_input* sql = (SQL_input*) info;
433 MSIVIEW* select = NULL;
434 UINT r;
436 if( $1 )
438 r = SELECT_CreateView( sql->db, &select, $2, $1 );
439 if (r != ERROR_SUCCESS)
440 YYABORT;
442 PARSER_BUBBLE_UP_VIEW( sql, $$, select );
444 else
445 $$ = $2;
449 selcollist:
450 selcolumn
451 | selcolumn TK_COMMA selcollist
453 $1->next = $3;
455 | TK_STAR
457 $$ = NULL;
461 collist:
462 column
463 | column TK_COMMA collist
465 $1->next = $3;
467 | TK_STAR
469 $$ = NULL;
473 from:
474 TK_FROM table
476 SQL_input* sql = (SQL_input*) info;
477 MSIVIEW* table = NULL;
478 UINT r;
480 r = TABLE_CreateView( sql->db, $2, &table );
481 if( r != ERROR_SUCCESS || !$$ )
482 YYABORT;
484 PARSER_BUBBLE_UP_VIEW( sql, $$, table );
486 | unorderdfrom TK_ORDER TK_BY collist
488 UINT r;
490 if( $4 )
492 r = $1->ops->sort( $1, $4 );
493 if ( r != ERROR_SUCCESS)
494 YYABORT;
497 $$ = $1;
499 | unorderdfrom
502 unorderdfrom:
503 TK_FROM tablelist
505 SQL_input* sql = (SQL_input*) info;
506 MSIVIEW* where = NULL;
507 UINT r;
509 r = WHERE_CreateView( sql->db, &where, $2, NULL );
510 if( r != ERROR_SUCCESS )
511 YYABORT;
513 PARSER_BUBBLE_UP_VIEW( sql, $$, where );
515 | TK_FROM tablelist TK_WHERE expr
517 SQL_input* sql = (SQL_input*) info;
518 MSIVIEW* where = NULL;
519 UINT r;
521 r = WHERE_CreateView( sql->db, &where, $2, $4 );
522 if( r != ERROR_SUCCESS )
523 YYABORT;
525 PARSER_BUBBLE_UP_VIEW( sql, $$, where );
529 tablelist:
530 table
532 $$ = $1;
534 | table TK_COMMA tablelist
536 $$ = parser_add_table( info, $3, $1 );
537 if (!$$)
538 YYABORT;
542 expr:
543 TK_LP expr TK_RP
545 $$ = $2;
546 if( !$$ )
547 YYABORT;
549 | expr TK_AND expr
551 $$ = EXPR_complex( info, $1, OP_AND, $3 );
552 if( !$$ )
553 YYABORT;
555 | expr TK_OR expr
557 $$ = EXPR_complex( info, $1, OP_OR, $3 );
558 if( !$$ )
559 YYABORT;
561 | column_val TK_EQ val
563 $$ = EXPR_complex( info, $1, OP_EQ, $3 );
564 if( !$$ )
565 YYABORT;
567 | column_val TK_GT val
569 $$ = EXPR_complex( info, $1, OP_GT, $3 );
570 if( !$$ )
571 YYABORT;
573 | column_val TK_LT val
575 $$ = EXPR_complex( info, $1, OP_LT, $3 );
576 if( !$$ )
577 YYABORT;
579 | column_val TK_LE val
581 $$ = EXPR_complex( info, $1, OP_LE, $3 );
582 if( !$$ )
583 YYABORT;
585 | column_val TK_GE val
587 $$ = EXPR_complex( info, $1, OP_GE, $3 );
588 if( !$$ )
589 YYABORT;
591 | column_val TK_NE val
593 $$ = EXPR_complex( info, $1, OP_NE, $3 );
594 if( !$$ )
595 YYABORT;
597 | column_val TK_IS TK_NULL
599 $$ = EXPR_unary( info, $1, OP_ISNULL );
600 if( !$$ )
601 YYABORT;
603 | column_val TK_IS TK_NOT TK_NULL
605 $$ = EXPR_unary( info, $1, OP_NOTNULL );
606 if( !$$ )
607 YYABORT;
611 val:
612 column_val
613 | const_val
616 constlist:
617 const_val
619 $$ = parser_alloc_column( info, NULL, NULL );
620 if( !$$ )
621 YYABORT;
622 $$->val = $1;
624 | const_val TK_COMMA constlist
626 $$ = parser_alloc_column( info, NULL, NULL );
627 if( !$$ )
628 YYABORT;
629 $$->val = $1;
630 $$->next = $3;
634 update_assign_list:
635 column_assignment
636 | column_assignment TK_COMMA update_assign_list
638 $$ = $1;
639 $$->next = $3;
643 column_assignment:
644 column TK_EQ const_val
646 $$ = $1;
647 $$->val = $3;
651 const_val:
652 number
654 $$ = EXPR_ival( info, $1 );
655 if( !$$ )
656 YYABORT;
658 | TK_MINUS number %prec TK_NEGATION
660 $$ = EXPR_ival( info, -$2 );
661 if( !$$ )
662 YYABORT;
664 | TK_STRING
666 $$ = EXPR_sval( info, &$1 );
667 if( !$$ )
668 YYABORT;
670 | TK_WILDCARD
672 $$ = EXPR_wildcard( info );
673 if( !$$ )
674 YYABORT;
678 column_val:
679 column
681 $$ = EXPR_column( info, $1 );
682 if( !$$ )
683 YYABORT;
687 column:
688 table TK_DOT id
690 $$ = parser_alloc_column( info, $1, $3 );
691 if( !$$ )
692 YYABORT;
694 | id
696 $$ = parser_alloc_column( info, NULL, $1 );
697 if( !$$ )
698 YYABORT;
702 selcolumn:
703 table TK_DOT id
705 $$ = parser_alloc_column( info, $1, $3 );
706 if( !$$ )
707 YYABORT;
709 | id
711 $$ = parser_alloc_column( info, NULL, $1 );
712 if( !$$ )
713 YYABORT;
715 | string
717 $$ = parser_alloc_column( info, NULL, $1 );
718 if( !$$ )
719 YYABORT;
723 table:
726 $$ = $1;
731 TK_ID
733 if ( SQL_getstring( info, &$1, &$$ ) != ERROR_SUCCESS || !$$ )
734 YYABORT;
738 string:
739 TK_STRING
741 if ( SQL_getstring( info, &$1, &$$ ) != ERROR_SUCCESS || !$$ )
742 YYABORT;
746 number:
747 TK_INTEGER
749 $$ = SQL_getint( info );
755 static LPWSTR parser_add_table( void *info, LPCWSTR list, LPCWSTR table )
757 static const WCHAR space[] = {' ',0};
758 DWORD len = strlenW( list ) + strlenW( table ) + 2;
759 LPWSTR ret;
761 ret = parser_alloc( info, len * sizeof(WCHAR) );
762 if( ret )
764 strcpyW( ret, list );
765 strcatW( ret, space );
766 strcatW( ret, table );
768 return ret;
771 static void *parser_alloc( void *info, unsigned int sz )
773 SQL_input* sql = (SQL_input*) info;
774 struct list *mem;
776 mem = msi_alloc( sizeof (struct list) + sz );
777 list_add_tail( sql->mem, mem );
778 return &mem[1];
781 static column_info *parser_alloc_column( void *info, LPCWSTR table, LPCWSTR column )
783 column_info *col;
785 col = parser_alloc( info, sizeof (*col) );
786 if( col )
788 col->table = table;
789 col->column = column;
790 col->val = NULL;
791 col->type = 0;
792 col->next = NULL;
795 return col;
798 static int sql_lex( void *SQL_lval, SQL_input *sql )
800 int token, skip;
801 struct sql_str * str = SQL_lval;
805 sql->n += sql->len;
806 if( ! sql->command[sql->n] )
807 return 0; /* end of input */
809 /* TRACE("string : %s\n", debugstr_w(&sql->command[sql->n])); */
810 sql->len = sqliteGetToken( &sql->command[sql->n], &token, &skip );
811 if( sql->len==0 )
812 break;
813 str->data = &sql->command[sql->n];
814 str->len = sql->len;
815 sql->n += skip;
817 while( token == TK_SPACE );
819 /* TRACE("token : %d (%s)\n", token, debugstr_wn(&sql->command[sql->n], sql->len)); */
821 return token;
824 UINT SQL_getstring( void *info, const struct sql_str *strdata, LPWSTR *str )
826 LPCWSTR p = strdata->data;
827 UINT len = strdata->len;
829 /* match quotes */
830 if( ( (p[0]=='`') && (p[len-1]!='`') ) ||
831 ( (p[0]=='\'') && (p[len-1]!='\'') ) )
832 return ERROR_FUNCTION_FAILED;
834 /* if there's quotes, remove them */
835 if( ( (p[0]=='`') && (p[len-1]=='`') ) ||
836 ( (p[0]=='\'') && (p[len-1]=='\'') ) )
838 p++;
839 len -= 2;
841 *str = parser_alloc( info, (len + 1)*sizeof(WCHAR) );
842 if( !*str )
843 return ERROR_OUTOFMEMORY;
844 memcpy( *str, p, len*sizeof(WCHAR) );
845 (*str)[len]=0;
847 return ERROR_SUCCESS;
850 INT SQL_getint( void *info )
852 SQL_input* sql = (SQL_input*) info;
853 LPCWSTR p = &sql->command[sql->n];
854 INT i, r = 0;
856 for( i=0; i<sql->len; i++ )
858 if( '0' > p[i] || '9' < p[i] )
860 ERR("should only be numbers here!\n");
861 break;
863 r = (p[i]-'0') + r*10;
866 return r;
869 static int sql_error( const char *str )
871 return 0;
874 static struct expr * EXPR_wildcard( void *info )
876 struct expr *e = parser_alloc( info, sizeof *e );
877 if( e )
879 e->type = EXPR_WILDCARD;
881 return e;
884 static struct expr * EXPR_complex( void *info, struct expr *l, UINT op, struct expr *r )
886 struct expr *e = parser_alloc( info, sizeof *e );
887 if( e )
889 e->type = EXPR_COMPLEX;
890 e->u.expr.left = l;
891 e->u.expr.op = op;
892 e->u.expr.right = r;
894 return e;
897 static struct expr * EXPR_unary( void *info, struct expr *l, UINT op )
899 struct expr *e = parser_alloc( info, sizeof *e );
900 if( e )
902 e->type = EXPR_UNARY;
903 e->u.expr.left = l;
904 e->u.expr.op = op;
905 e->u.expr.right = NULL;
907 return e;
910 static struct expr * EXPR_column( void *info, const column_info *column )
912 struct expr *e = parser_alloc( info, sizeof *e );
913 if( e )
915 e->type = EXPR_COLUMN;
916 e->u.column.unparsed.column = column->column;
917 e->u.column.unparsed.table = column->table;
919 return e;
922 static struct expr * EXPR_ival( void *info, int val )
924 struct expr *e = parser_alloc( info, sizeof *e );
925 if( e )
927 e->type = EXPR_IVAL;
928 e->u.ival = val;
930 return e;
933 static struct expr * EXPR_sval( void *info, const struct sql_str *str )
935 struct expr *e = parser_alloc( info, sizeof *e );
936 if( e )
938 e->type = EXPR_SVAL;
939 if( SQL_getstring( info, str, (LPWSTR *)&e->u.sval ) != ERROR_SUCCESS )
940 return NULL; /* e will be freed by query destructor */
942 return e;
945 static void swap_columns( column_info **cols, column_info *A, int idx )
947 column_info *preA = NULL, *preB = NULL, *B, *ptr;
948 int i = 0;
950 B = NULL;
951 ptr = *cols;
952 while( ptr )
954 if( i++ == idx )
955 B = ptr;
956 else if( !B )
957 preB = ptr;
959 if( ptr->next == A )
960 preA = ptr;
962 ptr = ptr->next;
965 if( preB ) preB->next = A;
966 if( preA ) preA->next = B;
967 ptr = A->next;
968 A->next = B->next;
969 B->next = ptr;
970 if( idx == 0 )
971 *cols = A;
974 static BOOL SQL_MarkPrimaryKeys( column_info **cols,
975 column_info *keys )
977 column_info *k;
978 BOOL found = TRUE;
979 int count;
981 for( k = keys, count = 0; k && found; k = k->next, count++ )
983 column_info *c;
984 int idx;
986 found = FALSE;
987 for( c = *cols, idx = 0; c && !found; c = c->next, idx++ )
989 if( strcmpW( k->column, c->column ) )
990 continue;
991 c->type |= MSITYPE_KEY;
992 found = TRUE;
993 if (idx != count)
994 swap_columns( cols, c, count );
998 return found;
1001 UINT MSI_ParseSQL( MSIDATABASE *db, LPCWSTR command, MSIVIEW **phview,
1002 struct list *mem )
1004 SQL_input sql;
1005 int r;
1007 *phview = NULL;
1009 sql.db = db;
1010 sql.command = command;
1011 sql.n = 0;
1012 sql.len = 0;
1013 sql.r = ERROR_BAD_QUERY_SYNTAX;
1014 sql.view = phview;
1015 sql.mem = mem;
1017 r = sql_parse(&sql);
1019 TRACE("Parse returned %d\n", r);
1020 if( r )
1022 if (*sql.view)
1024 (*sql.view)->ops->delete(*sql.view);
1025 *sql.view = NULL;
1027 return sql.r;
1030 return ERROR_SUCCESS;