-
Notifications
You must be signed in to change notification settings - Fork 0
/
MySql.Data.xml
17507 lines (17324 loc) · 904 KB
/
MySql.Data.xml
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"?>
<doc>
<assembly>
<name>MySql.Data</name>
</assembly>
<members>
<member name="T:MySql.Data.MySqlClient.Authentication.CachingSha2AuthenticationPlugin">
<summary>
The implementation of the caching_sha2_password authentication plugin.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.CachingSha2AuthenticationPlugin.GeneratePassword">
<summary>
Generates a byte array set with the password of the user in the expected format based on the
SSL settings of the current connection.
</summary>
<returns>A byte array that contains the password of the user in the expected format.</returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.AuthStage">
<summary>
Defines the stage of the authentication.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.MySqlClearPasswordPlugin">
<summary>
Allows connections to a user account set with the mysql_clear_password authentication plugin.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.FidoAuthenticationPlugin.ParseChallenge(System.Byte[])">
<summary>
Method that parse the challenge received from server during authentication process.
This method extracts salt, relying party name and set it in the <see cref="T:MySql.Data.Authentication.FIDO.FidoAssertion"/> object.
</summary>
<param name="challenge">Buffer holding the server challenge.</param>
<exception cref="T:MySql.Data.MySqlClient.MySqlException">Thrown if an error occurs while parsing the challenge.</exception>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.FidoAuthenticationPlugin.SignChallenge">
<summary>
Method to obtains an assertion from a FIDO device.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.GssapiMechanism">
<summary>
The GSSAPI mechanism.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.GssapiMechanism.#ctor(System.String,System.String,System.String)">
<summary>
Obtain credentials to be used to create a security context
</summary>
<param name="username">username</param>
<param name="password">password</param>
<param name="host">host</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.GssapiMechanism.Challenge(System.Byte[])">
<summary>
Processes the challenge data.
</summary>
<param name="data">A byte array containing the challenge data from the server</param>
<returns>A byte array containing the response to be sent to the server</returns>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.GssapiMechanism.DoFinalHandshake(System.Byte[])">
<summary>
Security context already established.
</summary>
<param name="message">A byte array containing the challenge data from the server</param>
<returns>A non-null byte array containing the response to be sent to the server</returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.KerberosAuthenticationPlugin">
<summary>
Enables connections to a user account set with the authentication_kerberos authentication plugin.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin">
<summary>
Defines the default behavior for an authentication plugin.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin._mfaIteration">
<summary>
Handles the iteration of the multifactor authentication
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.AuthenticationData">
<summary>
Gets or sets the authentication data returned by the server.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.GetPlugin(System.String,MySql.Data.MySqlClient.NativeDriver,System.Byte[],System.Int32)">
<summary>
This is a factory method that is used only internally. It creates an auth plugin based on the method type
</summary>
<param name="method"></param>
<param name="driver"></param>
<param name="authData"></param>
<returns></returns>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.Settings">
<summary>
Gets the connection option settings.
</summary>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.ServerVersion">
<summary>
Gets the server version associated with this authentication plugin.
</summary>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.Encoding">
<summary>
Gets the encoding assigned to the native driver.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.SetAuthData(System.Byte[])">
<summary>
Sets the authentication data required to encode, encrypt, or convert the password of the user.
</summary>
<param name="data">A byte array containing the authentication data provided by the server.</param>
<remarks>This method may be overriden based on the requirements by the implementing authentication plugin.</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.CheckConstraints">
<summary>
Defines the behavior when checking for constraints.
</summary>
<remarks>This method is intended to be overriden.</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.AuthenticationFailed(System.Exception)">
<summary>
Throws a <see cref="T:MySql.Data.MySqlClient.MySqlException"/> that encapsulates the original exception.
</summary>
<param name="ex">The exception to encapsulate.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.AuthenticationSuccessful">
<summary>
Defines the behavior when authentication is successful.
</summary>
<remarks>This method is intended to be overriden.</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.MoreData(System.Byte[])">
<summary>
Defines the behavior when more data is required from the server.
</summary>
<param name="data">The data returned by the server.</param>
<returns>The data to return to the server.</returns>
<remarks>This method is intended to be overriden.</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.GetMFAPassword">
<summary>
Gets the password for the iteration of the multifactor authentication
</summary>
<returns>A password</returns>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.PluginName">
<summary>
Gets the plugin name based on the authentication plugin type defined during the creation of this object.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.GetUsername">
<summary>
Gets the user name associated to the connection settings.
</summary>
<returns>The user name associated to the connection settings.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.GetPassword">
<summary>
Gets the encoded, encrypted, or converted password based on the authentication plugin type defined during the creation of this object.
This method is intended to be overriden.
</summary>
<returns>An object containing the encoded, encrypted, or converted password.</returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.MySqlPemReader">
<summary>
Provides functionality to read, decode and convert PEM files to objects supported in .NET.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlPemReader.ConvertPemToRSAProvider(System.Byte[])">
<summary>
Converts the binary data of a PEM file to an <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider"/> object.
</summary>
<param name="rawPublicKey">A binary representation of the public key provided by the server.</param>
<returns>An <see cref="T:System.Security.Cryptography.RSACryptoServiceProvider"/> object containing the data found in the public key.</returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.MySqlSASLPlugin">
<summary>
Allows connections to a user account set with the authentication_ldap_sasl authentication plugin.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlSASLPlugin.IsNonAsciiSpace(System.Char)">
<summary>
Determines if the character is a non-ASCII space.
</summary>
<remarks>
This list was obtained from http://tools.ietf.org/html/rfc3454#appendix-C.1.2
</remarks>
<returns><c>true</c> if the character is a non-ASCII space; otherwise, <c>false</c>.</returns>
<param name="c">The character.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlSASLPlugin.IsCommonlyMappedToNothing(System.Char)">
<summary>
Determines if the character is commonly mapped to nothing.
</summary>
<remarks>
This list was obtained from http://tools.ietf.org/html/rfc3454#appendix-B.1
</remarks>
<returns><c>true</c> if the character is commonly mapped to nothing; otherwise, <c>false</c>.</returns>
<param name="c">The character.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlSASLPlugin.IsProhibited(System.String,System.Int32)">
<summary>
Determines if the character is prohibited.
</summary>
<remarks>
This list was obtained from http://tools.ietf.org/html/rfc3454#appendix-C.3
</remarks>
<returns><c>true</c> if the character is prohibited; otherwise, <c>false</c>.</returns>
<param name="s">The string.</param>
<param name="index">The character index.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlSASLPlugin.SaslPrep(System.String)">
<summary>
Prepares the user name or password string.
</summary>
<param name="s">The string to prepare.</param>
<returns>The prepared string.</returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.MySqlNativePasswordPlugin">
<summary>
Allows connections to a user account set with the mysql_native_password authentication plugin.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.MySqlNativePasswordPlugin.Get411Password(System.String,System.Byte[])">
<summary>
Returns a byte array containing the proper encryption of the
given password/seed according to the new 4.1.1 authentication scheme.
</summary>
<param name="password"></param>
<param name="seedBytes"></param>
<returns></returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.OciAuthenticationPlugin">
<summary>
Enables connections from a user account set with the authentication_iam authentication plugin.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.OciAuthenticationPlugin.CheckConstraints">
<summary>
Verify that OCI .NET SDK is referenced.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.OciAuthenticationPlugin.GetValues(System.Collections.Generic.Dictionary{System.String,System.Collections.Generic.Dictionary{System.String,System.String}},System.String@,System.String@)">
<summary>
Get the values for the key_file and fingerprint entries.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.OciAuthenticationPlugin.SignData(System.Byte[],System.String,System.String)">
<summary>
Sign nonce sent by server using SHA256 algorithm and the private key provided by the user.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.ScramBase">
<summary>
Base class to handle SCRAM authentication methods
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.ScramBase.AuthState">
<summary>
Defines the state of the authentication process.
</summary>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.ScramBase.MechanismName">
<summary>
Gets the name of the method.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.Challenge(System.Byte[])">
<summary>
Parses the server's challenge token and returns the next challenge response.
</summary>
<returns>The next challenge response.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.ClientInitial">
<summary>
Builds up the client-first message.
</summary>
<returns>An array of bytes containig the client-first message.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.ProcessServerResponse(System.Byte[])">
<summary>
Processes the server response from the client-first message and
builds up the client-final message.
</summary>
<param name="data">Response from the server.</param>
<returns>An array of bytes containing the client-final message.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.ValidateAuth(System.Byte[])">
<summary>
Validates the server response.
</summary>
<param name="data">Server-final message</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.CreateHMAC(System.Byte[])">
<summary>
Creates the HMAC SHA1 context.
</summary>
<returns>The HMAC context.</returns>
<param name="key">The secret key.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.HMAC(System.Byte[],System.Byte[])">
<summary>
Apply the HMAC keyed algorithm.
</summary>
<returns>The results of the HMAC keyed algorithm.</returns>
<param name="key">The key.</param>
<param name="str">The string.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.Hash(System.Byte[])">
<summary>
Applies the cryptographic hash function.
</summary>
<returns>The results of the hash.</returns>
<param name="str">The string.</param>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramBase.Xor(System.Byte[],System.Byte[])">
<summary>
Applies the exclusive-or operation to combine two octet strings.
</summary>
<param name="a">The alpha component.</param>
<param name="b">The blue component.</param>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.ScramSha1Mechanism">
<summary>
The SCRAM-SHA-1 SASL mechanism.
</summary>
<remarks>
A salted challenge/response SASL mechanism that uses the HMAC SHA-1 algorithm.
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramSha1Mechanism.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:MySql.Data.MySqlClient.Authentication.ScramSha1Mechanism"/> class.
</summary>
<remarks>
Creates a new SCRAM-SHA-1 SASL context.
</remarks>
<param name="username">The user name.</param>
<param name="password">The password.</param>
<param name="host">The host.</param>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.ScramSha1Mechanism.MechanismName">
<summary>
Gets the name of the method.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.ScramSha256Mechanism">
<summary>
The SCRAM-SHA-256 SASL mechanism.
</summary>
<remarks>
A salted challenge/response SASL mechanism that uses the HMAC SHA-256 algorithm.
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.ScramSha256Mechanism.#ctor(System.String,System.String,System.String)">
<summary>
Initializes a new instance of the <see cref="T:MySql.Data.MySqlClient.Authentication.ScramSha256Mechanism"/> class.
</summary>
<remarks>
Creates a new SCRAM-SHA-256 SASL context.
</remarks>
<param name="username">The user name.</param>
<param name="password">The password.</param>
<param name="host">The host.</param>
</member>
<member name="P:MySql.Data.MySqlClient.Authentication.ScramSha256Mechanism.MechanismName">
<summary>
Gets the name of the method.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.Sha256AuthenticationPlugin">
<summary>
The implementation of the sha256_password authentication plugin.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.Authentication.Sha256AuthenticationPlugin.rawPubkey">
<summary>
The byte array representation of the public key provided by the server.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.Authentication.Sha256AuthenticationPlugin.GetXor(System.Byte[],System.Byte[])">
<summary>
Applies XOR to the byte arrays provided as input.
</summary>
<returns>A byte array that contains the results of the XOR operation.</returns>
</member>
<member name="T:MySql.Data.MySqlClient.Authentication.MySqlWindowsAuthenticationPlugin">
<summary>
Allows connections to a user account set with the authentication_windows authentication plugin.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.MySqlBulkLoader">
<summary>
Allows importing large amounts of data into a database with bulk loading.
</summary>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.Connection">
<summary>
Gets or sets the connection.
</summary>
<value>The connection.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.FieldTerminator">
<summary>
Gets or sets the field terminator.
</summary>
<value>The field terminator.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.LineTerminator">
<summary>
Gets or sets the line terminator.
</summary>
<value>The line terminator.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.TableName">
<summary>
Gets or sets the name of the table.
</summary>
<value>The name of the table.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.CharacterSet">
<summary>
Gets or sets the character set.
</summary>
<value>The character set.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.FileName">
<summary>
Gets or sets the name of the file.
</summary>
<value>The name of the file.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.Timeout">
<summary>
Gets or sets the timeout.
</summary>
<value>The timeout.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.Local">
<summary>
Gets or sets a value indicating whether the file name that is to be loaded
is local to the client or not. The default value is false.
</summary>
<value><c>true</c> if local; otherwise, <c>false</c>.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.NumberOfLinesToSkip">
<summary>
Gets or sets the number of lines to skip.
</summary>
<value>The number of lines to skip.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.LinePrefix">
<summary>
Gets or sets the line prefix.
</summary>
<value>The line prefix.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.FieldQuotationCharacter">
<summary>
Gets or sets the field quotation character.
</summary>
<value>The field quotation character.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.FieldQuotationOptional">
<summary>
Gets or sets a value indicating whether [field quotation optional].
</summary>
<value>
<c>true</c> if [field quotation optional]; otherwise, <c>false</c>.
</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.EscapeCharacter">
<summary>
Gets or sets the escape character.
</summary>
<value>The escape character.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.ConflictOption">
<summary>
Gets or sets the conflict option.
</summary>
<value>The conflict option.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.Priority">
<summary>
Gets or sets the priority.
</summary>
<value>The priority.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.Columns">
<summary>
Gets the columns.
</summary>
<value>The columns.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlBulkLoader.Expressions">
<summary>
Gets the expressions.
</summary>
<value>The expressions.</value>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlBulkLoader.Load">
<summary>
Executes the load operation.
</summary>
<returns>The number of rows inserted.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlBulkLoader.LoadAsync">
<summary>
Asynchronous version of the load operation.
</summary>
<returns>The number of rows inserted.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlBulkLoader.LoadAsync(System.Threading.CancellationToken)">
<summary>
Executes the load operation asynchronously while the cancellation isn't requested.
</summary>
<param name="cancellationToken">The cancellation token.</param>
<returns>The number of rows inserted.</returns>
</member>
<member name="T:MySql.Data.MySqlClient.MySqlBulkLoaderPriority">
<summary>
Represents the priority set for bulk loading operations.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.MySqlBulkLoaderPriority.None">
<summary>
This is the default and indicates normal priority
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.MySqlBulkLoaderPriority.Low">
<summary>
Low priority will cause the load operation to wait until all readers of the table
have finished. This only affects storage engines that use only table-level locking
such as MyISAM, Memory, and Merge.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.MySqlBulkLoaderPriority.Concurrent">
<summary>
Concurrent priority is only relevant for MyISAM tables and signals that if the table
has no free blocks in the middle that other readers can retrieve data from the table
while the load operation is happening.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.MySqlBulkLoaderConflictOption">
<summary>
Represents the behavior when conflicts arise during bulk loading operations.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.MySqlBulkLoaderConflictOption.None">
<summary>
This is the default and indicates normal operation. In the event of a LOCAL load, this
is the same as ignore. When the data file is on the server, then a key conflict will
cause an error to be thrown and the rest of the data file ignored.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.MySqlBulkLoaderConflictOption.Replace">
<summary>
Replace column values when a key conflict occurs.
</summary>
</member>
<member name="F:MySql.Data.MySqlClient.MySqlBulkLoaderConflictOption.Ignore">
<summary>
Ignore any rows where the primary key conflicts.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.CharSetMap">
<summary>
Summary description for CharSetMap.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.CharSetMap.GetEncoding(MySql.Data.Common.DBVersion,System.String)">
<summary>
Returns the text encoding for a given MySQL character set name
</summary>
<param name="version">Version of the connection requesting the encoding</param>
<param name="charSetName">Name of the character set to get the encoding for</param>
<returns>Encoding object for the given character set name</returns>
</member>
<member name="M:MySql.Data.MySqlClient.CharSetMap.InitializeMapping">
<summary>
Initializes the mapping.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.CharacterSet">
<summary>
Represents a character set object.
</summary>
</member>
<member name="T:MySql.Data.MySqlClient.MySqlCommand">
<summary>
Represents a SQL statement to execute against a MySQL database. This class cannot be inherited.
</summary>
<remarks>
<para>
You can reset the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandText"/> property and reuse the <see cref = "T:MySql.Data.MySqlClient.MySqlCommand" />
object. However, you must close the <see cref = "T:MySql.Data.MySqlClient.MySqlDataReader" /> object before you can execute a new or previous command.
</para>
<para>
If an exception of type <see cref="T:MySql.Data.MySqlClient.MySqlException"/> is generated by the method executing <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/>,
the <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/> instance remains open. It is the responsibility of the programmer to close the connection.
</para>
<para>
You can read more about it <see href="https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html">here</see>.
</para>
<note>
Using the '@' symbol for paramters is now the preferred approach although the old pattern of using
'?' is still supported. Please be aware that using '@' can cause conflicts when user variables
are also used. For more information, see the documentation on the <b>AllowUserVariables</b> connection string option.
</note>
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.#ctor">
<summary>
Initializes a new instance of the MySqlCommand class.
</summary>
<remarks>
The base constructor initializes all fields to their default values.
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> class with the text of the query.
</summary>
<param name="cmdText">The text of the query.</param>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.#ctor(System.String,MySql.Data.MySqlClient.MySqlConnection)">
<summary>
Initializes a new instance of the <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> class with the text of the query and a <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/>.
</summary>
<param name="cmdText">The text of the query.</param>
<param name="connection">A <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/> that represents the connection to an instance of MySQL Server.</param>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.#ctor(System.String,MySql.Data.MySqlClient.MySqlConnection,MySql.Data.MySqlClient.MySqlTransaction)">
<summary>
Initializes a new instance of the <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> class with the text of the query,
a <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/>, and the <see cref="T:MySql.Data.MySqlClient.MySqlTransaction"/>.
</summary>
<param name="cmdText">The text of the query.</param>
<param name="connection">A <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/> that represents the connection to an instance of MySQL Server.</param>
<param name="transaction">The <see cref="T:MySql.Data.MySqlClient.MySqlTransaction"/> in which the <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> executes.</param>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.LastInsertedId">
<summary>
Provides the ID of the last inserted row.</summary>
<value> ID of the last inserted row. -1 if none exists.</value>
<remarks>
An important point to remember is that this property can be used in batch SQL scenarios but it's important to remember that it will
only reflect the insert ID from the last insert statement in the batch. This property can also be used when the batch includes select statements
and ExecuteReader is used. This property can be consulted during result set processing.
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.CommandText">
<summary>
Gets or sets the SQL statement to execute at the data source.
</summary>
<value>The SQL statement or stored procedure to execute. The default is an empty string.</value>
<remarks>
You can read more about it <see href="https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html#connector-net-programming-mysqlcommand-text-type">here</see>.
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.CommandTimeout">
<summary>
Gets or sets the wait time before terminating the attempt to execute a command
and generating an error.
</summary>
<value>The time (in seconds) to wait for the command to execute. The default is 30 seconds.</value>
<remarks>
CommandTimeout is dependent on the ability of MySQL to cancel an executing query.
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.CommandType">
<summary>
Gets or sets a value indicating how the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandText"/> property is to be interpreted.
</summary>
<value>
One of the <see cref="T:System.Data.CommandType"/> values.
The default is <see cref="F:System.Data.CommandType.Text"/>.
</value>
<remarks>
You can read more about it <see href="https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html#connector-net-programming-mysqlcommand-text-type">here</see>.
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.IsPrepared">
<summary>
Gets a boolean value that indicates whether the <see cref="M:MySql.Data.MySqlClient.MySqlCommand.Prepare(System.Int32)"/> method has been called.
</summary>
<value>True if it is Prepared; otherwise, false.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.Connection">
<summary>
Gets or sets the <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/> object used by this instance of the <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/>.
</summary>
<value>
The connection to a data source. The default value is a null reference.
</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.Parameters">
<summary>
Gets the <see cref="T:MySql.Data.MySqlClient.MySqlParameterCollection"/> object.
</summary>
<value>
The parameters of the SQL statement or stored procedure. The default is an empty collection.
</value>
<remarks>
Connector/NET does not support unnamed parameters. Every parameter added to the collection must
have an associated name.
You can read more about it <see href="https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html#connector-net-programming-mysqlcommand-parameters">here</see>.
<note>Parameters can be used along with <see cref="T:MySql.Data.MySqlClient.MySqlAttribute"/>. There are no restrictions in this regard.</note>
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.Attributes">
<summary>
Gets the <see cref="T:MySql.Data.MySqlClient.MySqlAttributeCollection"/> object.
</summary>
<value>
The query attributes defined for the statement. The default is an empty collection.
</value>
<remarks>
Connector/NET does not support unnamed query attributes. Every query attribute added to the collection must
have an associated name.
You can read more about it <see href="https://dev.mysql.com/doc/connector-net/en/connector-net-programming-mysqlcommand.html#connector-net-programming-mysqlcommand-query-attributes">here</see>.
<note>Query Attributes can be used along with <see cref="T:MySql.Data.MySqlClient.MySqlParameter"/>. There are no restrictions in this regard.</note>
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.Transaction">
<summary>
Gets or sets the instance of <see cref="T:MySql.Data.MySqlClient.MySqlTransaction"/> within which <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> executes.
</summary>
<value>
The <see cref="T:MySql.Data.MySqlClient.MySqlTransaction"/>. The default value is a null reference (<b>Nothing</b> in Visual Basic).
</value>
<remarks>
You cannot set the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.Transaction"/> property if it is already set to a
specific value, and the command is in the process of executing. If you set the
transaction to use a <see cref="T:MySql.Data.MySqlClient.MySqlTransaction"/> object that is not connected
to the same <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/> as the <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> object,
an exception will be thrown the next time you attempt to execute a statement.
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.EnableCaching">
<summary>
Gets or sets a <see cref="T:System.Boolean"/> value that indicates whether caching is enabled.
</summary>
<value>True if it is enabled; otherwise, false.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.CacheAge">
<summary>
Gets or sets the seconds for how long a TableDirect result should be cached.
</summary>
<value>Number of seconds.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.UpdatedRowSource">
<summary>
Gets or sets how command results are applied to the <see cref="T:System.Data.DataRow"/>
when used by the <see cref="M:System.Data.Common.DbDataAdapter.Update(System.Data.DataSet)"/> method of the <see cref="T:System.Data.Common.DbDataAdapter"/>.
</summary>
<value>
One of the <see cref="T:System.Data.UpdateRowSource"/> values.
</value>
<remarks>
<para>
The default <see cref="T:System.Data.UpdateRowSource"/> value is
<b>Both</b> unless the command is automatically generated (as in the case of the
<see cref="T:MySql.Data.MySqlClient.MySqlCommandBuilder"/>), in which case the default is <b>None</b>.
</para>
</remarks>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.DesignTimeVisible">
<summary>
Gets or sets a value indicating whether the command object should be visible in a Windows Form Designer control.
</summary>
<value>True if it should be visible; otherwise, false.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.DbConnection">
<summary>
Gets or sets the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.DbConnection"/> used by this <see cref="T:System.Data.Common.DbCommand"/>.
</summary>
<value>The connection.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.DbParameterCollection">
<summary>
Gets the collection of <see cref="T:MySql.Data.MySqlClient.MySqlParameter"/> objects.
</summary>
<value>The collection.</value>
</member>
<member name="P:MySql.Data.MySqlClient.MySqlCommand.DbTransaction">
<summary>
Gets or sets the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.DbTransaction"/> within which this <see cref="T:System.Data.Common.DbCommand"/> object executes.
</summary>
<value>The transaction.</value>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.Cancel">
<summary>
Attempts to cancel the execution of a currently active command
</summary>
<remarks>
Cancelling a currently active query only works with MySQL versions 5.0.0 and higher.
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.CreateParameter">
<summary>
Creates a new instance of a <see cref="T:MySql.Data.MySqlClient.MySqlParameter"/> object.
</summary>
<remarks>
This method is a strongly-typed version of <see cref="M:System.Data.IDbCommand.CreateParameter"/>.
</remarks>
<returns>A <see cref="T:MySql.Data.MySqlClient.MySqlParameter"/> object.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.CheckState">
<summary>
Check the connection to make sure
- it is open
- it is not currently being used by a reader
- and we have the right version of MySQL for the requested command type
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery">
<summary>
Executes a SQL statement against the connection and returns the number of rows affected.
</summary>
<returns>Number of rows affected</returns>
<remarks>
You can use <see cref="M:MySql.Data.MySqlClient.MySqlCommand.ExecuteNonQuery"/> to perform any type of database operation,
however any resultsets returned will not be available. Any output parameters
used in calling a stored procedure will be populated with data and can be
retrieved after execution is complete.
For UPDATE, INSERT, and DELETE statements, the return value is the number
of rows affected by the command. For all other types of statements, the return
value is -1.
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.ResetReader">
<summary>
Reset reader to null, to avoid "There is already an open data reader"
on the next ExecuteReader(). Used in error handling scenarios.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.ResetSqlSelectLimit">
<summary>
Reset SQL_SELECT_LIMIT that could have been modified by CommandBehavior.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.ExecuteReader">
<summary>
Sends the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandText"/> value to <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/>
and builds a <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> object.
</summary>
<returns>A <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> object.</returns>
<remarks>
<para>
When the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandType"/> property is set to <b>StoredProcedure</b>,
the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandText"/> property should be set to the name of the stored
procedure. The command executes this stored procedure when you call
<b>ExecuteReader</b>.
</para>
<para>
While <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> is in use, the associated
instance of <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/> is busy serving it
and no other operations can be performed on <see cref="T:MySql.Data.MySqlClient.MySqlConnection"/>, other than closing it.
This is the case until the <see cref="M:MySql.Data.MySqlClient.MySqlDataReader.Close"/> method of <b>MySqlDataReader</b> is called.
</para>
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.ExecuteReader(System.Data.CommandBehavior)">
<summary>
Sends the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandText"/> to the <see cref="T:MySql.Data.MySqlClient.MySqlConnection">Connection</see>,
and builds a <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> using one of the <see cref="T:System.Data.CommandBehavior"/> values.
</summary>
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"/> values.</param>
<remarks>
<para>
When the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandType"/> property is set to <b>StoredProcedure</b>,
the <see cref="P:MySql.Data.MySqlClient.MySqlCommand.CommandText"/> property should be set to the name of the stored
procedure. The command executes this stored procedure when you call
<b>ExecuteReader</b>.
</para>
<para>
If the <b>MySqlDataReader</b> object is created with <b>CommandBehavior</b> set to
<b>CloseConnection</b>, closing the <b>MySqlDataReader</b> instance closes the connection
automatically.
</para>
<note>
When calling ExecuteReader with the <b>SingleRow</b> behavior, you should be aware that using a <i>limit</i>
clause in your SQL will cause all rows (up to the limit given) to be retrieved by the client. The
<see cref="M:MySql.Data.MySqlClient.MySqlDataReader.Read"/> method will still return false after the first row but pulling all rows of data
into the client will have a performance impact. If the <i>limit</i> clause is not necessary, it should
be avoided.
</note>
</remarks>
<returns>
A <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> object.
</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.ExecuteScalar">
<summary>
Executes the query, and returns the first column of the first row in the
result set returned by the query. Extra columns or rows are ignored.
</summary>
<returns>
The first column of the first row in the result set, or a null reference if the
result set is empty
</returns>
<remarks>
<para>
Use the <b>ExecuteScalar</b> method to retrieve a single value (for example,
an aggregate value) from a database. This requires less code than using the
<see cref="M:MySql.Data.MySqlClient.MySqlCommand.ExecuteReader"/> method, and then performing the operations necessary
to generate the single value using the data returned by a <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/>
</para>
</remarks>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.Prepare">
<summary>
Creates a prepared version of the command on an instance of MySQL Server.
</summary>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.Clone">
<summary>
Creates a clone of this <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> object. CommandText, Connection, and Transaction properties
are included as well as the entire parameter and the arribute list.
</summary>
<returns>The cloned <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> object.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.BeginExecuteReader">
<summary>
Initiates the asynchronous execution of the SQL statement or stored procedure
that is described by this <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/>, and retrieves one or more
result sets from the server.
</summary>
<returns>An <see cref="T:System.IAsyncResult"/> that can be used to poll, wait for results,
or both; this value is also needed when invoking EndExecuteReader,
which returns a <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> instance that can be used to retrieve
the returned rows.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.BeginExecuteReader(System.Data.CommandBehavior)">
<summary>
Initiates the asynchronous execution of the SQL statement or stored procedure
that is described by this <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/> using one of the
<b>CommandBehavior</b> values.
</summary>
<param name="behavior">One of the <see cref="T:System.Data.CommandBehavior"/> values, indicating
options for statement execution and data retrieval.</param>
<returns>An <see cref="T:System.IAsyncResult"/> that can be used to poll, wait for results,
or both; this value is also needed when invoking EndExecuteReader,
which returns a <see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/> instance that can be used to retrieve
the returned rows.</returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.EndExecuteReader(System.IAsyncResult)">
<summary>
Finishes asynchronous execution of a SQL statement, returning the requested
<see cref="T:MySql.Data.MySqlClient.MySqlDataReader"/>.
</summary>
<param name="result">The <see cref="T:System.IAsyncResult"/> returned by the call to
<see cref="M:MySql.Data.MySqlClient.MySqlCommand.BeginExecuteReader"/>.</param>
<returns>A <b>MySqlDataReader</b> object that can be used to retrieve the requested rows. </returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.BeginExecuteNonQuery(System.AsyncCallback,System.Object)">
<summary>
Initiates the asynchronous execution of the SQL statement or stored procedure
that is described by this <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/>.
</summary>
<param name="callback">
An <see cref="T:System.AsyncCallback"/> delegate that is invoked when the command's
execution has completed. Pass a null reference to indicate that no callback is required.</param>
<param name="stateObject">A user-defined state object that is passed to the
callback procedure. Retrieve this object from within the callback procedure
using the <see cref="P:System.IAsyncResult.AsyncState"/> property.</param>
<returns>An <see cref="T:System.IAsyncResult"/> that can be used to poll or wait for results,
or both; this value is also needed when invoking <see cref="M:MySql.Data.MySqlClient.MySqlCommand.EndExecuteNonQuery(System.IAsyncResult)"/>,
which returns the number of affected rows. </returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.BeginExecuteNonQuery">
<summary>
Initiates the asynchronous execution of the SQL statement or stored procedure
that is described by this <see cref="T:MySql.Data.MySqlClient.MySqlCommand"/>.
</summary>
<returns>An <see cref="T:System.IAsyncResult"/> that can be used to poll or wait for results,
or both; this value is also needed when invoking <see cref="M:MySql.Data.MySqlClient.MySqlCommand.EndExecuteNonQuery(System.IAsyncResult)"/>,
which returns the number of affected rows. </returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.EndExecuteNonQuery(System.IAsyncResult)">
<summary>
Finishes asynchronous execution of a SQL statement.
</summary>
<param name="asyncResult">The <see cref="T:System.IAsyncResult"/> returned by the call
to <see cref="M:MySql.Data.MySqlClient.MySqlCommand.BeginExecuteNonQuery"/>.</param>
<returns></returns>
</member>
<member name="M:MySql.Data.MySqlClient.MySqlCommand.AddCallStatement(System.String)">
<summary>
Verifies if a query is valid even if it has not spaces or is a stored procedure call
</summary>