-
Notifications
You must be signed in to change notification settings - Fork 2
/
SMS.xsd
1071 lines (1071 loc) · 178 KB
/
SMS.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
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
<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="SMS" targetNamespace="http://tempuri.org/SMS.xsd" xmlns:mstns="http://tempuri.org/SMS.xsd" xmlns="http://tempuri.org/SMS.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="MySettings" AppSettingsPropertyName="SMSConnectionString" ConnectionStringObject="" IsAppSettingsProperty="true" Modifier="Assembly" Name="SMSConnectionString (MySettings)" ParameterPrefix="@" PropertyReference="ApplicationSettings.School_Management_System.My.MySettings.GlobalReference.Default.SMSConnectionString" Provider="System.Data.SqlClient" />
</Connections>
<Tables>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="feesTableAdapter" GeneratorDataComponentClassName="feesTableAdapter" Name="fees" UserDataComponentName="feesTableAdapter">
<MainSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.fees" 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].[fees] WHERE (([ID] = @Original_ID) AND ((@IsNull_Registration_No = 1 AND [Registration No] IS NULL) OR ([Registration No] = @Original_Registration_No)) AND ((@IsNull_Full_Name = 1 AND [Full Name] IS NULL) OR ([Full Name] = @Original_Full_Name)) AND ((@IsNull_Class = 1 AND [Class] IS NULL) OR ([Class] = @Original_Class)) AND ((@IsNull_Fee = 1 AND [Fee] IS NULL) OR ([Fee] = @Original_Fee)) AND ((@IsNull_Fee_paid = 1 AND [Fee_paid] IS NULL) OR ([Fee_paid] = @Original_Fee_paid)) AND ((@IsNull_Balance = 1 AND [Balance] IS NULL) OR ([Balance] = @Original_Balance)) AND ((@IsNull_Status = 1 AND [Status] IS NULL) OR ([Status] = @Original_Status)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Registration_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Full_Name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Class" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Fee" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fee" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Fee" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Fee_paid" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fee_paid" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Fee_paid" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee_paid" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Balance" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Balance" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Balance" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Balance" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Status" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Status" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Status" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Status" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[fees] ([Registration No], [Full Name], [Class], [Fee], [Fee_paid], [Balance], [Status]) VALUES (@Registration_No, @Full_Name, @Class, @Fee, @Fee_paid, @Balance, @Status);
SELECT ID, [Registration No], [Full Name], Class, Fee, Fee_paid, Balance, Status FROM fees WHERE (ID = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Fee" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Fee_paid" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee_paid" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Balance" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Balance" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Status" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Status" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT ID, [Registration No], [Full Name], Class, Fee, Fee_paid, Balance, Status FROM dbo.fees</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[fees] SET [Registration No] = @Registration_No, [Full Name] = @Full_Name, [Class] = @Class, [Fee] = @Fee, [Fee_paid] = @Fee_paid, [Balance] = @Balance, [Status] = @Status WHERE (([ID] = @Original_ID) AND ((@IsNull_Registration_No = 1 AND [Registration No] IS NULL) OR ([Registration No] = @Original_Registration_No)) AND ((@IsNull_Full_Name = 1 AND [Full Name] IS NULL) OR ([Full Name] = @Original_Full_Name)) AND ((@IsNull_Class = 1 AND [Class] IS NULL) OR ([Class] = @Original_Class)) AND ((@IsNull_Fee = 1 AND [Fee] IS NULL) OR ([Fee] = @Original_Fee)) AND ((@IsNull_Fee_paid = 1 AND [Fee_paid] IS NULL) OR ([Fee_paid] = @Original_Fee_paid)) AND ((@IsNull_Balance = 1 AND [Balance] IS NULL) OR ([Balance] = @Original_Balance)) AND ((@IsNull_Status = 1 AND [Status] IS NULL) OR ([Status] = @Original_Status)));
SELECT ID, [Registration No], [Full Name], Class, Fee, Fee_paid, Balance, Status FROM fees WHERE (ID = @ID)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Fee" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Fee_paid" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee_paid" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Balance" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Balance" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Status" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Status" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Registration_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Full_Name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Class" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Fee" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fee" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Fee" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Fee_paid" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Fee_paid" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Fee_paid" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Fee_paid" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Balance" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Balance" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Balance" Precision="18" ProviderType="Decimal" Scale="2" Size="0" SourceColumn="Balance" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Status" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Status" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Status" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Status" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="ID" ColumnName="ID" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="ID" DataSetColumn="ID" />
<Mapping SourceColumn="Registration No" DataSetColumn="Registration No" />
<Mapping SourceColumn="Full Name" DataSetColumn="Full Name" />
<Mapping SourceColumn="Class" DataSetColumn="Class" />
<Mapping SourceColumn="Fee" DataSetColumn="Fee" />
<Mapping SourceColumn="Fee_paid" DataSetColumn="Fee_paid" />
<Mapping SourceColumn="Balance" DataSetColumn="Balance" />
<Mapping SourceColumn="Status" DataSetColumn="Status" />
</Mappings>
<Sources />
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="StudentsTableAdapter" GeneratorDataComponentClassName="StudentsTableAdapter" Name="Students" UserDataComponentName="StudentsTableAdapter">
<MainSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Students" 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].[Students] WHERE (([StudentID] = @Original_StudentID) AND ([Registration No] = @Original_Registration_No) AND ([Full Name] = @Original_Full_Name) AND ((@IsNull_Gender = 1 AND [Gender] IS NULL) OR ([Gender] = @Original_Gender)) AND ((@IsNull_Age = 1 AND [Age] IS NULL) OR ([Age] = @Original_Age)) AND ((@IsNull_Contact_No = 1 AND [Contact No] IS NULL) OR ([Contact No] = @Original_Contact_No)) AND ((@IsNull_Email_ID = 1 AND [Email ID] IS NULL) OR ([Email ID] = @Original_Email_ID)) AND ((@IsNull_Class = 1 AND [Class] IS NULL) OR ([Class] = @Original_Class)) AND ((@IsNull_Stream = 1 AND [Stream] IS NULL) OR ([Stream] = @Original_Stream)) AND ((@IsNull_Picture = 1 AND [Picture] IS NULL) OR ([Picture] = @Original_Picture)) AND ((@IsNull_Registration_Date = 1 AND [Registration Date] IS NULL) OR ([Registration Date] = @Original_Registration_Date)) AND ((@IsNull_Blood_Group = 1 AND [Blood Group] IS NULL) OR ([Blood Group] = @Original_Blood_Group)) AND ((@IsNull_Mother_name = 1 AND [Mother name] IS NULL) OR ([Mother name] = @Original_Mother_name)) AND ((@IsNull_mother_occ = 1 AND [mother occ] IS NULL) OR ([mother occ] = @Original_mother_occ)) AND ((@IsNull_mother_contact = 1 AND [mother contact] IS NULL) OR ([mother contact] = @Original_mother_contact)) AND ((@IsNull_mother_salary = 1 AND [mother salary] IS NULL) OR ([mother salary] = @Original_mother_salary)) AND ((@IsNull_father_name = 1 AND [father name] IS NULL) OR ([father name] = @Original_father_name)) AND ((@IsNull_father_occ = 1 AND [father occ] IS NULL) OR ([father occ] = @Original_father_occ)) AND ((@IsNull_father_contact = 1 AND [father contact] IS NULL) OR ([father contact] = @Original_father_contact)) AND ((@IsNull_father_salary = 1 AND [father salary] IS NULL) OR ([father salary] = @Original_father_salary)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_StudentID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="StudentID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Gender" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Gender" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Gender" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Age" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Age" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Contact_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Email_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Email ID" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Email_ID" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Email ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Class" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Stream" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Picture" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Registration_Date" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Registration Date" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Date" Direction="Input" ParameterName="@Original_Registration_Date" Precision="0" ProviderType="Date" Scale="0" Size="0" SourceColumn="Registration Date" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Blood_Group" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Blood Group" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Blood_Group" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Blood Group" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Mother_name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Mother name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Mother_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Mother name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mother_occ" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mother occ" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_mother_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother occ" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mother_contact" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mother contact" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_mother_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother contact" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mother_salary" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mother salary" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@Original_mother_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="mother salary" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_father_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_occ" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father occ" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_father_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father occ" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_contact" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father contact" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_father_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father contact" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_salary" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father salary" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@Original_father_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="father salary" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[Students] ([Registration No], [Full Name], [Gender], [Age], [Ressedential Address], [Permanent Address], [Contact No], [Email ID], [Class], [Stream], [Picture], [Registration Date], [Blood Group], [Mother name], [mother occ], [mother contact], [mother salary], [father name], [father occ], [father contact], [father salary]) VALUES (@Registration_No, @Full_Name, @Gender, @Age, @Ressedential_Address, @Permanent_Address, @Contact_No, @Email_ID, @Class, @Stream, @Picture, @Registration_Date, @Blood_Group, @Mother_name, @mother_occ, @mother_contact, @mother_salary, @father_name, @father_occ, @father_contact, @father_salary);
SELECT StudentID, [Registration No], [Full Name], Gender, Age, [Ressedential Address], [Permanent Address], [Contact No], [Email ID], Class, Stream, Picture, [Registration Date], [Blood Group], [Mother name], [mother occ], [mother contact], [mother salary], [father name], [father occ], [father contact], [father salary] FROM Students WHERE (StudentID = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Gender" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Age" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Ressedential_Address" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Ressedential Address" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Permanent_Address" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Permanent Address" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Email_ID" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Email ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Date" Direction="Input" ParameterName="@Registration_Date" Precision="0" ProviderType="Date" Scale="0" Size="0" SourceColumn="Registration Date" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Blood_Group" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Blood Group" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Mother_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Mother name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@mother_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother occ" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@mother_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother contact" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@mother_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="mother salary" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@father_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@father_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father occ" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@father_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father contact" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@father_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="father salary" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT StudentID, [Registration No], [Full Name], Gender, Age, [Ressedential Address], [Permanent Address], [Contact No], [Email ID], Class, Stream, Picture, [Registration Date], [Blood Group], [Mother name], [mother occ], [mother contact], [mother salary], [father name], [father occ], [father contact], [father salary] FROM dbo.Students</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[Students] SET [Registration No] = @Registration_No, [Full Name] = @Full_Name, [Gender] = @Gender, [Age] = @Age, [Ressedential Address] = @Ressedential_Address, [Permanent Address] = @Permanent_Address, [Contact No] = @Contact_No, [Email ID] = @Email_ID, [Class] = @Class, [Stream] = @Stream, [Picture] = @Picture, [Registration Date] = @Registration_Date, [Blood Group] = @Blood_Group, [Mother name] = @Mother_name, [mother occ] = @mother_occ, [mother contact] = @mother_contact, [mother salary] = @mother_salary, [father name] = @father_name, [father occ] = @father_occ, [father contact] = @father_contact, [father salary] = @father_salary WHERE (([StudentID] = @Original_StudentID) AND ([Registration No] = @Original_Registration_No) AND ([Full Name] = @Original_Full_Name) AND ((@IsNull_Gender = 1 AND [Gender] IS NULL) OR ([Gender] = @Original_Gender)) AND ((@IsNull_Age = 1 AND [Age] IS NULL) OR ([Age] = @Original_Age)) AND ((@IsNull_Contact_No = 1 AND [Contact No] IS NULL) OR ([Contact No] = @Original_Contact_No)) AND ((@IsNull_Email_ID = 1 AND [Email ID] IS NULL) OR ([Email ID] = @Original_Email_ID)) AND ((@IsNull_Class = 1 AND [Class] IS NULL) OR ([Class] = @Original_Class)) AND ((@IsNull_Stream = 1 AND [Stream] IS NULL) OR ([Stream] = @Original_Stream)) AND ((@IsNull_Picture = 1 AND [Picture] IS NULL) OR ([Picture] = @Original_Picture)) AND ((@IsNull_Registration_Date = 1 AND [Registration Date] IS NULL) OR ([Registration Date] = @Original_Registration_Date)) AND ((@IsNull_Blood_Group = 1 AND [Blood Group] IS NULL) OR ([Blood Group] = @Original_Blood_Group)) AND ((@IsNull_Mother_name = 1 AND [Mother name] IS NULL) OR ([Mother name] = @Original_Mother_name)) AND ((@IsNull_mother_occ = 1 AND [mother occ] IS NULL) OR ([mother occ] = @Original_mother_occ)) AND ((@IsNull_mother_contact = 1 AND [mother contact] IS NULL) OR ([mother contact] = @Original_mother_contact)) AND ((@IsNull_mother_salary = 1 AND [mother salary] IS NULL) OR ([mother salary] = @Original_mother_salary)) AND ((@IsNull_father_name = 1 AND [father name] IS NULL) OR ([father name] = @Original_father_name)) AND ((@IsNull_father_occ = 1 AND [father occ] IS NULL) OR ([father occ] = @Original_father_occ)) AND ((@IsNull_father_contact = 1 AND [father contact] IS NULL) OR ([father contact] = @Original_father_contact)) AND ((@IsNull_father_salary = 1 AND [father salary] IS NULL) OR ([father salary] = @Original_father_salary)));
SELECT StudentID, [Registration No], [Full Name], Gender, Age, [Ressedential Address], [Permanent Address], [Contact No], [Email ID], Class, Stream, Picture, [Registration Date], [Blood Group], [Mother name], [mother occ], [mother contact], [mother salary], [father name], [father occ], [father contact], [father salary] FROM Students WHERE (StudentID = @StudentID)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Gender" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Age" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Ressedential_Address" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Ressedential Address" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Permanent_Address" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Permanent Address" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Email_ID" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Email ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Date" Direction="Input" ParameterName="@Registration_Date" Precision="0" ProviderType="Date" Scale="0" Size="0" SourceColumn="Registration Date" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Blood_Group" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Blood Group" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Mother_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Mother name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@mother_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother occ" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@mother_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother contact" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@mother_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="mother salary" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@father_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@father_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father occ" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@father_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father contact" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@father_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="father salary" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_StudentID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="StudentID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Gender" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Gender" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Gender" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Age" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_Age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Age" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Contact_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Email_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Email ID" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Email_ID" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Email ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Class" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Stream" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Picture" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Registration_Date" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Registration Date" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Date" Direction="Input" ParameterName="@Original_Registration_Date" Precision="0" ProviderType="Date" Scale="0" Size="0" SourceColumn="Registration Date" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Blood_Group" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Blood Group" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Blood_Group" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Blood Group" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Mother_name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Mother name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Mother_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Mother name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mother_occ" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mother occ" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_mother_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother occ" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mother_contact" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mother contact" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_mother_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="mother contact" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_mother_salary" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="mother salary" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@Original_mother_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="mother salary" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_father_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_occ" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father occ" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_father_occ" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father occ" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_contact" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father contact" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_father_contact" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="father contact" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_father_salary" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="father salary" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Double" Direction="Input" ParameterName="@Original_father_salary" Precision="0" ProviderType="Float" Scale="0" Size="0" SourceColumn="father salary" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="StudentID" ColumnName="StudentID" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@StudentID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="StudentID" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="StudentID" DataSetColumn="StudentID" />
<Mapping SourceColumn="Registration No" DataSetColumn="Registration No" />
<Mapping SourceColumn="Full Name" DataSetColumn="Full Name" />
<Mapping SourceColumn="Gender" DataSetColumn="Gender" />
<Mapping SourceColumn="Age" DataSetColumn="Age" />
<Mapping SourceColumn="Ressedential Address" DataSetColumn="Ressedential Address" />
<Mapping SourceColumn="Permanent Address" DataSetColumn="Permanent Address" />
<Mapping SourceColumn="Contact No" DataSetColumn="Contact No" />
<Mapping SourceColumn="Email ID" DataSetColumn="Email ID" />
<Mapping SourceColumn="Class" DataSetColumn="Class" />
<Mapping SourceColumn="Stream" DataSetColumn="Stream" />
<Mapping SourceColumn="Picture" DataSetColumn="Picture" />
<Mapping SourceColumn="Registration Date" DataSetColumn="Registration Date" />
<Mapping SourceColumn="Blood Group" DataSetColumn="Blood Group" />
<Mapping SourceColumn="Mother name" DataSetColumn="Mother name" />
<Mapping SourceColumn="mother occ" DataSetColumn="mother occ" />
<Mapping SourceColumn="mother contact" DataSetColumn="mother contact" />
<Mapping SourceColumn="mother salary" DataSetColumn="mother salary" />
<Mapping SourceColumn="father name" DataSetColumn="father name" />
<Mapping SourceColumn="father occ" DataSetColumn="father occ" />
<Mapping SourceColumn="father contact" DataSetColumn="father contact" />
<Mapping SourceColumn="father salary" DataSetColumn="father salary" />
</Mappings>
<Sources>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Students" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByFullname" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetDataByFullname" GeneratorSourceName="FillByFullname" GetMethodModifier="Public" GetMethodName="GetDataByFullname" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataByFullname" UserSourceName="FillByFullname">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT StudentID, [Registration No], [Full Name], Gender, Age, [Ressedential Address], [Permanent Address], [Contact No], [Email ID], Class, Stream, Picture, [Registration Date], [Blood Group], [Mother name], [mother occ],
[mother contact], [mother salary], [father name], [father occ], [father contact], [father salary]
FROM Students
WHERE ([Full Name] LIKE @Fullname)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="Fullname" ColumnName="Full Name" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Students" DataTypeServer="nvarchar(100)" DbType="String" Direction="Input" ParameterName="@Fullname" Precision="0" ProviderType="NVarChar" Scale="0" Size="100" SourceColumn="Full Name" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="TeachersTableAdapter" GeneratorDataComponentClassName="TeachersTableAdapter" Name="Teachers" UserDataComponentName="TeachersTableAdapter">
<MainSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Teachers" 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].[Teachers] WHERE (([id] = @Original_id) AND ((@IsNull_staff_id = 1 AND [staff id] IS NULL) OR ([staff id] = @Original_staff_id)) AND ((@IsNull_full_name = 1 AND [full name] IS NULL) OR ([full name] = @Original_full_name)) AND ((@IsNull_gender = 1 AND [gender] IS NULL) OR ([gender] = @Original_gender)) AND ((@IsNull_age = 1 AND [age] IS NULL) OR ([age] = @Original_age)) AND ((@IsNull_desingnation = 1 AND [desingnation] IS NULL) OR ([desingnation] = @Original_desingnation)) AND ((@IsNull_Picture = 1 AND [Picture] IS NULL) OR ([Picture] = @Original_Picture)) AND ((@IsNull_Contact_No = 1 AND [Contact No] IS NULL) OR ([Contact No] = @Original_Contact_No)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="id" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_staff_id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="staff id" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_staff_id" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="staff id" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_full_name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="full name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_full_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="full name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_gender" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="gender" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="gender" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="age" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="age" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_desingnation" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="desingnation" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_desingnation" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="desingnation" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Picture" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Contact_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[Teachers] ([staff id], [full name], [gender], [age], [desingnation], [Picture], [Address], [Contact No], [email ID]) VALUES (@staff_id, @full_name, @gender, @age, @desingnation, @Picture, @Address, @Contact_No, @email_ID);
SELECT id, [staff id], [full name], gender, age, desingnation, Picture, Address, [Contact No], [email ID] FROM Teachers WHERE (id = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@staff_id" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="staff id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@full_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="full name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="gender" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="age" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@desingnation" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="desingnation" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Address" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Address" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@email_ID" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="email ID" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT id, [staff id], [full name], gender, age, desingnation, Picture, Address, [Contact No], [email ID] FROM dbo.Teachers</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[Teachers] SET [staff id] = @staff_id, [full name] = @full_name, [gender] = @gender, [age] = @age, [desingnation] = @desingnation, [Picture] = @Picture, [Address] = @Address, [Contact No] = @Contact_No, [email ID] = @email_ID WHERE (([id] = @Original_id) AND ((@IsNull_staff_id = 1 AND [staff id] IS NULL) OR ([staff id] = @Original_staff_id)) AND ((@IsNull_full_name = 1 AND [full name] IS NULL) OR ([full name] = @Original_full_name)) AND ((@IsNull_gender = 1 AND [gender] IS NULL) OR ([gender] = @Original_gender)) AND ((@IsNull_age = 1 AND [age] IS NULL) OR ([age] = @Original_age)) AND ((@IsNull_desingnation = 1 AND [desingnation] IS NULL) OR ([desingnation] = @Original_desingnation)) AND ((@IsNull_Picture = 1 AND [Picture] IS NULL) OR ([Picture] = @Original_Picture)) AND ((@IsNull_Contact_No = 1 AND [Contact No] IS NULL) OR ([Contact No] = @Original_Contact_No)));
SELECT id, [staff id], [full name], gender, age, desingnation, Picture, Address, [Contact No], [email ID] FROM Teachers WHERE (id = @id)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@staff_id" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="staff id" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@full_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="full name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="gender" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="age" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@desingnation" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="desingnation" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Address" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Address" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@email_ID" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="email ID" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="id" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_staff_id" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="staff id" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_staff_id" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="staff id" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_full_name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="full name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_full_name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="full name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_gender" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="gender" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_gender" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="gender" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="age" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_age" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="age" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_desingnation" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="desingnation" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_desingnation" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="desingnation" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Picture" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Picture" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Picture" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Contact_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Contact_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Contact No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="id" ColumnName="id" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@id" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="id" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="id" DataSetColumn="id" />
<Mapping SourceColumn="staff id" DataSetColumn="staff id" />
<Mapping SourceColumn="full name" DataSetColumn="full name" />
<Mapping SourceColumn="gender" DataSetColumn="gender" />
<Mapping SourceColumn="age" DataSetColumn="age" />
<Mapping SourceColumn="desingnation" DataSetColumn="desingnation" />
<Mapping SourceColumn="Picture" DataSetColumn="Picture" />
<Mapping SourceColumn="Address" DataSetColumn="Address" />
<Mapping SourceColumn="Contact No" DataSetColumn="Contact No" />
<Mapping SourceColumn="email ID" DataSetColumn="email ID" />
</Mappings>
<Sources>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Teachers" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillBySearchString" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetDataBySearchString" GeneratorSourceName="FillBySearchString" GetMethodModifier="Public" GetMethodName="GetDataBySearchString" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBySearchString" UserSourceName="FillBySearchString">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT id, [staff id], [full name], gender, age, desingnation, Picture, Address, [Contact No], [email ID]
FROM Teachers
WHERE ([full name] LIKE @Fullname) OR
([staff id] = @staffID)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="Fullname" ColumnName="full name" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Teachers" DataTypeServer="nvarchar(100)" DbType="String" Direction="Input" ParameterName="@Fullname" Precision="0" ProviderType="NVarChar" Scale="0" Size="100" SourceColumn="full name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="staffID" ColumnName="staff id" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Teachers" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@staffID" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="staff id" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="UsersTableAdapter" GeneratorDataComponentClassName="UsersTableAdapter" Name="Users" UserDataComponentName="UsersTableAdapter">
<MainSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Users" 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].[Users] WHERE (([ID] = @Original_ID) AND ([UserName] = @Original_UserName) AND ([Password] = @Original_Password) AND ((@IsNull_FullName = 1 AND [FullName] IS NULL) OR ([FullName] = @Original_FullName)) AND ((@IsNull_UserPicture = 1 AND [UserPicture] IS NULL) OR ([UserPicture] = @Original_UserPicture)) AND ([AccessLevel] = @Original_AccessLevel))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_UserName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_Password" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="Password" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FullName" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FullName" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_FullName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="FullName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_UserPicture" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="UserPicture" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_UserPicture" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserPicture" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_AccessLevel" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="AccessLevel" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[Users] ([UserName], [Password], [FullName], [UserPicture], [AccessLevel]) VALUES (@UserName, @Password, @FullName, @UserPicture, @AccessLevel);
SELECT ID, UserName, Password, FullName, UserPicture, AccessLevel FROM Users WHERE (ID = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@UserName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Password" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="Password" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@FullName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="FullName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@UserPicture" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserPicture" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@AccessLevel" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="AccessLevel" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT ID, UserName, Password, FullName, UserPicture, AccessLevel FROM dbo.Users</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[Users] SET [UserName] = @UserName, [Password] = @Password, [FullName] = @FullName, [UserPicture] = @UserPicture, [AccessLevel] = @AccessLevel WHERE (([ID] = @Original_ID) AND ([UserName] = @Original_UserName) AND ([Password] = @Original_Password) AND ((@IsNull_FullName = 1 AND [FullName] IS NULL) OR ([FullName] = @Original_FullName)) AND ((@IsNull_UserPicture = 1 AND [UserPicture] IS NULL) OR ([UserPicture] = @Original_UserPicture)) AND ([AccessLevel] = @Original_AccessLevel));
SELECT ID, UserName, Password, FullName, UserPicture, AccessLevel FROM Users WHERE (ID = @ID)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@UserName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Password" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="Password" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@FullName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="FullName" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@UserPicture" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserPicture" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@AccessLevel" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="AccessLevel" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_UserName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_Password" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="Password" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FullName" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FullName" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_FullName" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="FullName" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_UserPicture" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="UserPicture" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="AnsiString" Direction="Input" ParameterName="@Original_UserPicture" Precision="0" ProviderType="VarChar" Scale="0" Size="0" SourceColumn="UserPicture" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_AccessLevel" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="AccessLevel" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="ID" ColumnName="ID" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="ID" DataSetColumn="ID" />
<Mapping SourceColumn="UserName" DataSetColumn="UserName" />
<Mapping SourceColumn="Password" DataSetColumn="Password" />
<Mapping SourceColumn="FullName" DataSetColumn="FullName" />
<Mapping SourceColumn="UserPicture" DataSetColumn="UserPicture" />
<Mapping SourceColumn="AccessLevel" DataSetColumn="AccessLevel" />
</Mappings>
<Sources />
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="AssessmentsTableAdapter" GeneratorDataComponentClassName="AssessmentsTableAdapter" Name="Assessments" UserDataComponentName="AssessmentsTableAdapter">
<MainSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Assessments" 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].[Assessments] WHERE (([ID] = @Original_ID) AND ((@IsNull_Registration_No = 1 AND [Registration_No] IS NULL) OR ([Registration_No] = @Original_Registration_No)) AND ((@IsNull_Full_Name = 1 AND [Full_Name] IS NULL) OR ([Full_Name] = @Original_Full_Name)) AND ((@IsNull_Class = 1 AND [Class] IS NULL) OR ([Class] = @Original_Class)) AND ((@IsNull_Stream = 1 AND [Stream] IS NULL) OR ([Stream] = @Original_Stream)) AND ((@IsNull_Subject = 1 AND [Subject] IS NULL) OR ([Subject] = @Original_Subject)) AND ((@IsNull_FA1 = 1 AND [FA1] IS NULL) OR ([FA1] = @Original_FA1)) AND ((@IsNull_FA2 = 1 AND [FA2] IS NULL) OR ([FA2] = @Original_FA2)) AND ((@IsNull_SA1 = 1 AND [SA1] IS NULL) OR ([SA1] = @Original_SA1)) AND ((@IsNull_Total1 = 1 AND [Total1] IS NULL) OR ([Total1] = @Original_Total1)) AND ((@IsNull_FA3 = 1 AND [FA3] IS NULL) OR ([FA3] = @Original_FA3)) AND ((@IsNull_FA4 = 1 AND [FA4] IS NULL) OR ([FA4] = @Original_FA4)) AND ((@IsNull_SA2 = 1 AND [SA2] IS NULL) OR ([SA2] = @Original_SA2)) AND ((@IsNull_Total2 = 1 AND [Total2] IS NULL) OR ([Total2] = @Original_Total2)) AND ((@IsNull_TotalFA = 1 AND [TotalFA] IS NULL) OR ([TotalFA] = @Original_TotalFA)) AND ((@IsNull_TotalSA = 1 AND [TotalSA] IS NULL) OR ([TotalSA] = @Original_TotalSA)) AND ((@IsNull_Total = 1 AND [Total] IS NULL) OR ([Total] = @Original_Total)) AND ((@IsNull_GPA = 1 AND [GPA] IS NULL) OR ([GPA] = @Original_GPA)) AND ((@IsNull_Grade = 1 AND [Grade] IS NULL) OR ([Grade] = @Original_Grade)) AND ((@IsNull_Position = 1 AND [Position] IS NULL) OR ([Position] = @Original_Position)) AND ((@IsNull_Remark = 1 AND [Remark] IS NULL) OR ([Remark] = @Original_Remark)))</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Registration_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Registration_No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration_No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Full_Name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Full_Name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full_Name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Class" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Stream" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Subject" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Subject" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Subject" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Subject" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA1" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA1" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA1" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA2" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA2" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA2" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_SA1" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="SA1" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_SA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA1" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Total1" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Total1" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Total1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total1" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA3" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA3" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA3" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA3" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA4" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA4" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA4" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA4" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_SA2" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="SA2" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_SA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA2" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Total2" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Total2" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Total2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total2" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_TotalFA" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="TotalFA" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_TotalFA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalFA" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_TotalSA" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="TotalSA" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_TotalSA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalSA" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Total" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Total" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Total" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_GPA" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="GPA" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_GPA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="GPA" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Grade" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Grade" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Grade" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Grade" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Position" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Position" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Position" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Position" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Remark" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Remark" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Remark" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Remark" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[Assessments] ([Registration_No], [Full_Name], [Class], [Stream], [Subject], [FA1], [FA2], [SA1], [Total1], [FA3], [FA4], [SA2], [Total2], [TotalFA], [TotalSA], [Total], [GPA], [Grade], [Position], [Remark]) VALUES (@Registration_No, @Full_Name, @Class, @Stream, @Subject, @FA1, @FA2, @SA1, @Total1, @FA3, @FA4, @SA2, @Total2, @TotalFA, @TotalSA, @Total, @GPA, @Grade, @Position, @Remark);
SELECT ID, Registration_No, Full_Name, Class, Stream, Subject, FA1, FA2, SA1, Total1, FA3, FA4, SA2, Total2, TotalFA, TotalSA, Total, GPA, Grade, Position, Remark FROM Assessments WHERE (ID = SCOPE_IDENTITY())</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration_No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full_Name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Subject" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Subject" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@SA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Total1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA3" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA4" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@SA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Total2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@TotalFA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalFA" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@TotalSA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalSA" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Total" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@GPA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="GPA" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Grade" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Grade" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Position" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Position" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Remark" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Remark" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT ID, Registration_No, Full_Name, Class, Stream, Subject, FA1, FA2, SA1, Total1, FA3, FA4, SA2, Total2, TotalFA, TotalSA, Total, GPA, Grade, Position, Remark FROM dbo.Assessments</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[Assessments] SET [Registration_No] = @Registration_No, [Full_Name] = @Full_Name, [Class] = @Class, [Stream] = @Stream, [Subject] = @Subject, [FA1] = @FA1, [FA2] = @FA2, [SA1] = @SA1, [Total1] = @Total1, [FA3] = @FA3, [FA4] = @FA4, [SA2] = @SA2, [Total2] = @Total2, [TotalFA] = @TotalFA, [TotalSA] = @TotalSA, [Total] = @Total, [GPA] = @GPA, [Grade] = @Grade, [Position] = @Position, [Remark] = @Remark WHERE (([ID] = @Original_ID) AND ((@IsNull_Registration_No = 1 AND [Registration_No] IS NULL) OR ([Registration_No] = @Original_Registration_No)) AND ((@IsNull_Full_Name = 1 AND [Full_Name] IS NULL) OR ([Full_Name] = @Original_Full_Name)) AND ((@IsNull_Class = 1 AND [Class] IS NULL) OR ([Class] = @Original_Class)) AND ((@IsNull_Stream = 1 AND [Stream] IS NULL) OR ([Stream] = @Original_Stream)) AND ((@IsNull_Subject = 1 AND [Subject] IS NULL) OR ([Subject] = @Original_Subject)) AND ((@IsNull_FA1 = 1 AND [FA1] IS NULL) OR ([FA1] = @Original_FA1)) AND ((@IsNull_FA2 = 1 AND [FA2] IS NULL) OR ([FA2] = @Original_FA2)) AND ((@IsNull_SA1 = 1 AND [SA1] IS NULL) OR ([SA1] = @Original_SA1)) AND ((@IsNull_Total1 = 1 AND [Total1] IS NULL) OR ([Total1] = @Original_Total1)) AND ((@IsNull_FA3 = 1 AND [FA3] IS NULL) OR ([FA3] = @Original_FA3)) AND ((@IsNull_FA4 = 1 AND [FA4] IS NULL) OR ([FA4] = @Original_FA4)) AND ((@IsNull_SA2 = 1 AND [SA2] IS NULL) OR ([SA2] = @Original_SA2)) AND ((@IsNull_Total2 = 1 AND [Total2] IS NULL) OR ([Total2] = @Original_Total2)) AND ((@IsNull_TotalFA = 1 AND [TotalFA] IS NULL) OR ([TotalFA] = @Original_TotalFA)) AND ((@IsNull_TotalSA = 1 AND [TotalSA] IS NULL) OR ([TotalSA] = @Original_TotalSA)) AND ((@IsNull_Total = 1 AND [Total] IS NULL) OR ([Total] = @Original_Total)) AND ((@IsNull_GPA = 1 AND [GPA] IS NULL) OR ([GPA] = @Original_GPA)) AND ((@IsNull_Grade = 1 AND [Grade] IS NULL) OR ([Grade] = @Original_Grade)) AND ((@IsNull_Position = 1 AND [Position] IS NULL) OR ([Position] = @Original_Position)) AND ((@IsNull_Remark = 1 AND [Remark] IS NULL) OR ([Remark] = @Original_Remark)));
SELECT ID, Registration_No, Full_Name, Class, Stream, Subject, FA1, FA2, SA1, Total1, FA3, FA4, SA2, Total2, TotalFA, TotalSA, Total, GPA, Grade, Position, Remark FROM Assessments WHERE (ID = @ID)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration_No" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full_Name" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Subject" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Subject" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@SA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Total1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total1" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA3" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA3" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@FA4" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@SA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Total2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total2" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@TotalFA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalFA" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@TotalSA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalSA" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Total" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@GPA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="GPA" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Grade" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Grade" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Position" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Position" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Remark" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Remark" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_ID" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Registration_No" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Registration_No" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Registration_No" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Registration_No" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Full_Name" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Full_Name" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Full_Name" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Full_Name" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Class" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Class" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Stream" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Subject" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Subject" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Subject" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Subject" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA1" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA1" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA1" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA2" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA2" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA2" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_SA1" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="SA1" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_SA1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA1" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Total1" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Total1" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Total1" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total1" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA3" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA3" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA3" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA3" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_FA4" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="FA4" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_FA4" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="FA4" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_SA2" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="SA2" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_SA2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="SA2" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Total2" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Total2" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Total2" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total2" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_TotalFA" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="TotalFA" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_TotalFA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalFA" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_TotalSA" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="TotalSA" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_TotalSA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="TotalSA" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Total" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Total" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_Total" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="Total" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_GPA" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="GPA" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Decimal" Direction="Input" ParameterName="@Original_GPA" Precision="18" ProviderType="Decimal" Scale="0" Size="0" SourceColumn="GPA" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Grade" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Grade" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Grade" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Grade" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Position" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Position" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Position" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Position" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Remark" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Remark" SourceColumnNullMapping="true" SourceVersion="Original" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Remark" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Remark" SourceColumnNullMapping="false" SourceVersion="Original" />
<Parameter AllowDbNull="false" AutogeneratedName="ID" ColumnName="ID" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@ID" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="ID" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="ID" DataSetColumn="ID" />
<Mapping SourceColumn="Registration_No" DataSetColumn="Registration_No" />
<Mapping SourceColumn="Full_Name" DataSetColumn="Full_Name" />
<Mapping SourceColumn="Class" DataSetColumn="Class" />
<Mapping SourceColumn="Stream" DataSetColumn="Stream" />
<Mapping SourceColumn="Subject" DataSetColumn="Subject" />
<Mapping SourceColumn="FA1" DataSetColumn="FA1" />
<Mapping SourceColumn="FA2" DataSetColumn="FA2" />
<Mapping SourceColumn="SA1" DataSetColumn="SA1" />
<Mapping SourceColumn="Total1" DataSetColumn="Total1" />
<Mapping SourceColumn="FA3" DataSetColumn="FA3" />
<Mapping SourceColumn="FA4" DataSetColumn="FA4" />
<Mapping SourceColumn="SA2" DataSetColumn="SA2" />
<Mapping SourceColumn="Total2" DataSetColumn="Total2" />
<Mapping SourceColumn="TotalFA" DataSetColumn="TotalFA" />
<Mapping SourceColumn="TotalSA" DataSetColumn="TotalSA" />
<Mapping SourceColumn="Total" DataSetColumn="Total" />
<Mapping SourceColumn="GPA" DataSetColumn="GPA" />
<Mapping SourceColumn="Grade" DataSetColumn="Grade" />
<Mapping SourceColumn="Position" DataSetColumn="Position" />
<Mapping SourceColumn="Remark" DataSetColumn="Remark" />
</Mappings>
<Sources>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Assessments" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByclass" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetDataByclass" GeneratorSourceName="FillByclass" GetMethodModifier="Public" GetMethodName="GetDataByclass" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataByclass" UserSourceName="FillByclass">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT ID, Registration_No, Full_Name, Class, Stream, Subject, FA1, FA2, SA1, Total1, FA3, FA4, SA2, Total2, TotalFA, TotalSA, Total, GPA, Grade, Position, Remark
FROM Assessments
WHERE (Class = @class)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="class" ColumnName="Class" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Assessments" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@class" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Assessments" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByclassstream" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetDataByclassstream" GeneratorSourceName="FillByclassstream" GetMethodModifier="Public" GetMethodName="GetDataByclassstream" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataByclassstream" UserSourceName="FillByclassstream">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT ID, Registration_No, Full_Name, Class, Stream, Subject, FA1, FA2, SA1, Total1, FA3, FA4, SA2, Total2, TotalFA, TotalSA, Total, GPA, Grade, Position, Remark
FROM Assessments
WHERE (Class = @class) AND (Stream = @stream)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="class" ColumnName="Class" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Assessments" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@class" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="stream" ColumnName="Stream" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Assessments" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="SMSConnectionString (MySettings)" DbObjectName="dbo.Assessments" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="FillByclassstreamsubject" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetDataByclassstreamsubject" GeneratorSourceName="FillByclassstreamsubject" GetMethodModifier="Public" GetMethodName="GetDataByclassstreamsubject" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataByclassstreamsubject" UserSourceName="FillByclassstreamsubject">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT ID, Registration_No, Full_Name, Class, Stream, Subject, FA1, FA2, SA1, Total1, FA3, FA4, SA2, Total2, TotalFA, TotalSA, Total, GPA, Grade, Position, Remark
FROM Assessments
WHERE (Class = @class) AND (Stream = @stream) AND (Subject = @subject)</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="class" ColumnName="Class" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Assessments" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@class" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="Class" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="stream" ColumnName="Stream" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Assessments" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@stream" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="Stream" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="subject" ColumnName="Subject" DataSourceName="[J:\WORK\SCHOOL SOFTWARE\SOFTWARE\ANKARP IT SOLUTIONS LIMITED\SCHOOL MANAGEMENT SYSTEM\SMS.MDF].dbo.Assessments" DataTypeServer="nvarchar(50)" DbType="String" Direction="Input" ParameterName="@subject" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumn="Subject" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
</Tables>
<Sources />
</DataSource>
</xs:appinfo>
</xs:annotation>
<xs:element name="SMS" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="SMS" msprop:Generator_UserDSName="SMS">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="fees" msprop:Generator_TableClassName="feesDataTable" msprop:Generator_TableVarName="tablefees" msprop:Generator_TablePropName="fees" msprop:Generator_RowDeletingName="feesRowDeleting" msprop:Generator_RowChangingName="feesRowChanging" msprop:Generator_RowEvHandlerName="feesRowChangeEventHandler" msprop:Generator_RowDeletedName="feesRowDeleted" msprop:Generator_UserTableName="fees" msprop:Generator_RowChangedName="feesRowChanged" msprop:Generator_RowEvArgName="feesRowChangeEvent" msprop:Generator_RowClassName="feesRow">
<xs:complexType>
<xs:sequence>
<xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
<xs:element name="Registration_x0020_No" msprop:Generator_ColumnVarNameInTable="columnRegistration_No" msprop:Generator_ColumnPropNameInRow="Registration_No" msprop:Generator_ColumnPropNameInTable="Registration_NoColumn" msprop:Generator_UserColumnName="Registration No" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Full_x0020_Name" msprop:Generator_ColumnVarNameInTable="columnFull_Name" msprop:Generator_ColumnPropNameInRow="Full_Name" msprop:Generator_ColumnPropNameInTable="Full_NameColumn" msprop:Generator_UserColumnName="Full Name" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Class" msprop:Generator_ColumnVarNameInTable="columnClass" msprop:Generator_ColumnPropNameInRow="_Class" msprop:Generator_ColumnPropNameInTable="ClassColumn" msprop:Generator_UserColumnName="Class" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Fee" msprop:Generator_ColumnVarNameInTable="columnFee" msprop:Generator_ColumnPropNameInRow="Fee" msprop:Generator_ColumnPropNameInTable="FeeColumn" msprop:Generator_UserColumnName="Fee" type="xs:decimal" minOccurs="0" />
<xs:element name="Fee_paid" msprop:Generator_ColumnVarNameInTable="columnFee_paid" msprop:Generator_ColumnPropNameInRow="Fee_paid" msprop:Generator_ColumnPropNameInTable="Fee_paidColumn" msprop:Generator_UserColumnName="Fee_paid" type="xs:decimal" minOccurs="0" />
<xs:element name="Balance" msprop:Generator_ColumnVarNameInTable="columnBalance" msprop:Generator_ColumnPropNameInRow="Balance" msprop:Generator_ColumnPropNameInTable="BalanceColumn" msprop:Generator_UserColumnName="Balance" type="xs:decimal" minOccurs="0" />
<xs:element name="Status" msprop:Generator_ColumnVarNameInTable="columnStatus" msprop:Generator_ColumnPropNameInRow="Status" msprop:Generator_ColumnPropNameInTable="StatusColumn" msprop:Generator_UserColumnName="Status" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Students" msprop:Generator_TableClassName="StudentsDataTable" msprop:Generator_TableVarName="tableStudents" msprop:Generator_TablePropName="Students" msprop:Generator_RowDeletingName="StudentsRowDeleting" msprop:Generator_RowChangingName="StudentsRowChanging" msprop:Generator_RowEvHandlerName="StudentsRowChangeEventHandler" msprop:Generator_RowDeletedName="StudentsRowDeleted" msprop:Generator_UserTableName="Students" msprop:Generator_RowChangedName="StudentsRowChanged" msprop:Generator_RowEvArgName="StudentsRowChangeEvent" msprop:Generator_RowClassName="StudentsRow">
<xs:complexType>
<xs:sequence>
<xs:element name="StudentID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnStudentID" msprop:Generator_ColumnPropNameInRow="StudentID" msprop:Generator_ColumnPropNameInTable="StudentIDColumn" msprop:Generator_UserColumnName="StudentID" type="xs:int" />
<xs:element name="Registration_x0020_No" msprop:Generator_ColumnVarNameInTable="columnRegistration_No" msprop:Generator_ColumnPropNameInRow="Registration_No" msprop:Generator_ColumnPropNameInTable="Registration_NoColumn" msprop:Generator_UserColumnName="Registration No">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Full_x0020_Name" msprop:Generator_ColumnVarNameInTable="columnFull_Name" msprop:Generator_ColumnPropNameInRow="Full_Name" msprop:Generator_ColumnPropNameInTable="Full_NameColumn" msprop:Generator_UserColumnName="Full Name">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Gender" msprop:Generator_ColumnVarNameInTable="columnGender" msprop:Generator_ColumnPropNameInRow="Gender" msprop:Generator_ColumnPropNameInTable="GenderColumn" msprop:Generator_UserColumnName="Gender" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Age" msprop:Generator_ColumnVarNameInTable="columnAge" msprop:Generator_ColumnPropNameInRow="Age" msprop:Generator_ColumnPropNameInTable="AgeColumn" msprop:Generator_UserColumnName="Age" type="xs:int" minOccurs="0" />
<xs:element name="Ressedential_x0020_Address" msprop:Generator_ColumnVarNameInTable="columnRessedential_Address" msprop:Generator_ColumnPropNameInRow="Ressedential_Address" msprop:Generator_ColumnPropNameInTable="Ressedential_AddressColumn" msprop:Generator_UserColumnName="Ressedential Address">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Permanent_x0020_Address" msprop:Generator_ColumnVarNameInTable="columnPermanent_Address" msprop:Generator_ColumnPropNameInRow="Permanent_Address" msprop:Generator_ColumnPropNameInTable="Permanent_AddressColumn" msprop:Generator_UserColumnName="Permanent Address" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Contact_x0020_No" msprop:Generator_ColumnVarNameInTable="columnContact_No" msprop:Generator_ColumnPropNameInRow="Contact_No" msprop:Generator_ColumnPropNameInTable="Contact_NoColumn" msprop:Generator_UserColumnName="Contact No" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Email_x0020_ID" msprop:Generator_ColumnVarNameInTable="columnEmail_ID" msprop:Generator_ColumnPropNameInRow="Email_ID" msprop:Generator_ColumnPropNameInTable="Email_IDColumn" msprop:Generator_UserColumnName="Email ID" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="300" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Class" msprop:Generator_ColumnVarNameInTable="columnClass" msprop:Generator_ColumnPropNameInRow="_Class" msprop:Generator_ColumnPropNameInTable="ClassColumn" msprop:Generator_UserColumnName="Class" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Stream" msprop:Generator_ColumnVarNameInTable="columnStream" msprop:Generator_ColumnPropNameInRow="Stream" msprop:Generator_ColumnPropNameInTable="StreamColumn" msprop:Generator_UserColumnName="Stream" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Picture" msprop:Generator_ColumnVarNameInTable="columnPicture" msprop:Generator_ColumnPropNameInRow="Picture" msprop:Generator_ColumnPropNameInTable="PictureColumn" msprop:Generator_UserColumnName="Picture" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Registration_x0020_Date" msprop:Generator_ColumnVarNameInTable="columnRegistration_Date" msprop:Generator_ColumnPropNameInRow="Registration_Date" msprop:Generator_ColumnPropNameInTable="Registration_DateColumn" msprop:Generator_UserColumnName="Registration Date" type="xs:dateTime" minOccurs="0" />
<xs:element name="Blood_x0020_Group" msprop:Generator_ColumnVarNameInTable="columnBlood_Group" msprop:Generator_ColumnPropNameInRow="Blood_Group" msprop:Generator_ColumnPropNameInTable="Blood_GroupColumn" msprop:Generator_UserColumnName="Blood Group" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Mother_x0020_name" msprop:Generator_ColumnVarNameInTable="columnMother_name" msprop:Generator_ColumnPropNameInRow="Mother_name" msprop:Generator_ColumnPropNameInTable="Mother_nameColumn" msprop:Generator_UserColumnName="Mother name" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="mother_x0020_occ" msprop:Generator_ColumnVarNameInTable="columnmother_occ" msprop:Generator_ColumnPropNameInRow="mother_occ" msprop:Generator_ColumnPropNameInTable="mother_occColumn" msprop:Generator_UserColumnName="mother occ" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="mother_x0020_contact" msprop:Generator_ColumnVarNameInTable="columnmother_contact" msprop:Generator_ColumnPropNameInRow="mother_contact" msprop:Generator_ColumnPropNameInTable="mother_contactColumn" msprop:Generator_UserColumnName="mother contact" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="mother_x0020_salary" msprop:Generator_ColumnVarNameInTable="columnmother_salary" msprop:Generator_ColumnPropNameInRow="mother_salary" msprop:Generator_ColumnPropNameInTable="mother_salaryColumn" msprop:Generator_UserColumnName="mother salary" type="xs:double" minOccurs="0" />
<xs:element name="father_x0020_name" msprop:Generator_ColumnVarNameInTable="columnfather_name" msprop:Generator_ColumnPropNameInRow="father_name" msprop:Generator_ColumnPropNameInTable="father_nameColumn" msprop:Generator_UserColumnName="father name" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="father_x0020_occ" msprop:Generator_ColumnVarNameInTable="columnfather_occ" msprop:Generator_ColumnPropNameInRow="father_occ" msprop:Generator_ColumnPropNameInTable="father_occColumn" msprop:Generator_UserColumnName="father occ" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="father_x0020_contact" msprop:Generator_ColumnVarNameInTable="columnfather_contact" msprop:Generator_ColumnPropNameInRow="father_contact" msprop:Generator_ColumnPropNameInTable="father_contactColumn" msprop:Generator_UserColumnName="father contact" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="father_x0020_salary" msprop:Generator_ColumnVarNameInTable="columnfather_salary" msprop:Generator_ColumnPropNameInRow="father_salary" msprop:Generator_ColumnPropNameInTable="father_salaryColumn" msprop:Generator_UserColumnName="father salary" type="xs:double" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Teachers" msprop:Generator_TableClassName="TeachersDataTable" msprop:Generator_TableVarName="tableTeachers" msprop:Generator_TablePropName="Teachers" msprop:Generator_RowDeletingName="TeachersRowDeleting" msprop:Generator_RowChangingName="TeachersRowChanging" msprop:Generator_RowEvHandlerName="TeachersRowChangeEventHandler" msprop:Generator_RowDeletedName="TeachersRowDeleted" msprop:Generator_UserTableName="Teachers" msprop:Generator_RowChangedName="TeachersRowChanged" msprop:Generator_RowEvArgName="TeachersRowChangeEvent" msprop:Generator_RowClassName="TeachersRow">
<xs:complexType>
<xs:sequence>
<xs:element name="id" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnid" msprop:Generator_ColumnPropNameInRow="id" msprop:Generator_ColumnPropNameInTable="idColumn" msprop:Generator_UserColumnName="id" type="xs:int" />
<xs:element name="staff_x0020_id" msprop:Generator_ColumnVarNameInTable="columnstaff_id" msprop:Generator_ColumnPropNameInRow="staff_id" msprop:Generator_ColumnPropNameInTable="staff_idColumn" msprop:Generator_UserColumnName="staff id" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="full_x0020_name" msprop:Generator_ColumnVarNameInTable="columnfull_name" msprop:Generator_ColumnPropNameInRow="full_name" msprop:Generator_ColumnPropNameInTable="full_nameColumn" msprop:Generator_UserColumnName="full name" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="gender" msprop:Generator_ColumnVarNameInTable="columngender" msprop:Generator_ColumnPropNameInRow="gender" msprop:Generator_ColumnPropNameInTable="genderColumn" msprop:Generator_UserColumnName="gender" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="age" msprop:Generator_ColumnVarNameInTable="columnage" msprop:Generator_ColumnPropNameInRow="age" msprop:Generator_ColumnPropNameInTable="ageColumn" msprop:Generator_UserColumnName="age" type="xs:int" minOccurs="0" />
<xs:element name="desingnation" msprop:Generator_ColumnVarNameInTable="columndesingnation" msprop:Generator_ColumnPropNameInRow="desingnation" msprop:Generator_ColumnPropNameInTable="desingnationColumn" msprop:Generator_UserColumnName="desingnation" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Picture" msprop:Generator_ColumnVarNameInTable="columnPicture" msprop:Generator_ColumnPropNameInRow="Picture" msprop:Generator_ColumnPropNameInTable="PictureColumn" msprop:Generator_UserColumnName="Picture" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Address" msprop:Generator_ColumnVarNameInTable="columnAddress" msprop:Generator_ColumnPropNameInRow="Address" msprop:Generator_ColumnPropNameInTable="AddressColumn" msprop:Generator_UserColumnName="Address" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Contact_x0020_No" msprop:Generator_ColumnVarNameInTable="columnContact_No" msprop:Generator_ColumnPropNameInRow="Contact_No" msprop:Generator_ColumnPropNameInTable="Contact_NoColumn" msprop:Generator_UserColumnName="Contact No" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="email_x0020_ID" msprop:Generator_ColumnVarNameInTable="columnemail_ID" msprop:Generator_ColumnPropNameInRow="email_ID" msprop:Generator_ColumnPropNameInTable="email_IDColumn" msprop:Generator_UserColumnName="email ID" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2147483647" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Users" msprop:Generator_TableClassName="UsersDataTable" msprop:Generator_TableVarName="tableUsers" msprop:Generator_TablePropName="Users" msprop:Generator_RowDeletingName="UsersRowDeleting" msprop:Generator_RowChangingName="UsersRowChanging" msprop:Generator_RowEvHandlerName="UsersRowChangeEventHandler" msprop:Generator_RowDeletedName="UsersRowDeleted" msprop:Generator_UserTableName="Users" msprop:Generator_RowChangedName="UsersRowChanged" msprop:Generator_RowEvArgName="UsersRowChangeEvent" msprop:Generator_RowClassName="UsersRow">
<xs:complexType>
<xs:sequence>
<xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
<xs:element name="UserName" msprop:Generator_ColumnVarNameInTable="columnUserName" msprop:Generator_ColumnPropNameInRow="UserName" msprop:Generator_ColumnPropNameInTable="UserNameColumn" msprop:Generator_UserColumnName="UserName">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Password" msprop:Generator_ColumnVarNameInTable="columnPassword" msprop:Generator_ColumnPropNameInRow="Password" msprop:Generator_ColumnPropNameInTable="PasswordColumn" msprop:Generator_UserColumnName="Password">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="FullName" msprop:Generator_ColumnVarNameInTable="columnFullName" msprop:Generator_ColumnPropNameInRow="FullName" msprop:Generator_ColumnPropNameInTable="FullNameColumn" msprop:Generator_UserColumnName="FullName" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="UserPicture" msprop:Generator_ColumnVarNameInTable="columnUserPicture" msprop:Generator_ColumnPropNameInRow="UserPicture" msprop:Generator_ColumnPropNameInTable="UserPictureColumn" msprop:Generator_UserColumnName="UserPicture" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="500" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="AccessLevel" msprop:Generator_ColumnVarNameInTable="columnAccessLevel" msprop:Generator_ColumnPropNameInRow="AccessLevel" msprop:Generator_ColumnPropNameInTable="AccessLevelColumn" msprop:Generator_UserColumnName="AccessLevel" type="xs:int" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Assessments" msprop:Generator_TableClassName="AssessmentsDataTable" msprop:Generator_TableVarName="tableAssessments" msprop:Generator_RowChangedName="AssessmentsRowChanged" msprop:Generator_TablePropName="Assessments" msprop:Generator_RowDeletingName="AssessmentsRowDeleting" msprop:Generator_RowChangingName="AssessmentsRowChanging" msprop:Generator_RowEvHandlerName="AssessmentsRowChangeEventHandler" msprop:Generator_RowDeletedName="AssessmentsRowDeleted" msprop:Generator_RowClassName="AssessmentsRow" msprop:Generator_UserTableName="Assessments" msprop:Generator_RowEvArgName="AssessmentsRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="ID" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnID" msprop:Generator_ColumnPropNameInRow="ID" msprop:Generator_ColumnPropNameInTable="IDColumn" msprop:Generator_UserColumnName="ID" type="xs:int" />
<xs:element name="Registration_No" msprop:Generator_ColumnVarNameInTable="columnRegistration_No" msprop:Generator_ColumnPropNameInRow="Registration_No" msprop:Generator_ColumnPropNameInTable="Registration_NoColumn" msprop:Generator_UserColumnName="Registration_No" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Full_Name" msprop:Generator_ColumnVarNameInTable="columnFull_Name" msprop:Generator_ColumnPropNameInRow="Full_Name" msprop:Generator_ColumnPropNameInTable="Full_NameColumn" msprop:Generator_UserColumnName="Full_Name" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="100" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Class" msprop:Generator_ColumnVarNameInTable="columnClass" msprop:Generator_ColumnPropNameInRow="_Class" msprop:Generator_ColumnPropNameInTable="ClassColumn" msprop:Generator_UserColumnName="Class" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Stream" msprop:Generator_ColumnVarNameInTable="columnStream" msprop:Generator_ColumnPropNameInRow="Stream" msprop:Generator_ColumnPropNameInTable="StreamColumn" msprop:Generator_UserColumnName="Stream" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">