@girs/gda-5.0 5.0.0-3.2.7 → 5.0.0-3.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/gda-5.0-ambient.js +2 -0
- package/gda-5.0-import.js +3 -0
- package/gda-5.0.d.cts +12 -297
- package/gda-5.0.d.ts +12 -297
- package/package.json +14 -8
package/gda-5.0.d.cts
CHANGED
|
@@ -3043,14 +3043,6 @@ export module Config {
|
|
|
3043
3043
|
|
|
3044
3044
|
// Own constructor properties of Gda-5.0.Gda.Config
|
|
3045
3045
|
|
|
3046
|
-
/**
|
|
3047
|
-
* File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3048
|
-
*/
|
|
3049
|
-
system_filename?: string | null
|
|
3050
|
-
/**
|
|
3051
|
-
* File to use for per-user DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3052
|
-
*/
|
|
3053
|
-
user_filename?: string | null
|
|
3054
3046
|
/**
|
|
3055
3047
|
* File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3056
3048
|
*/
|
|
@@ -3067,18 +3059,10 @@ export interface Config {
|
|
|
3067
3059
|
|
|
3068
3060
|
// Own properties of Gda-5.0.Gda.Config
|
|
3069
3061
|
|
|
3070
|
-
/**
|
|
3071
|
-
* File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3072
|
-
*/
|
|
3073
|
-
system_filename: string | null
|
|
3074
3062
|
/**
|
|
3075
3063
|
* File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3076
3064
|
*/
|
|
3077
3065
|
systemFilename: string | null
|
|
3078
|
-
/**
|
|
3079
|
-
* File to use for per-user DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3080
|
-
*/
|
|
3081
|
-
user_filename: string | null
|
|
3082
3066
|
/**
|
|
3083
3067
|
* File to use for per-user DSN list. When changed, the whole list of DSN will be reloaded.
|
|
3084
3068
|
*/
|
|
@@ -3299,45 +3283,9 @@ export module Connection {
|
|
|
3299
3283
|
|
|
3300
3284
|
// Own constructor properties of Gda-5.0.Gda.Connection
|
|
3301
3285
|
|
|
3302
|
-
auth_string?: string | null
|
|
3303
|
-
cnc_string?: string | null
|
|
3304
|
-
dsn?: string | null
|
|
3305
|
-
/**
|
|
3306
|
-
* Defines the number of #GdaConnectionEvent objects kept in memory which can
|
|
3307
|
-
* be fetched using gda_connection_get_events().
|
|
3308
|
-
*/
|
|
3309
|
-
events_history_size?: number | null
|
|
3310
|
-
/**
|
|
3311
|
-
* Artificially slows down the execution of queries. This property can be used to
|
|
3312
|
-
* debug some problems. If non zero, this value is the number of microseconds waited before actually
|
|
3313
|
-
* executing each query.
|
|
3314
|
-
*/
|
|
3315
|
-
execution_slowdown?: number | null
|
|
3316
|
-
/**
|
|
3317
|
-
* Computes execution times for each statement executed.
|
|
3318
|
-
*/
|
|
3319
|
-
execution_timer?: boolean | null
|
|
3320
|
-
/**
|
|
3321
|
-
* This property, if set to %TRUE, specifies that the connection is not a real connection, but rather
|
|
3322
|
-
* a #GdaConnection object which "proxies" all the calls to another connection which executes in a sub
|
|
3323
|
-
* thread.
|
|
3324
|
-
*
|
|
3325
|
-
* Note: this property is used internally by Libgda and should not be directly used by any programs. Setting
|
|
3326
|
-
* this property has no effect, reading it is supported, though.
|
|
3327
|
-
*/
|
|
3328
|
-
is_wrapper?: boolean | null
|
|
3329
|
-
meta_store?: MetaStore | null
|
|
3330
|
-
/**
|
|
3331
|
-
* Useful only when there is a mainloop and when the connection acts as a thread wrapper around another connection,
|
|
3332
|
-
* it sets up a timeout to handle signals coming from the wrapped connection.
|
|
3333
|
-
*
|
|
3334
|
-
* If the connection is not a thread wrapper, then this property has no effect.
|
|
3335
|
-
*/
|
|
3336
|
-
monitor_wrapped_in_mainloop?: boolean | null
|
|
3337
|
-
provider?: ServerProvider | null
|
|
3338
|
-
thread_owner?: any | null
|
|
3339
3286
|
authString?: string | null
|
|
3340
3287
|
cncString?: string | null
|
|
3288
|
+
dsn?: string | null
|
|
3341
3289
|
/**
|
|
3342
3290
|
* Defines the number of #GdaConnectionEvent objects kept in memory which can
|
|
3343
3291
|
* be fetched using gda_connection_get_events().
|
|
@@ -3370,6 +3318,7 @@ export module Connection {
|
|
|
3370
3318
|
* If the connection is not a thread wrapper, then this property has no effect.
|
|
3371
3319
|
*/
|
|
3372
3320
|
monitorWrappedInMainloop?: boolean | null
|
|
3321
|
+
provider?: ServerProvider | null
|
|
3373
3322
|
threadOwner?: any | null
|
|
3374
3323
|
}
|
|
3375
3324
|
|
|
@@ -3379,50 +3328,24 @@ export interface Connection extends Lockable {
|
|
|
3379
3328
|
|
|
3380
3329
|
// Own properties of Gda-5.0.Gda.Connection
|
|
3381
3330
|
|
|
3382
|
-
auth_string: string | null
|
|
3383
3331
|
authString: string | null
|
|
3384
|
-
cnc_string: string | null
|
|
3385
3332
|
cncString: string | null
|
|
3386
3333
|
dsn: string | null
|
|
3387
|
-
/**
|
|
3388
|
-
* Defines the number of #GdaConnectionEvent objects kept in memory which can
|
|
3389
|
-
* be fetched using gda_connection_get_events().
|
|
3390
|
-
*/
|
|
3391
|
-
events_history_size: number
|
|
3392
3334
|
/**
|
|
3393
3335
|
* Defines the number of #GdaConnectionEvent objects kept in memory which can
|
|
3394
3336
|
* be fetched using gda_connection_get_events().
|
|
3395
3337
|
*/
|
|
3396
3338
|
eventsHistorySize: number
|
|
3397
|
-
/**
|
|
3398
|
-
* Artificially slows down the execution of queries. This property can be used to
|
|
3399
|
-
* debug some problems. If non zero, this value is the number of microseconds waited before actually
|
|
3400
|
-
* executing each query.
|
|
3401
|
-
*/
|
|
3402
|
-
execution_slowdown: number
|
|
3403
3339
|
/**
|
|
3404
3340
|
* Artificially slows down the execution of queries. This property can be used to
|
|
3405
3341
|
* debug some problems. If non zero, this value is the number of microseconds waited before actually
|
|
3406
3342
|
* executing each query.
|
|
3407
3343
|
*/
|
|
3408
3344
|
executionSlowdown: number
|
|
3409
|
-
/**
|
|
3410
|
-
* Computes execution times for each statement executed.
|
|
3411
|
-
*/
|
|
3412
|
-
execution_timer: boolean
|
|
3413
3345
|
/**
|
|
3414
3346
|
* Computes execution times for each statement executed.
|
|
3415
3347
|
*/
|
|
3416
3348
|
executionTimer: boolean
|
|
3417
|
-
/**
|
|
3418
|
-
* This property, if set to %TRUE, specifies that the connection is not a real connection, but rather
|
|
3419
|
-
* a #GdaConnection object which "proxies" all the calls to another connection which executes in a sub
|
|
3420
|
-
* thread.
|
|
3421
|
-
*
|
|
3422
|
-
* Note: this property is used internally by Libgda and should not be directly used by any programs. Setting
|
|
3423
|
-
* this property has no effect, reading it is supported, though.
|
|
3424
|
-
*/
|
|
3425
|
-
is_wrapper: boolean
|
|
3426
3349
|
/**
|
|
3427
3350
|
* This property, if set to %TRUE, specifies that the connection is not a real connection, but rather
|
|
3428
3351
|
* a #GdaConnection object which "proxies" all the calls to another connection which executes in a sub
|
|
@@ -3432,15 +3355,7 @@ export interface Connection extends Lockable {
|
|
|
3432
3355
|
* this property has no effect, reading it is supported, though.
|
|
3433
3356
|
*/
|
|
3434
3357
|
isWrapper: boolean
|
|
3435
|
-
meta_store: MetaStore
|
|
3436
3358
|
metaStore: MetaStore
|
|
3437
|
-
/**
|
|
3438
|
-
* Useful only when there is a mainloop and when the connection acts as a thread wrapper around another connection,
|
|
3439
|
-
* it sets up a timeout to handle signals coming from the wrapped connection.
|
|
3440
|
-
*
|
|
3441
|
-
* If the connection is not a thread wrapper, then this property has no effect.
|
|
3442
|
-
*/
|
|
3443
|
-
monitor_wrapped_in_mainloop: boolean
|
|
3444
3359
|
/**
|
|
3445
3360
|
* Useful only when there is a mainloop and when the connection acts as a thread wrapper around another connection,
|
|
3446
3361
|
* it sets up a timeout to handle signals coming from the wrapped connection.
|
|
@@ -3449,7 +3364,6 @@ export interface Connection extends Lockable {
|
|
|
3449
3364
|
*/
|
|
3450
3365
|
monitorWrappedInMainloop: boolean
|
|
3451
3366
|
provider: ServerProvider
|
|
3452
|
-
thread_owner: any
|
|
3453
3367
|
threadOwner: any
|
|
3454
3368
|
|
|
3455
3369
|
// Own fields of Gda-5.0.Gda.Connection
|
|
@@ -4441,8 +4355,6 @@ export module DataComparator {
|
|
|
4441
4355
|
|
|
4442
4356
|
// Own constructor properties of Gda-5.0.Gda.DataComparator
|
|
4443
4357
|
|
|
4444
|
-
new_model?: DataModel | null
|
|
4445
|
-
old_model?: DataModel | null
|
|
4446
4358
|
newModel?: DataModel | null
|
|
4447
4359
|
oldModel?: DataModel | null
|
|
4448
4360
|
}
|
|
@@ -4453,9 +4365,7 @@ export interface DataComparator {
|
|
|
4453
4365
|
|
|
4454
4366
|
// Own properties of Gda-5.0.Gda.DataComparator
|
|
4455
4367
|
|
|
4456
|
-
new_model: DataModel
|
|
4457
4368
|
newModel: DataModel
|
|
4458
|
-
old_model: DataModel
|
|
4459
4369
|
oldModel: DataModel
|
|
4460
4370
|
|
|
4461
4371
|
// Own fields of Gda-5.0.Gda.DataComparator
|
|
@@ -4558,8 +4468,6 @@ export module DataModelArray {
|
|
|
4558
4468
|
|
|
4559
4469
|
// Own constructor properties of Gda-5.0.Gda.DataModelArray
|
|
4560
4470
|
|
|
4561
|
-
n_columns?: number | null
|
|
4562
|
-
read_only?: boolean | null
|
|
4563
4471
|
nColumns?: number | null
|
|
4564
4472
|
readOnly?: boolean | null
|
|
4565
4473
|
}
|
|
@@ -4570,9 +4478,7 @@ export interface DataModelArray extends DataModel {
|
|
|
4570
4478
|
|
|
4571
4479
|
// Own properties of Gda-5.0.Gda.DataModelArray
|
|
4572
4480
|
|
|
4573
|
-
n_columns: number
|
|
4574
4481
|
nColumns: number
|
|
4575
|
-
read_only: boolean
|
|
4576
4482
|
readOnly: boolean
|
|
4577
4483
|
|
|
4578
4484
|
// Own fields of Gda-5.0.Gda.DataModelArray
|
|
@@ -4712,7 +4618,7 @@ export module DataModelImport {
|
|
|
4712
4618
|
/**
|
|
4713
4619
|
* Data to import, as a string.
|
|
4714
4620
|
*/
|
|
4715
|
-
|
|
4621
|
+
dataString?: string | null
|
|
4716
4622
|
/**
|
|
4717
4623
|
* Name of the file to import.
|
|
4718
4624
|
*/
|
|
@@ -4725,26 +4631,13 @@ export module DataModelImport {
|
|
|
4725
4631
|
* Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
|
|
4726
4632
|
* access will have to be done using a cursor.
|
|
4727
4633
|
*/
|
|
4728
|
-
|
|
4634
|
+
randomAccess?: boolean | null
|
|
4729
4635
|
/**
|
|
4730
4636
|
* Defines the behaviour in case the imported data contains recoverable errors (usually too
|
|
4731
4637
|
* many or too few data per row). If set to %TRUE, an error will be reported and the import
|
|
4732
4638
|
* will stop, and if set to %FALSE, then the error will be reported but the import will not stop.
|
|
4733
4639
|
*/
|
|
4734
4640
|
strict?: boolean | null
|
|
4735
|
-
/**
|
|
4736
|
-
* Data to import, as a pointer to an XML node (a #xmlNodePtr).
|
|
4737
|
-
*/
|
|
4738
|
-
xml_node?: any | null
|
|
4739
|
-
/**
|
|
4740
|
-
* Data to import, as a string.
|
|
4741
|
-
*/
|
|
4742
|
-
dataString?: string | null
|
|
4743
|
-
/**
|
|
4744
|
-
* Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
|
|
4745
|
-
* access will have to be done using a cursor.
|
|
4746
|
-
*/
|
|
4747
|
-
randomAccess?: boolean | null
|
|
4748
4641
|
/**
|
|
4749
4642
|
* Data to import, as a pointer to an XML node (a #xmlNodePtr).
|
|
4750
4643
|
*/
|
|
@@ -4757,10 +4650,6 @@ export interface DataModelImport extends DataModel {
|
|
|
4757
4650
|
|
|
4758
4651
|
// Own properties of Gda-5.0.Gda.DataModelImport
|
|
4759
4652
|
|
|
4760
|
-
/**
|
|
4761
|
-
* Data to import, as a string.
|
|
4762
|
-
*/
|
|
4763
|
-
readonly data_string: string | null
|
|
4764
4653
|
/**
|
|
4765
4654
|
* Data to import, as a string.
|
|
4766
4655
|
*/
|
|
@@ -4773,11 +4662,6 @@ export interface DataModelImport extends DataModel {
|
|
|
4773
4662
|
* Data model options.
|
|
4774
4663
|
*/
|
|
4775
4664
|
readonly options: Set
|
|
4776
|
-
/**
|
|
4777
|
-
* Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
|
|
4778
|
-
* access will have to be done using a cursor.
|
|
4779
|
-
*/
|
|
4780
|
-
readonly random_access: boolean
|
|
4781
4665
|
/**
|
|
4782
4666
|
* Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
|
|
4783
4667
|
* access will have to be done using a cursor.
|
|
@@ -4789,10 +4673,6 @@ export interface DataModelImport extends DataModel {
|
|
|
4789
4673
|
* will stop, and if set to %FALSE, then the error will be reported but the import will not stop.
|
|
4790
4674
|
*/
|
|
4791
4675
|
strict: boolean
|
|
4792
|
-
/**
|
|
4793
|
-
* Data to import, as a pointer to an XML node (a #xmlNodePtr).
|
|
4794
|
-
*/
|
|
4795
|
-
readonly xml_node: any
|
|
4796
4676
|
/**
|
|
4797
4677
|
* Data to import, as a pointer to an XML node (a #xmlNodePtr).
|
|
4798
4678
|
*/
|
|
@@ -4922,10 +4802,6 @@ export module DataModelIter {
|
|
|
4922
4802
|
|
|
4923
4803
|
// Own constructor properties of Gda-5.0.Gda.DataModelIter
|
|
4924
4804
|
|
|
4925
|
-
current_row?: number | null
|
|
4926
|
-
data_model?: DataModel | null
|
|
4927
|
-
forced_model?: DataModel | null
|
|
4928
|
-
update_model?: boolean | null
|
|
4929
4805
|
currentRow?: number | null
|
|
4930
4806
|
dataModel?: DataModel | null
|
|
4931
4807
|
forcedModel?: DataModel | null
|
|
@@ -4938,13 +4814,9 @@ export interface DataModelIter {
|
|
|
4938
4814
|
|
|
4939
4815
|
// Own properties of Gda-5.0.Gda.DataModelIter
|
|
4940
4816
|
|
|
4941
|
-
current_row: number
|
|
4942
4817
|
currentRow: number
|
|
4943
|
-
data_model: DataModel
|
|
4944
4818
|
dataModel: DataModel
|
|
4945
|
-
forced_model: DataModel
|
|
4946
4819
|
forcedModel: DataModel
|
|
4947
|
-
update_model: boolean
|
|
4948
4820
|
updateModel: boolean
|
|
4949
4821
|
|
|
4950
4822
|
// Own fields of Gda-5.0.Gda.DataModelIter
|
|
@@ -5425,23 +5297,6 @@ export module DataProxy {
|
|
|
5425
5297
|
|
|
5426
5298
|
// Own constructor properties of Gda-5.0.Gda.DataProxy
|
|
5427
5299
|
|
|
5428
|
-
/**
|
|
5429
|
-
* Defines how changes kept in the data proxy are handled when the proxied data model
|
|
5430
|
-
* is changed (using the "model" property). The default is to silently discard all the
|
|
5431
|
-
* changes, but if this property is set to %TRUE, then the changes are cached.
|
|
5432
|
-
*
|
|
5433
|
-
* If set to %TRUE, each cached change will be re-applied to a newly set proxied data model if
|
|
5434
|
-
* the change's number of columns match the proxied data model's number of columns and based on:
|
|
5435
|
-
* <itemizedlist>
|
|
5436
|
-
* <listitem><para>the contents of the proxied data model's modified row for updates and deletes</para></listitem>
|
|
5437
|
-
* <listitem><para>the inserts are always kept</para></listitem>
|
|
5438
|
-
* </itemizedlist>
|
|
5439
|
-
*/
|
|
5440
|
-
cache_changes?: boolean | null
|
|
5441
|
-
defer_sync?: boolean | null
|
|
5442
|
-
model?: DataModel | null
|
|
5443
|
-
prepend_null_entry?: boolean | null
|
|
5444
|
-
sample_size?: number | null
|
|
5445
5300
|
/**
|
|
5446
5301
|
* Defines how changes kept in the data proxy are handled when the proxied data model
|
|
5447
5302
|
* is changed (using the "model" property). The default is to silently discard all the
|
|
@@ -5456,6 +5311,7 @@ export module DataProxy {
|
|
|
5456
5311
|
*/
|
|
5457
5312
|
cacheChanges?: boolean | null
|
|
5458
5313
|
deferSync?: boolean | null
|
|
5314
|
+
model?: DataModel | null
|
|
5459
5315
|
prependNullEntry?: boolean | null
|
|
5460
5316
|
sampleSize?: number | null
|
|
5461
5317
|
}
|
|
@@ -5466,19 +5322,6 @@ export interface DataProxy extends DataModel {
|
|
|
5466
5322
|
|
|
5467
5323
|
// Own properties of Gda-5.0.Gda.DataProxy
|
|
5468
5324
|
|
|
5469
|
-
/**
|
|
5470
|
-
* Defines how changes kept in the data proxy are handled when the proxied data model
|
|
5471
|
-
* is changed (using the "model" property). The default is to silently discard all the
|
|
5472
|
-
* changes, but if this property is set to %TRUE, then the changes are cached.
|
|
5473
|
-
*
|
|
5474
|
-
* If set to %TRUE, each cached change will be re-applied to a newly set proxied data model if
|
|
5475
|
-
* the change's number of columns match the proxied data model's number of columns and based on:
|
|
5476
|
-
* <itemizedlist>
|
|
5477
|
-
* <listitem><para>the contents of the proxied data model's modified row for updates and deletes</para></listitem>
|
|
5478
|
-
* <listitem><para>the inserts are always kept</para></listitem>
|
|
5479
|
-
* </itemizedlist>
|
|
5480
|
-
*/
|
|
5481
|
-
cache_changes: boolean
|
|
5482
5325
|
/**
|
|
5483
5326
|
* Defines how changes kept in the data proxy are handled when the proxied data model
|
|
5484
5327
|
* is changed (using the "model" property). The default is to silently discard all the
|
|
@@ -5492,12 +5335,9 @@ export interface DataProxy extends DataModel {
|
|
|
5492
5335
|
* </itemizedlist>
|
|
5493
5336
|
*/
|
|
5494
5337
|
cacheChanges: boolean
|
|
5495
|
-
defer_sync: boolean
|
|
5496
5338
|
deferSync: boolean
|
|
5497
5339
|
model: DataModel
|
|
5498
|
-
prepend_null_entry: boolean
|
|
5499
5340
|
prependNullEntry: boolean
|
|
5500
|
-
sample_size: number
|
|
5501
5341
|
sampleSize: number
|
|
5502
5342
|
|
|
5503
5343
|
// Own fields of Gda-5.0.Gda.DataProxy
|
|
@@ -5797,20 +5637,8 @@ export module DataSelect {
|
|
|
5797
5637
|
|
|
5798
5638
|
// Own constructor properties of Gda-5.0.Gda.DataSelect
|
|
5799
5639
|
|
|
5800
|
-
auto_reset?: boolean | null
|
|
5801
|
-
connection?: Connection | null
|
|
5802
|
-
delete_stmt?: Statement | null
|
|
5803
|
-
exec_params?: Set | null
|
|
5804
|
-
/**
|
|
5805
|
-
* This property stores the execution delay which has been necessary to obtain the data
|
|
5806
|
-
*/
|
|
5807
|
-
execution_delay?: number | null
|
|
5808
|
-
insert_stmt?: Statement | null
|
|
5809
|
-
model_usage?: number | null
|
|
5810
|
-
prepared_stmt?: PStmt | null
|
|
5811
|
-
store_all_rows?: boolean | null
|
|
5812
|
-
update_stmt?: Statement | null
|
|
5813
5640
|
autoReset?: boolean | null
|
|
5641
|
+
connection?: Connection | null
|
|
5814
5642
|
deleteStmt?: Statement | null
|
|
5815
5643
|
execParams?: Set | null
|
|
5816
5644
|
/**
|
|
@@ -5830,32 +5658,19 @@ export interface DataSelect extends DataModel {
|
|
|
5830
5658
|
|
|
5831
5659
|
// Own properties of Gda-5.0.Gda.DataSelect
|
|
5832
5660
|
|
|
5833
|
-
auto_reset: boolean
|
|
5834
5661
|
autoReset: boolean
|
|
5835
5662
|
readonly connection: Connection
|
|
5836
|
-
delete_stmt: Statement
|
|
5837
5663
|
deleteStmt: Statement
|
|
5838
|
-
readonly exec_params: Set
|
|
5839
5664
|
readonly execParams: Set
|
|
5840
|
-
/**
|
|
5841
|
-
* This property stores the execution delay which has been necessary to obtain the data
|
|
5842
|
-
*/
|
|
5843
|
-
execution_delay: number
|
|
5844
5665
|
/**
|
|
5845
5666
|
* This property stores the execution delay which has been necessary to obtain the data
|
|
5846
5667
|
*/
|
|
5847
5668
|
executionDelay: number
|
|
5848
|
-
insert_stmt: Statement
|
|
5849
5669
|
insertStmt: Statement
|
|
5850
|
-
readonly model_usage: number
|
|
5851
5670
|
readonly modelUsage: number
|
|
5852
|
-
prepared_stmt: PStmt
|
|
5853
5671
|
preparedStmt: PStmt
|
|
5854
|
-
readonly select_stmt: Statement
|
|
5855
5672
|
readonly selectStmt: Statement
|
|
5856
|
-
store_all_rows: boolean
|
|
5857
5673
|
storeAllRows: boolean
|
|
5858
|
-
update_stmt: Statement
|
|
5859
5674
|
updateStmt: Statement
|
|
5860
5675
|
|
|
5861
5676
|
// Own fields of Gda-5.0.Gda.DataSelect
|
|
@@ -6420,21 +6235,10 @@ export module Holder {
|
|
|
6420
6235
|
// Own constructor properties of Gda-5.0.Gda.Holder
|
|
6421
6236
|
|
|
6422
6237
|
description?: string | null
|
|
6423
|
-
full_bind?: Holder | null
|
|
6424
|
-
g_type?: GObject.GType | null
|
|
6425
|
-
id?: string | null
|
|
6426
|
-
name?: string | null
|
|
6427
|
-
not_null?: boolean | null
|
|
6428
|
-
simple_bind?: Holder | null
|
|
6429
|
-
source_column?: number | null
|
|
6430
|
-
source_model?: DataModel | null
|
|
6431
|
-
/**
|
|
6432
|
-
* Defines if the "validate-change" signal gets emitted when
|
|
6433
|
-
* the holder's value changes.
|
|
6434
|
-
*/
|
|
6435
|
-
validate_changes?: boolean | null
|
|
6436
6238
|
fullBind?: Holder | null
|
|
6437
6239
|
gType?: GObject.GType | null
|
|
6240
|
+
id?: string | null
|
|
6241
|
+
name?: string | null
|
|
6438
6242
|
notNull?: boolean | null
|
|
6439
6243
|
simpleBind?: Holder | null
|
|
6440
6244
|
sourceColumn?: number | null
|
|
@@ -6453,25 +6257,14 @@ export interface Holder extends Lockable {
|
|
|
6453
6257
|
// Own properties of Gda-5.0.Gda.Holder
|
|
6454
6258
|
|
|
6455
6259
|
description: string | null
|
|
6456
|
-
full_bind: Holder
|
|
6457
6260
|
fullBind: Holder
|
|
6458
|
-
g_type: GObject.GType
|
|
6459
6261
|
gType: GObject.GType
|
|
6460
6262
|
id: string | null
|
|
6461
6263
|
name: string | null
|
|
6462
|
-
not_null: boolean
|
|
6463
6264
|
notNull: boolean
|
|
6464
|
-
simple_bind: Holder
|
|
6465
6265
|
simpleBind: Holder
|
|
6466
|
-
source_column: number
|
|
6467
6266
|
sourceColumn: number
|
|
6468
|
-
source_model: DataModel
|
|
6469
6267
|
sourceModel: DataModel
|
|
6470
|
-
/**
|
|
6471
|
-
* Defines if the "validate-change" signal gets emitted when
|
|
6472
|
-
* the holder's value changes.
|
|
6473
|
-
*/
|
|
6474
|
-
validate_changes: boolean
|
|
6475
6268
|
/**
|
|
6476
6269
|
* Defines if the "validate-change" signal gets emitted when
|
|
6477
6270
|
* the holder's value changes.
|
|
@@ -6855,9 +6648,8 @@ export module MetaStore {
|
|
|
6855
6648
|
|
|
6856
6649
|
catalog?: string | null
|
|
6857
6650
|
cnc?: Connection | null
|
|
6858
|
-
cnc_string?: string | null
|
|
6859
|
-
schema?: string | null
|
|
6860
6651
|
cncString?: string | null
|
|
6652
|
+
schema?: string | null
|
|
6861
6653
|
}
|
|
6862
6654
|
|
|
6863
6655
|
}
|
|
@@ -6868,7 +6660,6 @@ export interface MetaStore {
|
|
|
6868
6660
|
|
|
6869
6661
|
readonly catalog: string | null
|
|
6870
6662
|
readonly cnc: Connection
|
|
6871
|
-
readonly cnc_string: string | null
|
|
6872
6663
|
readonly cncString: string | null
|
|
6873
6664
|
readonly schema: string | null
|
|
6874
6665
|
|
|
@@ -7202,7 +6993,6 @@ export module MetaStruct {
|
|
|
7202
6993
|
// Own constructor properties of Gda-5.0.Gda.MetaStruct
|
|
7203
6994
|
|
|
7204
6995
|
features?: number | null
|
|
7205
|
-
meta_store?: MetaStore | null
|
|
7206
6996
|
metaStore?: MetaStore | null
|
|
7207
6997
|
}
|
|
7208
6998
|
|
|
@@ -7213,7 +7003,6 @@ export interface MetaStruct {
|
|
|
7213
7003
|
// Own properties of Gda-5.0.Gda.MetaStruct
|
|
7214
7004
|
|
|
7215
7005
|
readonly features: number
|
|
7216
|
-
readonly meta_store: MetaStore
|
|
7217
7006
|
readonly metaStore: MetaStore
|
|
7218
7007
|
|
|
7219
7008
|
// Own fields of Gda-5.0.Gda.MetaStruct
|
|
@@ -7560,7 +7349,6 @@ export module Row {
|
|
|
7560
7349
|
|
|
7561
7350
|
// Own constructor properties of Gda-5.0.Gda.Row
|
|
7562
7351
|
|
|
7563
|
-
nb_values?: number | null
|
|
7564
7352
|
nbValues?: number | null
|
|
7565
7353
|
}
|
|
7566
7354
|
|
|
@@ -7570,7 +7358,6 @@ export interface Row {
|
|
|
7570
7358
|
|
|
7571
7359
|
// Own properties of Gda-5.0.Gda.Row
|
|
7572
7360
|
|
|
7573
|
-
nb_values: number
|
|
7574
7361
|
nbValues: number
|
|
7575
7362
|
|
|
7576
7363
|
// Own fields of Gda-5.0.Gda.Row
|
|
@@ -7684,10 +7471,8 @@ export module ServerOperation {
|
|
|
7684
7471
|
// Own constructor properties of Gda-5.0.Gda.ServerOperation
|
|
7685
7472
|
|
|
7686
7473
|
connection?: Connection | null
|
|
7687
|
-
op_type?: number | null
|
|
7688
|
-
provider?: ServerProvider | null
|
|
7689
|
-
spec_filename?: string | null
|
|
7690
7474
|
opType?: number | null
|
|
7475
|
+
provider?: ServerProvider | null
|
|
7691
7476
|
specFilename?: string | null
|
|
7692
7477
|
}
|
|
7693
7478
|
|
|
@@ -7698,10 +7483,8 @@ export interface ServerOperation {
|
|
|
7698
7483
|
// Own properties of Gda-5.0.Gda.ServerOperation
|
|
7699
7484
|
|
|
7700
7485
|
readonly connection: Connection
|
|
7701
|
-
readonly op_type: number
|
|
7702
7486
|
readonly opType: number
|
|
7703
7487
|
readonly provider: ServerProvider
|
|
7704
|
-
readonly spec_filename: string | null
|
|
7705
7488
|
readonly specFilename: string | null
|
|
7706
7489
|
|
|
7707
7490
|
// Own fields of Gda-5.0.Gda.ServerOperation
|
|
@@ -8378,12 +8161,6 @@ export module Set {
|
|
|
8378
8161
|
holders?: any | null
|
|
8379
8162
|
id?: string | null
|
|
8380
8163
|
name?: string | null
|
|
8381
|
-
/**
|
|
8382
|
-
* Defines if the "validate-set" signal gets emitted when
|
|
8383
|
-
* any holder in the data set changes. This property also affects the
|
|
8384
|
-
* GdaHolder:validate-changes property.
|
|
8385
|
-
*/
|
|
8386
|
-
validate_changes?: boolean | null
|
|
8387
8164
|
/**
|
|
8388
8165
|
* Defines if the "validate-set" signal gets emitted when
|
|
8389
8166
|
* any holder in the data set changes. This property also affects the
|
|
@@ -8401,12 +8178,6 @@ export interface Set {
|
|
|
8401
8178
|
description: string | null
|
|
8402
8179
|
id: string | null
|
|
8403
8180
|
name: string | null
|
|
8404
|
-
/**
|
|
8405
|
-
* Defines if the "validate-set" signal gets emitted when
|
|
8406
|
-
* any holder in the data set changes. This property also affects the
|
|
8407
|
-
* GdaHolder:validate-changes property.
|
|
8408
|
-
*/
|
|
8409
|
-
validate_changes: boolean
|
|
8410
8181
|
/**
|
|
8411
8182
|
* Defines if the "validate-set" signal gets emitted when
|
|
8412
8183
|
* any holder in the data set changes. This property also affects the
|
|
@@ -8974,7 +8745,6 @@ export module SqlParser {
|
|
|
8974
8745
|
// Own constructor properties of Gda-5.0.Gda.SqlParser
|
|
8975
8746
|
|
|
8976
8747
|
mode?: number | null
|
|
8977
|
-
tokenizer_flavour?: number | null
|
|
8978
8748
|
tokenizerFlavour?: number | null
|
|
8979
8749
|
}
|
|
8980
8750
|
|
|
@@ -8984,12 +8754,9 @@ export interface SqlParser extends Lockable {
|
|
|
8984
8754
|
|
|
8985
8755
|
// Own properties of Gda-5.0.Gda.SqlParser
|
|
8986
8756
|
|
|
8987
|
-
readonly column_error: number
|
|
8988
8757
|
readonly columnError: number
|
|
8989
|
-
readonly line_error: number
|
|
8990
8758
|
readonly lineError: number
|
|
8991
8759
|
mode: number
|
|
8992
|
-
tokenizer_flavour: number
|
|
8993
8760
|
tokenizerFlavour: number
|
|
8994
8761
|
|
|
8995
8762
|
// Own fields of Gda-5.0.Gda.SqlParser
|
|
@@ -9566,10 +9333,6 @@ export interface Tree {
|
|
|
9566
9333
|
|
|
9567
9334
|
// Own properties of Gda-5.0.Gda.Tree
|
|
9568
9335
|
|
|
9569
|
-
/**
|
|
9570
|
-
* Tells if the GdaTree is a list or a tree.
|
|
9571
|
-
*/
|
|
9572
|
-
readonly is_list: boolean
|
|
9573
9336
|
/**
|
|
9574
9337
|
* Tells if the GdaTree is a list or a tree.
|
|
9575
9338
|
*/
|
|
@@ -9847,21 +9610,11 @@ export module TreeMgrColumns {
|
|
|
9847
9610
|
* the #GdaTreeMgrColumns:connection property is specified instead. This property has
|
|
9848
9611
|
* priority over the GdaTreeMgrColumns:connection property.
|
|
9849
9612
|
*/
|
|
9850
|
-
|
|
9613
|
+
metaStore?: MetaStore | null
|
|
9851
9614
|
/**
|
|
9852
9615
|
* If no set, then the table name will be fetched from the parent node using the "schema" attribute
|
|
9853
9616
|
*/
|
|
9854
9617
|
schema?: string | null
|
|
9855
|
-
/**
|
|
9856
|
-
* If no set, then the table name will be fetched from the parent node using the "table_name" attribute
|
|
9857
|
-
*/
|
|
9858
|
-
table_name?: string | null
|
|
9859
|
-
/**
|
|
9860
|
-
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
9861
|
-
* the #GdaTreeMgrColumns:connection property is specified instead. This property has
|
|
9862
|
-
* priority over the GdaTreeMgrColumns:connection property.
|
|
9863
|
-
*/
|
|
9864
|
-
metaStore?: MetaStore | null
|
|
9865
9618
|
/**
|
|
9866
9619
|
* If no set, then the table name will be fetched from the parent node using the "table_name" attribute
|
|
9867
9620
|
*/
|
|
@@ -9879,12 +9632,6 @@ export interface TreeMgrColumns {
|
|
|
9879
9632
|
* the #GdaTreeMgrColumns:meta-store property is specified instead.
|
|
9880
9633
|
*/
|
|
9881
9634
|
readonly connection: Connection
|
|
9882
|
-
/**
|
|
9883
|
-
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
9884
|
-
* the #GdaTreeMgrColumns:connection property is specified instead. This property has
|
|
9885
|
-
* priority over the GdaTreeMgrColumns:connection property.
|
|
9886
|
-
*/
|
|
9887
|
-
readonly meta_store: MetaStore
|
|
9888
9635
|
/**
|
|
9889
9636
|
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
9890
9637
|
* the #GdaTreeMgrColumns:connection property is specified instead. This property has
|
|
@@ -9895,10 +9642,6 @@ export interface TreeMgrColumns {
|
|
|
9895
9642
|
* If no set, then the table name will be fetched from the parent node using the "schema" attribute
|
|
9896
9643
|
*/
|
|
9897
9644
|
readonly schema: string | null
|
|
9898
|
-
/**
|
|
9899
|
-
* If no set, then the table name will be fetched from the parent node using the "table_name" attribute
|
|
9900
|
-
*/
|
|
9901
|
-
readonly table_name: string | null
|
|
9902
9645
|
/**
|
|
9903
9646
|
* If no set, then the table name will be fetched from the parent node using the "table_name" attribute
|
|
9904
9647
|
*/
|
|
@@ -10129,12 +9872,6 @@ export module TreeMgrSchemas {
|
|
|
10129
9872
|
* the #GdaTreeMgrSchema:meta-store property is specified instead.
|
|
10130
9873
|
*/
|
|
10131
9874
|
connection?: Connection | null
|
|
10132
|
-
/**
|
|
10133
|
-
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10134
|
-
* the #GdaTreeMgrSchema:connection property is specified instead. This property has
|
|
10135
|
-
* priority over the GdaTreeMgrSchema:connection property.
|
|
10136
|
-
*/
|
|
10137
|
-
meta_store?: MetaStore | null
|
|
10138
9875
|
/**
|
|
10139
9876
|
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10140
9877
|
* the #GdaTreeMgrSchema:connection property is specified instead. This property has
|
|
@@ -10154,12 +9891,6 @@ export interface TreeMgrSchemas {
|
|
|
10154
9891
|
* the #GdaTreeMgrSchema:meta-store property is specified instead.
|
|
10155
9892
|
*/
|
|
10156
9893
|
readonly connection: Connection
|
|
10157
|
-
/**
|
|
10158
|
-
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10159
|
-
* the #GdaTreeMgrSchema:connection property is specified instead. This property has
|
|
10160
|
-
* priority over the GdaTreeMgrSchema:connection property.
|
|
10161
|
-
*/
|
|
10162
|
-
readonly meta_store: MetaStore
|
|
10163
9894
|
/**
|
|
10164
9895
|
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10165
9896
|
* the #GdaTreeMgrSchema:connection property is specified instead. This property has
|
|
@@ -10323,19 +10054,13 @@ export module TreeMgrTables {
|
|
|
10323
10054
|
* the #GdaTreeMgrTables:connection property is specified instead. This property has
|
|
10324
10055
|
* priority over the GdaTreeMgrTables:connection property.
|
|
10325
10056
|
*/
|
|
10326
|
-
|
|
10057
|
+
metaStore?: MetaStore | null
|
|
10327
10058
|
/**
|
|
10328
10059
|
* If no set, then the table name will be fetched from the parent node using the "schema" attribute. If not
|
|
10329
10060
|
* found that way, then the list of visible tables (tables which can be identified without having to specify
|
|
10330
10061
|
* a schema) will be used
|
|
10331
10062
|
*/
|
|
10332
10063
|
schema?: string | null
|
|
10333
|
-
/**
|
|
10334
|
-
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10335
|
-
* the #GdaTreeMgrTables:connection property is specified instead. This property has
|
|
10336
|
-
* priority over the GdaTreeMgrTables:connection property.
|
|
10337
|
-
*/
|
|
10338
|
-
metaStore?: MetaStore | null
|
|
10339
10064
|
}
|
|
10340
10065
|
|
|
10341
10066
|
}
|
|
@@ -10349,12 +10074,6 @@ export interface TreeMgrTables {
|
|
|
10349
10074
|
* the #GdaTreeMgrTables:meta-store property is specified instead.
|
|
10350
10075
|
*/
|
|
10351
10076
|
readonly connection: Connection
|
|
10352
|
-
/**
|
|
10353
|
-
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10354
|
-
* the #GdaTreeMgrTables:connection property is specified instead. This property has
|
|
10355
|
-
* priority over the GdaTreeMgrTables:connection property.
|
|
10356
|
-
*/
|
|
10357
|
-
readonly meta_store: MetaStore
|
|
10358
10077
|
/**
|
|
10359
10078
|
* Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
|
|
10360
10079
|
* the #GdaTreeMgrTables:connection property is specified instead. This property has
|
|
@@ -10633,8 +10352,6 @@ export module XaTransaction {
|
|
|
10633
10352
|
|
|
10634
10353
|
// Own constructor properties of Gda-5.0.Gda.XaTransaction
|
|
10635
10354
|
|
|
10636
|
-
format_id?: number | null
|
|
10637
|
-
transaction_id?: string | null
|
|
10638
10355
|
formatId?: number | null
|
|
10639
10356
|
transactionId?: string | null
|
|
10640
10357
|
}
|
|
@@ -10645,9 +10362,7 @@ export interface XaTransaction {
|
|
|
10645
10362
|
|
|
10646
10363
|
// Own properties of Gda-5.0.Gda.XaTransaction
|
|
10647
10364
|
|
|
10648
|
-
readonly format_id: number
|
|
10649
10365
|
readonly formatId: number
|
|
10650
|
-
readonly transaction_id: string | null
|
|
10651
10366
|
readonly transactionId: string | null
|
|
10652
10367
|
|
|
10653
10368
|
// Own fields of Gda-5.0.Gda.XaTransaction
|