-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDatabase1DataSet.xsd
237 lines (237 loc) · 34.1 KB
/
Database1DataSet.xsd
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
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="Database1DataSet" targetNamespace="http://tempuri.org/Database1DataSet.xsd" xmlns:mstns="http://tempuri.org/Database1DataSet.xsd" xmlns="http://tempuri.org/Database1DataSet.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:msprop="urn:schemas-microsoft-com:xml-msprop" attributeFormDefault="qualified" elementFormDefault="qualified">
<xs:annotation>
<xs:appinfo source="urn:schemas-microsoft-com:xml-msdatasource">
<DataSource DefaultConnectionIndex="0" FunctionsComponentName="QueriesTableAdapter" Modifier="AutoLayout, AnsiClass, Class, Public" SchemaSerializationMode="IncludeSchema" xmlns="urn:schemas-microsoft-com:xml-msdatasource">
<Connections>
<Connection AppSettingsObjectName="Settings" AppSettingsPropertyName="Database1ConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="Database1ConnectionString (Settings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.NewPOS.Properties.Settings.GlobalReference.Default.Database1ConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="tblCategoryTableAdapter" GeneratorDataComponentClassName="tblCategoryTableAdapter" Name="tblCategory" UserDataComponentName="tblCategoryTableAdapter">
<MainSource>
<DbSource ConnectionRef="Database1ConnectionString (Settings)" DbObjectName="dbo.tblCategory" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<DeleteCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>DELETE FROM [dbo].[tblCategory] WHERE (([categoryId] = @Original_categoryId) AND ((@IsNull_CategoryName = 1 AND [CategoryName] IS NULL) OR ([CategoryName] = @Original_CategoryName)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_CategoryName" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="CategoryName" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CategoryName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CategoryName" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[tblCategory] ([CategoryName], [categoryImage]) VALUES (@CategoryName, @categoryImage);
SELECT categoryId, CategoryName, categoryImage FROM tblCategory WHERE (categoryId = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CategoryName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CategoryName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Binary" Direction="Input" ParameterName="@categoryImage" Precision="0" ProviderType="VarBinary" Scale="0" Size="0" SourceColumn="categoryImage" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT categoryId, CategoryName, categoryImage FROM dbo.tblCategory</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[tblCategory] SET [CategoryName] = @CategoryName, [categoryImage] = @categoryImage WHERE (([categoryId] = @Original_categoryId) AND ((@IsNull_CategoryName = 1 AND [CategoryName] IS NULL) OR ([CategoryName] = @Original_CategoryName)));
SELECT categoryId, CategoryName, categoryImage FROM tblCategory WHERE (categoryId = @categoryId)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CategoryName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CategoryName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Binary" Direction="Input" ParameterName="@categoryImage" Precision="0" ProviderType="VarBinary" Scale="0" Size="0" SourceColumn="categoryImage" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_CategoryName" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="CategoryName" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CategoryName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CategoryName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="categoryId" ColumnName="categoryId" DataSourceName="[C:\USERS\MAT\SOURCE\WORKSPACES\SWYPE\SWYPEPOS\NEWPOS\DATABASE1.MDF].dbo.tblCategory" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@categoryId" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="categoryId" DataSetColumn="categoryId" />
<Mapping SourceColumn="CategoryName" DataSetColumn="CategoryName" />
<Mapping SourceColumn="categoryImage" DataSetColumn="categoryImage" />
</Mappings>
<Sources>
<DbSource ConnectionRef="Database1ConnectionString (Settings)" DbObjectName="dbo.tblCategory" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillBy" GenerateMethods="Fill" GenerateShortCommands="true" GeneratorSourceName="FillBy" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="FillBy">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT tblCategory.CategoryName, tblCategory.categoryImage, tblCategory.categoryId
FROM tblCategory INNER JOIN
tblProduct ON tblCategory.categoryId = tblProduct.categoryId</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="tblProductTableAdapter" GeneratorDataComponentClassName="tblProductTableAdapter" Name="tblProduct" UserDataComponentName="tblProductTableAdapter">
<MainSource>
<DbSource ConnectionRef="Database1ConnectionString (Settings)" DbObjectName="dbo.tblProduct" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
<DeleteCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>DELETE FROM [tblProduct] WHERE (([productId] = @Original_productId) AND ((@IsNull_productName = 1 AND [productName] IS NULL) OR ([productName] = @Original_productName)) AND ((@IsNull_productPrice = 1 AND [productPrice] IS NULL) OR ([productPrice] = @Original_productPrice)) AND ((@IsNull_categoryId = 1 AND [categoryId] IS NULL) OR ([categoryId] = @Original_categoryId)) AND ((@IsNull_openingstock = 1 AND [openingstock] IS NULL) OR ([openingstock] = @Original_openingstock)) AND ((@IsNull_amountsold = 1 AND [amountsold] IS NULL) OR ([amountsold] = @Original_amountsold)) AND ((@IsNull_alertthreshold = 1 AND [alertthreshold] IS NULL) OR ([alertthreshold] = @Original_alertthreshold)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_productId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="productId" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_productName" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="productName" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_productName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="productName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_productPrice" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="productPrice" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_productPrice" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="productPrice" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_openingstock" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="openingstock" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_openingstock" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="openingstock" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_amountsold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="amountsold" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_amountsold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="amountsold" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_alertthreshold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="alertthreshold" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_alertthreshold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="alertthreshold" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [tblProduct] ([productName], [productPrice], [productImage], [categoryId], [openingstock], [amountsold], [alertthreshold]) VALUES (@productName, @productPrice, @productImage, @categoryId, @openingstock, @amountsold, @alertthreshold);
SELECT productId, productName, productPrice, productImage, categoryId, openingstock, amountsold, alertthreshold FROM tblProduct WHERE (productId = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@productName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="productName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@productPrice" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="productPrice" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Binary" Direction="Input" ParameterName="@productImage" Precision="0" ProviderType="VarBinary" Scale="0" Size="0" SourceColumn="productImage" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@openingstock" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="openingstock" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@amountsold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="amountsold" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@alertthreshold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="alertthreshold" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT productId, productName, productPrice, productImage, categoryId, openingstock, amountsold, alertthreshold
FROM tblProduct</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [tblProduct] SET [productName] = @productName, [productPrice] = @productPrice, [productImage] = @productImage, [categoryId] = @categoryId, [openingstock] = @openingstock, [amountsold] = @amountsold, [alertthreshold] = @alertthreshold WHERE (([productId] = @Original_productId) AND ((@IsNull_productName = 1 AND [productName] IS NULL) OR ([productName] = @Original_productName)) AND ((@IsNull_productPrice = 1 AND [productPrice] IS NULL) OR ([productPrice] = @Original_productPrice)) AND ((@IsNull_categoryId = 1 AND [categoryId] IS NULL) OR ([categoryId] = @Original_categoryId)) AND ((@IsNull_openingstock = 1 AND [openingstock] IS NULL) OR ([openingstock] = @Original_openingstock)) AND ((@IsNull_amountsold = 1 AND [amountsold] IS NULL) OR ([amountsold] = @Original_amountsold)) AND ((@IsNull_alertthreshold = 1 AND [alertthreshold] IS NULL) OR ([alertthreshold] = @Original_alertthreshold)));
SELECT productId, productName, productPrice, productImage, categoryId, openingstock, amountsold, alertthreshold FROM tblProduct WHERE (productId = @productId)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@productName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="productName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@productPrice" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="productPrice" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Binary" Direction="Input" ParameterName="@productImage" Precision="0" ProviderType="VarBinary" Scale="0" Size="0" SourceColumn="productImage" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@openingstock" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="openingstock" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@amountsold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="amountsold" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@alertthreshold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="alertthreshold" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_productId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="productId" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_productName" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="productName" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_productName" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="productName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_productPrice" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="productPrice" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_productPrice" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="productPrice" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_categoryId" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="categoryId" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_openingstock" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="openingstock" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_openingstock" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="openingstock" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_amountsold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="amountsold" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_amountsold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="amountsold" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_alertthreshold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="alertthreshold" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_alertthreshold" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="alertthreshold" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="productId" ColumnName="productId" DataSourceName="[C:\USERS\MAT\SOURCE\WORKSPACES\SWYPE\SWYPEPOS\NEWPOS\DATABASE1.MDF].dbo.tblProduct" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@productId" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="productId" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="productId" DataSetColumn="productId" />
<Mapping SourceColumn="productName" DataSetColumn="productName" />
<Mapping SourceColumn="productPrice" DataSetColumn="productPrice" />
<Mapping SourceColumn="productImage" DataSetColumn="productImage" />
<Mapping SourceColumn="categoryId" DataSetColumn="categoryId" />
<Mapping SourceColumn="openingstock" DataSetColumn="openingstock" />
<Mapping SourceColumn="amountsold" DataSetColumn="amountsold" />
<Mapping SourceColumn="alertthreshold" DataSetColumn="alertthreshold" />
</Mappings>
<Sources>
<DbSource ConnectionRef="Database1ConnectionString (Settings)" DbObjectName="dbo.tblProduct" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillBy" GenerateMethods="Fill" GenerateShortCommands="true" GeneratorSourceName="FillBy" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="FillBy">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT alertthreshold, amountsold, categoryId, openingstock, productId, productImage, productName, productPrice FROM tblProduct</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="Database1ConnectionString (Settings)" DbObjectName="dbo.tblProduct" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillBy1" GenerateMethods="Fill" GenerateShortCommands="true" GeneratorSourceName="FillBy1" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="FillBy1">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT alertthreshold, amountsold, categoryId, openingstock, productId, productImage, productName, productPrice FROM tblProduct</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="Database1DataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="True" msprop:Generator_DataSetName="Database1DataSet" msprop:Generator_UserDSName="Database1DataSet">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="tblCategory" msprop:Generator_TableClassName="tblCategoryDataTable" msprop:Generator_TableVarName="tabletblCategory" msprop:Generator_TablePropName="tblCategory" msprop:Generator_RowDeletingName="tblCategoryRowDeleting" msprop:Generator_RowChangingName="tblCategoryRowChanging" msprop:Generator_RowEvHandlerName="tblCategoryRowChangeEventHandler" msprop:Generator_RowDeletedName="tblCategoryRowDeleted" msprop:Generator_UserTableName="tblCategory" msprop:Generator_RowChangedName="tblCategoryRowChanged" msprop:Generator_RowEvArgName="tblCategoryRowChangeEvent" msprop:Generator_RowClassName="tblCategoryRow">
<xs:complexType>
<xs:sequence>
<xs:element name="categoryId" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columncategoryId" msprop:Generator_ColumnPropNameInRow="categoryId" msprop:Generator_ColumnPropNameInTable="categoryIdColumn" msprop:Generator_UserColumnName="categoryId" type="xs:int" />
<xs:element name="CategoryName" msprop:Generator_ColumnVarNameInTable="columnCategoryName" msprop:Generator_ColumnPropNameInRow="CategoryName" msprop:Generator_ColumnPropNameInTable="CategoryNameColumn" msprop:Generator_UserColumnName="CategoryName" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="categoryImage" msprop:Generator_ColumnVarNameInTable="columncategoryImage" msprop:Generator_ColumnPropNameInRow="categoryImage" msprop:Generator_ColumnPropNameInTable="categoryImageColumn" msprop:Generator_UserColumnName="categoryImage" type="xs:base64Binary" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="tblProduct" msprop:Generator_TableClassName="tblProductDataTable" msprop:Generator_TableVarName="tabletblProduct" msprop:Generator_TablePropName="tblProduct" msprop:Generator_RowDeletingName="tblProductRowDeleting" msprop:Generator_RowChangingName="tblProductRowChanging" msprop:Generator_RowEvHandlerName="tblProductRowChangeEventHandler" msprop:Generator_RowDeletedName="tblProductRowDeleted" msprop:Generator_UserTableName="tblProduct" msprop:Generator_RowChangedName="tblProductRowChanged" msprop:Generator_RowEvArgName="tblProductRowChangeEvent" msprop:Generator_RowClassName="tblProductRow">
<xs:complexType>
<xs:sequence>
<xs:element name="productId" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnproductId" msprop:Generator_ColumnPropNameInRow="productId" msprop:Generator_ColumnPropNameInTable="productIdColumn" msprop:Generator_UserColumnName="productId" type="xs:int" />
<xs:element name="productName" msprop:Generator_ColumnVarNameInTable="columnproductName" msprop:Generator_ColumnPropNameInRow="productName" msprop:Generator_ColumnPropNameInTable="productNameColumn" msprop:Generator_UserColumnName="productName" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="productPrice" msprop:Generator_ColumnVarNameInTable="columnproductPrice" msprop:Generator_ColumnPropNameInRow="productPrice" msprop:Generator_ColumnPropNameInTable="productPriceColumn" msprop:Generator_UserColumnName="productPrice" type="xs:decimal" minOccurs="0" />
<xs:element name="productImage" msprop:Generator_ColumnVarNameInTable="columnproductImage" msprop:Generator_ColumnPropNameInRow="productImage" msprop:Generator_ColumnPropNameInTable="productImageColumn" msprop:Generator_UserColumnName="productImage" type="xs:base64Binary" minOccurs="0" />
<xs:element name="categoryId" msprop:Generator_ColumnVarNameInTable="columncategoryId" msprop:Generator_ColumnPropNameInRow="categoryId" msprop:Generator_ColumnPropNameInTable="categoryIdColumn" msprop:Generator_UserColumnName="categoryId" type="xs:int" minOccurs="0" />
<xs:element name="openingstock" msprop:Generator_ColumnVarNameInTable="columnopeningstock" msprop:Generator_ColumnPropNameInRow="openingstock" msprop:Generator_ColumnPropNameInTable="openingstockColumn" msprop:Generator_UserColumnName="openingstock" type="xs:int" minOccurs="0" />
<xs:element name="amountsold" msprop:Generator_ColumnVarNameInTable="columnamountsold" msprop:Generator_ColumnPropNameInRow="amountsold" msprop:Generator_ColumnPropNameInTable="amountsoldColumn" msprop:Generator_UserColumnName="amountsold" type="xs:int" minOccurs="0" />
<xs:element name="alertthreshold" msprop:Generator_ColumnVarNameInTable="columnalertthreshold" msprop:Generator_ColumnPropNameInRow="alertthreshold" msprop:Generator_ColumnPropNameInTable="alertthresholdColumn" msprop:Generator_UserColumnName="alertthreshold" type="xs:int" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
<xs:selector xpath=".//mstns:tblCategory" />
<xs:field xpath="mstns:categoryId" />
</xs:unique>
<xs:unique name="tblProduct_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
<xs:selector xpath=".//mstns:tblProduct" />
<xs:field xpath="mstns:productId" />
</xs:unique>
</xs:element>
<xs:annotation>
<xs:appinfo>
<msdata:Relationship name="FK_tblProduct_tblCategory" msdata:parent="tblCategory" msdata:child="tblProduct" msdata:parentkey="categoryId" msdata:childkey="categoryId" msprop:Generator_UserChildTable="tblProduct" msprop:Generator_ChildPropName="GettblProductRows" msprop:Generator_UserRelationName="FK_tblProduct_tblCategory" msprop:Generator_ParentPropName="tblCategoryRow" msprop:Generator_RelationVarName="relationFK_tblProduct_tblCategory" msprop:Generator_UserParentTable="tblCategory" />
</xs:appinfo>
</xs:annotation>
</xs:schema>