Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
1afddb3c
Commit
1afddb3c
authored
Feb 14, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Feb 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement SQL delete query.
parent
4d20d165
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
239 additions
and
1 deletion
+239
-1
Makefile.in
dlls/msi/Makefile.in
+1
-0
delete.c
dlls/msi/delete.c
+218
-0
query.h
dlls/msi/query.h
+2
-0
sql.y
dlls/msi/sql.y
+18
-1
No files found.
dlls/msi/Makefile.in
View file @
1afddb3c
...
...
@@ -11,6 +11,7 @@ C_SRCS = \
appsearch.c
\
create.c
\
custom.c
\
delete.c
\
dialog.c
\
distinct.c
\
format.c
\
...
...
dlls/msi/delete.c
0 → 100644
View file @
1afddb3c
/*
* Implementation of the Microsoft Installer (msi.dll)
*
* Copyright 2002-2005 Mike McCormack for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winerror.h"
#include "wine/debug.h"
#include "msi.h"
#include "msiquery.h"
#include "objbase.h"
#include "objidl.h"
#include "msipriv.h"
#include "winnls.h"
#include "query.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
msi
);
/*
* Code to delete rows from a table.
*
* We delete rows by blanking them out rather than trying to remove the row.
* This appears to be what the native MSI does (or tries to do). For the query:
*
* delete from Property
*
* some non-zero entries are left in the table by native MSI. I'm not sure if
* that's a bug in the way I'm running the query, or a just a bug.
*/
typedef
struct
tagMSIDELETEVIEW
{
MSIVIEW
view
;
MSIDATABASE
*
db
;
MSIVIEW
*
table
;
}
MSIDELETEVIEW
;
static
UINT
DELETE_fetch_int
(
struct
tagMSIVIEW
*
view
,
UINT
row
,
UINT
col
,
UINT
*
val
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %d %d %p
\n
"
,
dv
,
row
,
col
,
val
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_fetch_stream
(
struct
tagMSIVIEW
*
view
,
UINT
row
,
UINT
col
,
IStream
**
stm
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %d %d %p
\n
"
,
dv
,
row
,
col
,
stm
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_set_int
(
struct
tagMSIVIEW
*
view
,
UINT
row
,
UINT
col
,
UINT
val
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %d %d %04x
\n
"
,
dv
,
row
,
col
,
val
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_insert_row
(
struct
tagMSIVIEW
*
view
,
UINT
*
num
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %p
\n
"
,
dv
,
num
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_execute
(
struct
tagMSIVIEW
*
view
,
MSIRECORD
*
record
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
UINT
r
,
i
,
j
,
rows
=
0
,
cols
=
0
;
TRACE
(
"%p %p
\n
"
,
dv
,
record
);
if
(
!
dv
->
table
)
return
ERROR_FUNCTION_FAILED
;
r
=
dv
->
table
->
ops
->
execute
(
dv
->
table
,
record
);
if
(
r
!=
ERROR_SUCCESS
)
return
r
;
r
=
dv
->
table
->
ops
->
get_dimensions
(
dv
->
table
,
&
rows
,
&
cols
);
if
(
r
!=
ERROR_SUCCESS
)
return
r
;
TRACE
(
"blanking %d rows
\n
"
,
rows
);
/* blank out all the rows that match */
for
(
i
=
0
;
i
<
rows
;
i
++
)
for
(
j
=
1
;
j
<=
cols
;
j
++
)
dv
->
table
->
ops
->
set_int
(
dv
->
table
,
i
,
j
,
0
);
return
ERROR_SUCCESS
;
}
static
UINT
DELETE_close
(
struct
tagMSIVIEW
*
view
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p
\n
"
,
dv
);
if
(
!
dv
->
table
)
return
ERROR_FUNCTION_FAILED
;
return
dv
->
table
->
ops
->
close
(
dv
->
table
);
}
static
UINT
DELETE_get_dimensions
(
struct
tagMSIVIEW
*
view
,
UINT
*
rows
,
UINT
*
cols
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %p %p
\n
"
,
dv
,
rows
,
cols
);
if
(
!
dv
->
table
)
return
ERROR_FUNCTION_FAILED
;
*
rows
=
0
;
return
dv
->
table
->
ops
->
get_dimensions
(
dv
->
table
,
NULL
,
cols
);
}
static
UINT
DELETE_get_column_info
(
struct
tagMSIVIEW
*
view
,
UINT
n
,
LPWSTR
*
name
,
UINT
*
type
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %d %p %p
\n
"
,
dv
,
n
,
name
,
type
);
if
(
!
dv
->
table
)
return
ERROR_FUNCTION_FAILED
;
return
dv
->
table
->
ops
->
get_column_info
(
dv
->
table
,
n
,
name
,
type
);
}
static
UINT
DELETE_modify
(
struct
tagMSIVIEW
*
view
,
MSIMODIFY
eModifyMode
,
MSIRECORD
*
rec
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p %d %p
\n
"
,
dv
,
eModifyMode
,
rec
);
return
ERROR_FUNCTION_FAILED
;
}
static
UINT
DELETE_delete
(
struct
tagMSIVIEW
*
view
)
{
MSIDELETEVIEW
*
dv
=
(
MSIDELETEVIEW
*
)
view
;
TRACE
(
"%p
\n
"
,
dv
);
if
(
dv
->
table
)
dv
->
table
->
ops
->
delete
(
dv
->
table
);
HeapFree
(
GetProcessHeap
(),
0
,
dv
);
return
ERROR_SUCCESS
;
}
MSIVIEWOPS
delete_ops
=
{
DELETE_fetch_int
,
DELETE_fetch_stream
,
DELETE_set_int
,
DELETE_insert_row
,
DELETE_execute
,
DELETE_close
,
DELETE_get_dimensions
,
DELETE_get_column_info
,
DELETE_modify
,
DELETE_delete
};
UINT
DELETE_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
MSIVIEW
*
table
)
{
MSIDELETEVIEW
*
dv
=
NULL
;
TRACE
(
"%p
\n
"
,
dv
);
dv
=
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
sizeof
*
dv
);
if
(
!
dv
)
return
ERROR_FUNCTION_FAILED
;
/* fill the structure */
dv
->
view
.
ops
=
&
delete_ops
;
dv
->
db
=
db
;
dv
->
table
=
table
;
*
view
=
&
dv
->
view
;
return
ERROR_SUCCESS
;
}
dlls/msi/query.h
View file @
1afddb3c
...
...
@@ -131,6 +131,8 @@ UINT INSERT_CreateView( MSIDATABASE *db, MSIVIEW **view, LPWSTR table,
UINT
UPDATE_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
,
LPWSTR
table
,
column_assignment
*
list
,
struct
expr
*
expr
);
UINT
DELETE_CreateView
(
MSIDATABASE
*
db
,
MSIVIEW
**
view
,
MSIVIEW
*
table
);
void
delete_expr
(
struct
expr
*
e
);
void
delete_string_list
(
string_list
*
sl
);
void
delete_value_list
(
value_list
*
vl
);
...
...
dlls/msi/sql.y
View file @
1afddb3c
...
...
@@ -129,7 +129,8 @@ static struct expr * EXPR_wildcard();
%type <string> column table string_or_id
%type <column_list> selcollist
%type <query> from unorderedsel oneselect onequery onecreate oneinsert oneupdate
%type <query> from unorderedsel oneselect onequery onecreate oneinsert
%type <query> oneupdate onedelete
%type <expr> expr val column_val const_val
%type <column_type> column_type data_type data_type_l data_count
%type <column_info> column_def table_def
...
...
@@ -159,6 +160,11 @@ onequery:
SQL_input* sql = (SQL_input*) info;
*sql->view = $1;
}
| onedelete
{
SQL_input* sql = (SQL_input*) info;
*sql->view = $1;
}
;
oneinsert:
...
...
@@ -214,6 +220,17 @@ oneupdate:
}
;
onedelete:
TK_DELETE from
{
SQL_input* sql = (SQL_input*) info;
MSIVIEW *delete = NULL;
DELETE_CreateView( sql->db, &delete, $2 );
$$ = delete;
}
;
table_def:
column_def TK_PRIMARY TK_KEY selcollist
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment