-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsqlscripts.Designer.cs
6902 lines (6594 loc) · 261 KB
/
sqlscripts.Designer.cs
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
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace ExpressBase.Common {
using System;
/// <summary>
/// A strongly-typed resource class, for looking up localized strings, etc.
/// </summary>
// This class was auto-generated by the StronglyTypedResourceBuilder
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
public class sqlscripts {
private static global::System.Resources.ResourceManager resourceMan;
private static global::System.Globalization.CultureInfo resourceCulture;
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
internal sqlscripts() {
}
/// <summary>
/// Returns the cached ResourceManager instance used by this class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Resources.ResourceManager ResourceManager {
get {
if (object.ReferenceEquals(resourceMan, null)) {
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("ExpressBase.Common.sqlscripts", typeof(sqlscripts).Assembly);
resourceMan = temp;
}
return resourceMan;
}
}
/// <summary>
/// Overrides the current thread's CurrentUICulture property for all
/// resource lookups using this strongly typed resource class.
/// </summary>
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
public static global::System.Globalization.CultureInfo Culture {
get {
return resourceCulture;
}
set {
resourceCulture = value;
}
}
/// <summary>
/// Looks up a localized string similar to DECLARE
/// eb_del varchar(10);
///BEGIN
///
/// eb_del := 'F';
///
/// EXECUTE IMMEDIATE 'CREATE SEQUENCE eb_applications_id_seq START WITH 1';
///
/// EXECUTE IMMEDIATE 'CREATE TABLE eb_applications
/// (
/// id NUMBER NOT NULL,
/// applicationname VARCHAR(30),
/// application_type NUMBER,
/// description VARCHAR(200),
/// eb_del char DEFAULT '''|| eb_del ||''',
/// app_icon VARCHAR(20),
/// app_settings CLOB,
/// CONSTRAINT eb_applications_pkey PRIMARY KEY (id)
/// )';
///
///
/// EXECUTE IMMEDIATE 'CREATE [rest of string was truncated]";.
/// </summary>
public static string eb_applications {
get {
return ResourceManager.GetString("eb_applications", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- Table: public.eb_applications
///
///-- DROP TABLE public.eb_applications;
///
///CREATE TABLE eb_applications
///(
/// id serial,
/// applicationname text,
/// description text,
/// app_icon text,
/// application_type integer,
/// eb_del "char" DEFAULT 'F'::"char",
/// app_settings text,
/// CONSTRAINT eb_applications_pkey PRIMARY KEY (id),
/// CONSTRAINT eb_applications_eb_del_check CHECK (eb_del = 'T' OR eb_del = 'F')
///);
///
///
///-- Index: public.eb_applications_id_idx
///
///-- DROP INDEX public.eb_applications [rest of string was truncated]";.
/// </summary>
public static string eb_applications1 {
get {
return ResourceManager.GetString("eb_applications1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE TABLE eb_applications
///(
/// id integer auto_increment,
/// applicationname text,
/// description text,
/// app_icon text,
/// application_type integer,
/// eb_del char(1) DEFAULT 'F',
/// app_settings text,
/// CONSTRAINT eb_applications_pkey PRIMARY KEY (id),
/// CONSTRAINT eb_applications_eb_del_check CHECK (eb_del = 'T' OR eb_del = 'F')
///);
///
///CREATE INDEX eb_applications_eb_del_idx
///ON eb_applications(eb_del);
///
///
///CREATE INDEX eb_applications_id_idx
///ON eb_applications(id);
///
///
///.
/// </summary>
public static string eb_applications2 {
get {
return ResourceManager.GetString("eb_applications2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE SEQUENCE eb_applications_id_seq START WITH 1 INCREMENT BY 1;
///
///CREATE TABLE eb_applications
///(
/// id int default (NEXT VALUE FOR eb_applications_id_seq),
/// applicationname varchar(max),
/// description varchar(max),
/// app_icon varchar(max),
/// application_type integer,
/// eb_del char DEFAULT 'F',
/// app_settings varchar(max),
/// CONSTRAINT eb_applications_pkey PRIMARY KEY (id),
/// CONSTRAINT eb_applications_eb_del_check CHECK (eb_del = 'T' OR eb_del = 'F')
///);
///
///
///CREATE INDEX e [rest of string was truncated]";.
/// </summary>
public static string eb_applications3 {
get {
return ResourceManager.GetString("eb_applications3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- Table: public.eb_approval
///
///-- DROP TABLE public.eb_approval;
///
///CREATE TABLE eb_approval
///(
/// id serial,
/// review_status text,
/// status integer,
/// eb_my_actions_id integer,
/// eb_approval_lines_id integer,
/// eb_src_id integer,
/// eb_ver_id integer,
/// eb_created_by integer,
/// eb_created_at timestamp without time zone,
/// eb_lastmodified_by integer,
/// eb_lastmodified_at timestamp without time zone,
/// eb_del "char" DEFAULT 'F'::"char",
/// CONSTRAINT eb_approval_pkey PRIM [rest of string was truncated]";.
/// </summary>
public static string eb_approval {
get {
return ResourceManager.GetString("eb_approval", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- Table: public.eb_approval_lines
///
///-- DROP TABLE public.eb_approval_lines;
///
///CREATE TABLE eb_approval_lines
///(
/// id SERIAL,
/// stage_unique_id text,
/// action_unique_id text ,
/// eb_my_actions_id numeric,
/// eb_approval_id integer,
/// comments text,
/// eb_src_id integer,
/// eb_ver_id integer,
/// eb_loc_id integer,
/// eb_signin_log_id integer,
/// eb_created_by integer,
/// eb_created_at timestamp without time zone,
/// eb_lastmodified_by integer,
/// eb_lastmodified_at timestamp [rest of string was truncated]";.
/// </summary>
public static string eb_approval_lines {
get {
return ResourceManager.GetString("eb_approval_lines", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- eb_approval.
/// </summary>
public static string eb_approval1 {
get {
return ResourceManager.GetString("eb_approval1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE TABLE eb_approval
///(
/// id integer auto_increment,
/// review_status text,
/// eb_my_actions_id integer,
/// eb_approval_lines_id integer,
/// eb_src_id integer,
/// eb_ver_id integer,
/// eb_created_by integer,
/// eb_created_at datetime,
/// eb_lastmodified_by integer,
/// eb_lastmodified_at datetime,
/// eb_del char(1) DEFAULT 'F',
/// CONSTRAINT eb_approval_pkey PRIMARY KEY (id)
///);
///
///
///CREATE INDEX eb_approval_id_idx
///ON eb_approval(id);
///
///CREATE INDEX eb_approval_eb_del_idx
///ON e [rest of string was truncated]";.
/// </summary>
public static string eb_approval2 {
get {
return ResourceManager.GetString("eb_approval2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to
///.
/// </summary>
public static string eb_approval3 {
get {
return ResourceManager.GetString("eb_approval3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE SEQUENCE eb_audit_lines_id_seq START WITH 1 INCREMENT BY 1;
///
///CREATE TABLE eb_audit_lines
///(
/// id int default (NEXT VALUE FOR eb_audit_lines_id_seq) primary key,
/// masterid int,
/// fieldname varchar(max),
/// oldvalue varchar(max),
/// newvalue varchar(max),
/// tablename varchar(max),
/// idrelation varchar(max)
///);
///
///CREATE INDEX eb_audit_lines_id_idx ON eb_audit_lines(id);
///
///.
/// </summary>
public static string eb_audit_lines3 {
get {
return ResourceManager.GetString("eb_audit_lines3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE SEQUENCE eb_audit_master_id_seq START WITH 1 INCREMENT BY 1;
///
///CREATE TABLE eb_audit_master
///(
/// id int default(NEXT VALUE FOR eb_audit_master_id_seq) primary key,
/// formid varchar(max),
/// dataid int,
/// actiontype int,
/// signin_log_id int,
/// eb_createdby int,
/// eb_createdat datetime2(6)
///);
///
///CREATE INDEX eb_audit_master_id_idx ON eb_audit_master(id);.
/// </summary>
public static string eb_audit_master3 {
get {
return ResourceManager.GetString("eb_audit_master3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create or replace FUNCTION eb_authenticate_anonymous(
/// in_socialid VARCHAR2 DEFAULT NULL,
/// in_fullname VARCHAR2 DEFAULT NULL,
/// in_emailid VARCHAR2 DEFAULT NULL,
/// in_phone VARCHAR2 DEFAULT NULL,
/// in_user_ip VARCHAR2 DEFAULT NULL,
/// in_user_browser VARCHAR2 DEFAULT NULL,
/// in_city VARCHAR2 DEFAULT NULL,
/// in_region VARCHAR2 DEFAULT NULL,
/// in_country VARCHAR2 DEFAULT NULL,
/// in_latitude VARCHAR2 DEFAULT NULL,
/// in_longitude VARCHAR2 DEFAULT NULL,
/// in_timezone VARCHAR2 DEFAULT NULL,
/// in_iplocatio [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_anonymous {
get {
return ResourceManager.GetString("eb_authenticate_anonymous", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- FUNCTION: public.eb_authenticate_anonymous(text, text, text, text, text, text, text, text, text, text, text, text, text, integer, text)
///
///-- DROP FUNCTION public.eb_authenticate_anonymous(text, text, text, text, text, text, text, text, text, text, text, text, text, integer, text);
///
///CREATE OR REPLACE FUNCTION public.eb_authenticate_anonymous(
/// in_socialid text DEFAULT NULL::text,
/// in_fullname text DEFAULT NULL::text,
/// in_emailid text DEFAULT NULL::text,
/// in_phone text DEFAULT NULL::text,
/// in_user_ [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_anonymous1 {
get {
return ResourceManager.GetString("eb_authenticate_anonymous1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DROP PROCEDURE IF EXISTS eb_authenticate_anonymous;
///
///CREATE PROCEDURE eb_authenticate_anonymous(IN in_socialid TEXT,
/// IN in_fullname TEXT,
/// IN in_emailid TEXT,
/// IN in_phone TEXT,
/// IN in_user_ip TEXT,
/// IN in_user_browser TEXT,
/// IN in_city TEXT,
/// IN in_region TEXT,
/// IN in_country TEXT,
/// IN in_latitude TEXT,
/// IN in_longitude TEXT,
/// IN in_timezone TEXT ,
/// IN in_iplocationjson TEXT,
/// IN in_appid INTEGER,
/// IN in_wc TEXT,
/// OUT out_userid INTEGER,
/// O [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_anonymous2 {
get {
return ResourceManager.GetString("eb_authenticate_anonymous2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE OR ALTER PROCEDURE eb_authenticate_anonymous
/// @in_socialid varchar(max),
/// @in_fullname varchar(max),
/// @in_emailid varchar(max),
/// @in_phone varchar(max),
/// @in_user_ip varchar(max),
/// @in_user_browser varchar(max),
/// @in_city varchar(max),
/// @in_region varchar(max),
/// @in_country varchar(max),
/// @in_latitude varchar(max),
/// @in_longitude varchar(max),
/// @in_timezone varchar(max),
/// @in_iplocationjson varchar(max),
/// @in_appid int,
/// @in_wc varchar(max),
/// @out_userid int OUTPUT,
/// @out_status_i [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_anonymous3 {
get {
return ResourceManager.GetString("eb_authenticate_anonymous3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create or replace FUNCTION eb_authenticate_unified(
/// uname VARCHAR2 DEFAULT NULL,
/// passwrd VARCHAR2 DEFAULT NULL,
/// social VARCHAR2 DEFAULT NULL,
/// wc VARCHAR2 DEFAULT NULL)
/// RETURN authenticate_res_tbl as authenticatereturn authenticate_res_tbl;
/// userid NUMBER;
/// email VARCHAR(50);
/// fullname VARCHAR(50);
/// roles_a VARCHAR2(100);
/// rolename_a VARCHAR2(100);
/// permissions VARCHAR2(100);
/// preference CLOB;
///
/// BEGIN
/// IF uname IS NOT NULL AND passwrd IS NOT NU [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_unified {
get {
return ResourceManager.GetString("eb_authenticate_unified", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- FUNCTION: public.eb_authenticate_unified(text, text, text, text, text, text)
///
///-- DROP FUNCTION public.eb_authenticate_unified(text, text, text, text, text, text);
///
///CREATE OR REPLACE FUNCTION public.eb_authenticate_unified(
/// uname text DEFAULT NULL::text,
/// password text DEFAULT NULL::text,
/// social text DEFAULT NULL::text,
/// wc text DEFAULT NULL::text,
/// ipaddress text DEFAULT NULL::text,
/// deviceinfo text DEFAULT NULL::text)
/// RETURNS TABLE(_userid integer, _status_id integer, _email text, _full [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_unified1 {
get {
return ResourceManager.GetString("eb_authenticate_unified1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DROP PROCEDURE IF EXISTS eb_authenticate_unified;
///
///CREATE PROCEDURE eb_authenticate_unified(IN uname TEXT,
/// IN pwd TEXT,
/// IN social TEXT,
/// IN wc TEXT,
/// IN ipaddress TEXT,
/// IN deviceinfo TEXT,
/// OUT tmp_userid INTEGER,
/// OUT tmp_status_id INTEGER,
/// OUT tmp_email TEXT,
/// OUT tmp_fullname TEXT,
/// OUT tmp_roles_a TEXT,
/// OUT tmp_rolename_a TEXT,
/// OUT tmp_permissions TEXT,
/// OUT tmp_preferencesjson TEXT,
/// OUT tmp_constraints_a TEXT,
/// OUT tmp_signin_id INTEG [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_unified2 {
get {
return ResourceManager.GetString("eb_authenticate_unified2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE OR ALTER PROCEDURE eb_authenticate_unified
/// @uname varchar(max),
/// @password varchar(max),
/// @social varchar(max),
/// @wc varchar(max),
/// @ipaddress varchar(max),
/// @deviceinfo varchar(max),
/// @_userid int OUTPUT,
/// @_status_id int OUTPUT,
/// @_email varchar(max) OUTPUT,
/// @_fullname varchar(max) OUTPUT,
/// @_roles_a varchar(max) OUTPUT,
/// @_rolename_a varchar(max) OUTPUT,
/// @_permissions varchar(max) OUTPUT,
/// @_preferencesjson varchar(max) OUTPUT,
/// @_constraints_a varchar(max) OUTPUT,
/// @_sign [rest of string was truncated]";.
/// </summary>
public static string eb_authenticate_unified3 {
get {
return ResourceManager.GetString("eb_authenticate_unified3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- Table: public.eb_browser_exceptions
///
///-- DROP TABLE public.eb_browser_exceptions;
///
///CREATE TABLE public.eb_browser_exceptions
///(
/// id serial,
/// user_id integer,
/// device_info text,
/// ip_address text,
/// error_msg text,
/// eb_created_at timestamp without time zone,
/// CONSTRAINT eb_browser_exceptions_pkey PRIMARY KEY (id)
///);
///
///-- Index: eb_browser_exceptions_id_idx
///
///-- DROP INDEX public.eb_browser_exceptions_id_idx;
///
///CREATE INDEX eb_browser_exceptions_id_idx
///ON eb_browser_exception [rest of string was truncated]";.
/// </summary>
public static string eb_browser_exceptions {
get {
return ResourceManager.GetString("eb_browser_exceptions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- eb_browser_exceptions.
/// </summary>
public static string eb_browser_exceptions1 {
get {
return ResourceManager.GetString("eb_browser_exceptions1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- eb_browser_exceptions.
/// </summary>
public static string eb_browser_exceptions2 {
get {
return ResourceManager.GetString("eb_browser_exceptions2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to --eb_browser_exceptions.
/// </summary>
public static string eb_browser_exceptions3 {
get {
return ResourceManager.GetString("eb_browser_exceptions3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to --COMPILE FUNCTIONS
///
///BEGIN
///
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_authenticate_unified COMPILE';
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_create_or_update_role2role COMPILE';
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_create_or_update_role2user COMPILE';
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_getroles COMPILE';
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_permissions COMPILE';
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_authenticate_anonymous COMPILE';
/// EXECUTE IMMEDIATE 'ALTER FUNCTION eb_create_o [rest of string was truncated]";.
/// </summary>
public static string eb_compilefunctions {
get {
return ResourceManager.GetString("eb_compilefunctions", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to .
/// </summary>
public static string eb_compilefunctions1 {
get {
return ResourceManager.GetString("eb_compilefunctions1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- eb_compilefunctions.
/// </summary>
public static string eb_compilefunctions2 {
get {
return ResourceManager.GetString("eb_compilefunctions2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE TABLE eb_constraints_line
///(
/// id integer auto_increment,
/// master_id integer,
/// c_type integer,
/// c_operation integer,
/// c_value text,
/// CONSTRAINT eb_constraints_line_pkey PRIMARY KEY (id)
///);
///
///CREATE INDEX eb_constraints_line_id_idx
///ON eb_constraints_line(id);.
/// </summary>
public static string eb_constraints_line2 {
get {
return ResourceManager.GetString("eb_constraints_line2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE SEQUENCE eb_constraints_line_id_seq START WITH 1 INCREMENT BY 1;
///
///CREATE TABLE eb_constraints_line
///(
/// id int default(NEXT VALUE FOR eb_constraints_line_id_seq) primary key,
/// master_id int,
/// c_type int,
/// c_operation int,
/// c_value varchar(max)
///);
///
///CREATE INDEX eb_constraints_line_id_idx ON eb_constraints_line(id);.
/// </summary>
public static string eb_constraints_line3 {
get {
return ResourceManager.GetString("eb_constraints_line3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE TABLE eb_constraints_master
///(
/// id integer auto_increment,
/// key_id integer,
/// key_type integer,
/// description text,
/// eb_created_by integer,
/// eb_created_at datetime,
/// eb_lastmodified_by integer,
/// eb_lastmodified_at datetime,
/// eb_del char(1) DEFAULT 'F',
/// CONSTRAINT eb_constraints_master_pkey PRIMARY KEY (id)
///);
///
///CREATE INDEX eb_constraints_master_id_idx
///ON eb_constraints_master(id);.
/// </summary>
public static string eb_constraints_master2 {
get {
return ResourceManager.GetString("eb_constraints_master2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE SEQUENCE eb_constraints_master_id_seq START WITH 1 INCREMENT BY 1;
///
///CREATE TABLE eb_constraints_master
///(
/// id int default(NEXT VALUE FOR eb_constraints_master_id_seq) primary key,
/// key_id int,
/// key_type int,
/// description varchar(max),
/// eb_created_by int,
/// eb_created_at datetime2(6),
/// eb_lastmodified_by int,
/// eb_lastmodified_at datetime2(6),
/// eb_del character(1) DEFAULT 'F'
///);
///
///CREATE INDEX eb_constraints_master_id_idx ON eb_constraints_master(id);.
/// </summary>
public static string eb_constraints_master3 {
get {
return ResourceManager.GetString("eb_constraints_master3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create or replace FUNCTION eb_create_or_update_rbac_roles(
/// roleid NUMBER,
/// applicationid NUMBER,
/// userid NUMBER,
/// role_name VARCHAR2,
/// description CLOB,
/// isanonym CHAR,
/// users CLOB,
/// dependantroles CLOB,
/// permissions CLOB,
/// locations VARCHAR2)
/// RETURN NUMBER IS
/// PRAGMA AUTONOMOUS_TRANSACTION;
/// rid NUMBER;
/// reslt NUMBER;
/// in_users CLOB;
/// in_dependantroles CLOB;
/// in_permissions CLOB;
///
///BEGIN
/// rid := roleid;
/// in_users := users;
/// in_dependantroles := de [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_rbac_roles {
get {
return ResourceManager.GetString("eb_create_or_update_rbac_roles", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- FUNCTION: public.eb_create_or_update_rbac_roles(integer, integer, integer, text, text, text, text, text, text, text)
///
///-- DROP FUNCTION public.eb_create_or_update_rbac_roles(integer, integer, integer, text, text, text, text, text, text, text);
///
///CREATE OR REPLACE FUNCTION public.eb_create_or_update_rbac_roles(
/// roleid integer,
/// applicationid integer,
/// userid integer,
/// role_name text,
/// description text,
/// isanonym text,
/// users text,
/// dependantroles text,
/// permissions text,
/// locations text)
/// [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_rbac_roles1 {
get {
return ResourceManager.GetString("eb_create_or_update_rbac_roles1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DROP PROCEDURE IF EXISTS eb_create_or_update_rbac_roles;
///
///CREATE PROCEDURE eb_create_or_update_rbac_roles(IN role_id INTEGER,
/// IN applicationid INTEGER,
/// IN createdby INTEGER,
/// IN role_name TEXT,
/// IN description TEXT,
/// IN is_anonym TEXT,
/// IN users TEXT,
/// IN dependants TEXT,
/// IN permission TEXT,
/// IN locations TEXT,
/// OUT out_r INTEGER)
///BEGIN
///DECLARE rid INTEGER;
///DECLARE a INTEGER;
///SET rid = role_id;
///
///CALL eb_create_or_update_role(applicationid, role_name, descri [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_rbac_roles2 {
get {
return ResourceManager.GetString("eb_create_or_update_rbac_roles2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE OR ALTER PROCEDURE eb_create_or_update_rbac_roles
///
/// @roleid int,
/// @applicationid int,
/// @userid int,
/// @role_name varchar(max),
/// @description varchar(max),
/// @isanonym varchar(max),
/// @users varchar(max),
/// @dependantroles varchar(max),
/// @permissions varchar(max),
/// @locations varchar(max)
///
///AS
///BEGIN
/// DECLARE @rid INTEGER, @r1 INTEGER,@r2 INTEGER,@r3 INTEGER,
/// @_users varchar(max),
/// @_dependantroles varchar(max);
///
/// EXEC @rid = eb_create_or_update_role @applicationid,@role_name,@descri [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_rbac_roles3 {
get {
return ResourceManager.GetString("eb_create_or_update_rbac_roles3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create or replace FUNCTION eb_create_or_update_role(
/// application_id NUMBER,
/// rolename VARCHAR2,
/// roledesc VARCHAR2,
/// isanonym CHAR,
/// userid NUMBER,
/// permissions VARCHAR2,
/// roleid NUMBER DEFAULT 0)
/// RETURN NUMBER AS
/// PRAGMA AUTONOMOUS_TRANSACTION;
/// rid NUMBER;
///
///BEGIN
/// IF roleid = 0 THEN
/// INSERT INTO eb_roles (role_name,applicationid,description,is_anonymous) VALUES (rolename,application_id,roledesc,isanonym) RETURNING ID INTO rid;
/// DBMS_OUTPUT.PUT_LINE(rid [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role {
get {
return ResourceManager.GetString("eb_create_or_update_role", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- FUNCTION: public.eb_create_or_update_role(integer, text, text, text, integer, text[], integer)
///
///-- DROP FUNCTION public.eb_create_or_update_role(integer, text, text, text, integer, text[], integer);
///
///CREATE OR REPLACE FUNCTION public.eb_create_or_update_role(
/// application_id integer,
/// role_name text,
/// role_desc text,
/// isanonym text,
/// userid integer,
/// permissions text[],
/// roleid integer DEFAULT 0)
/// RETURNS integer
/// LANGUAGE 'plpgsql'
///
///AS $BODY$
///
///
///
///DECLARE rid INTEGER; DECLARE e [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role1 {
get {
return ResourceManager.GetString("eb_create_or_update_role1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DROP PROCEDURE IF EXISTS eb_create_or_update_role;
///
///CREATE PROCEDURE eb_create_or_update_role(IN applicationid INTEGER,
/// IN role_name TEXT,
/// IN description TEXT,
/// IN is_anonym TEXT,
/// IN createdby INTEGER,
/// IN permissions_str TEXT,
/// IN role_id INTEGER,
/// OUT out_rid INTEGER)
///BEGIN
///DECLARE rid INTEGER;
///DECLARE errornum INTEGER;
///-- DECLARE CONTINUE HANDLER FOR SQLSTATE '23505' select 0;
///
///IF role_id = 0 THEN SET role_id = NULL; END IF;
///
///DROP TEMPORARY TABLE IF EXISTS eb_cr [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role2 {
get {
return ResourceManager.GetString("eb_create_or_update_role2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -- FUNCTION: public.eb_create_or_update_role2loc(integer, integer, integer[])
///
///-- DROP FUNCTION public.eb_create_or_update_role2loc(integer, integer, integer[]);
///
///CREATE OR REPLACE FUNCTION public.eb_create_or_update_role2loc(
/// _roleid integer,
/// _userid integer,
/// _locations integer[])
/// RETURNS integer
/// LANGUAGE 'plpgsql'
///
///AS $BODY$
///
///BEGIN
///
///UPDATE eb_role2location SET eb_del = 'T', eb_revokedat = NOW(), eb_revokedby = _userid
/// WHERE roleid = _roleid AND eb_del = 'F' AND locationid IN(S [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role2loc {
get {
return ResourceManager.GetString("eb_create_or_update_role2loc", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create or replace FUNCTION eb_create_or_update_role2loc(
/// role_id NUMBER,
/// userid NUMBER,
/// locations VARCHAR2)
/// RETURN NUMBER AS
/// PRAGMA AUTONOMOUS_TRANSACTION;
/// u_id NUMBER;
///
///BEGIN
/// UPDATE eb_role2location
/// SET eb_del = 'T',eb_revokedat = SYSTIMESTAMP,eb_revokedby = userid
/// WHERE locationid IN(SELECT TO_CHAR(locationid) from eb_role2location WHERE roleid = role_id AND eb_del = 'F' MINUS
/// SELECT regexp_substr(locations,'[^,]+', 1, level) from [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role2loc1 {
get {
return ResourceManager.GetString("eb_create_or_update_role2loc1", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to DROP PROCEDURE IF EXISTS eb_create_or_update_role2loc;
///
///CREATE PROCEDURE eb_create_or_update_role2loc(IN rid INTEGER,
///IN createdby INTEGER,
///IN locations_str TEXT
///)
///BEGIN
///DECLARE a INTEGER;
///DROP TEMPORARY TABLE IF EXISTS temp_array_table;
///DROP TEMPORARY TABLE IF EXISTS location_tmp;
///
///CREATE TEMPORARY TABLE temp_array_table(value INTEGER);
///CALL eb_str_to_tbl_util(locations_str,',');
///CREATE TEMPORARY TABLE IF NOT EXISTS location_tmp SELECT `value` FROM temp_array_table;
///
///UPDATE eb_role2locatio [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role2loc2 {
get {
return ResourceManager.GetString("eb_create_or_update_role2loc2", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to CREATE OR ALTER PROCEDURE eb_create_or_update_role2loc
/// @roleid int,
/// @userid int,
/// @locations varchar(max)
///
///AS
///BEGIN
/// DROP TABLE IF EXISTS #location_tbl;
/// CREATE TABLE #location_tbl(value int);
/// INSERT INTO #location_tbl
/// SELECT * FROM [dbo].[eb_str_to_tbl_util](@locations,',');
///
/// UPDATE
/// eb_role2location
/// SET
/// eb_del = 'T', eb_revokedat = CURRENT_TIMESTAMP, eb_revokedby = @userid
/// WHERE
/// roleid = @roleid AND eb_del = 'F' AND locationid IN(
/// SELECT locationid FRO [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role2loc3 {
get {
return ResourceManager.GetString("eb_create_or_update_role2loc3", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to create or replace FUNCTION eb_create_or_update_role2role(
/// roleid NUMBER,
/// userid NUMBER,
/// dependantroles VARCHAR2)
/// RETURN NUMBER AS
/// PRAGMA AUTONOMOUS_TRANSACTION;
/// rids NUMBER;
///
///BEGIN
/// UPDATE eb_role2role
/// SET eb_del = 'T',revokedat = SYSTIMESTAMP,revokedby = userid WHERE
/// role2_id IN (SELECT TO_CHAR(role2_id) FROM eb_role2role WHERE role1_id = roleid and eb_del = 'F' MINUS
/// SELECT regexp_substr(dependantroles,'[^,]+', 1, level) from dual CONNE [rest of string was truncated]";.
/// </summary>
public static string eb_create_or_update_role2role {
get {
return ResourceManager.GetString("eb_create_or_update_role2role", resourceCulture);
}
}