@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/gda-5.0.d.ts CHANGED
@@ -3045,14 +3045,6 @@ module Config {
3045
3045
 
3046
3046
  // Own constructor properties of Gda-5.0.Gda.Config
3047
3047
 
3048
- /**
3049
- * File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
3050
- */
3051
- system_filename?: string | null
3052
- /**
3053
- * File to use for per-user DSN list. When changed, the whole list of DSN will be reloaded.
3054
- */
3055
- user_filename?: string | null
3056
3048
  /**
3057
3049
  * File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
3058
3050
  */
@@ -3069,18 +3061,10 @@ interface Config {
3069
3061
 
3070
3062
  // Own properties of Gda-5.0.Gda.Config
3071
3063
 
3072
- /**
3073
- * File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
3074
- */
3075
- system_filename: string | null
3076
3064
  /**
3077
3065
  * File to use for system-wide DSN list. When changed, the whole list of DSN will be reloaded.
3078
3066
  */
3079
3067
  systemFilename: string | null
3080
- /**
3081
- * File to use for per-user DSN list. When changed, the whole list of DSN will be reloaded.
3082
- */
3083
- user_filename: string | null
3084
3068
  /**
3085
3069
  * File to use for per-user DSN list. When changed, the whole list of DSN will be reloaded.
3086
3070
  */
@@ -3301,45 +3285,9 @@ module Connection {
3301
3285
 
3302
3286
  // Own constructor properties of Gda-5.0.Gda.Connection
3303
3287
 
3304
- auth_string?: string | null
3305
- cnc_string?: string | null
3306
- dsn?: string | null
3307
- /**
3308
- * Defines the number of #GdaConnectionEvent objects kept in memory which can
3309
- * be fetched using gda_connection_get_events().
3310
- */
3311
- events_history_size?: number | null
3312
- /**
3313
- * Artificially slows down the execution of queries. This property can be used to
3314
- * debug some problems. If non zero, this value is the number of microseconds waited before actually
3315
- * executing each query.
3316
- */
3317
- execution_slowdown?: number | null
3318
- /**
3319
- * Computes execution times for each statement executed.
3320
- */
3321
- execution_timer?: boolean | null
3322
- /**
3323
- * This property, if set to %TRUE, specifies that the connection is not a real connection, but rather
3324
- * a #GdaConnection object which "proxies" all the calls to another connection which executes in a sub
3325
- * thread.
3326
- *
3327
- * Note: this property is used internally by Libgda and should not be directly used by any programs. Setting
3328
- * this property has no effect, reading it is supported, though.
3329
- */
3330
- is_wrapper?: boolean | null
3331
- meta_store?: MetaStore | null
3332
- /**
3333
- * Useful only when there is a mainloop and when the connection acts as a thread wrapper around another connection,
3334
- * it sets up a timeout to handle signals coming from the wrapped connection.
3335
- *
3336
- * If the connection is not a thread wrapper, then this property has no effect.
3337
- */
3338
- monitor_wrapped_in_mainloop?: boolean | null
3339
- provider?: ServerProvider | null
3340
- thread_owner?: any | null
3341
3288
  authString?: string | null
3342
3289
  cncString?: string | null
3290
+ dsn?: string | null
3343
3291
  /**
3344
3292
  * Defines the number of #GdaConnectionEvent objects kept in memory which can
3345
3293
  * be fetched using gda_connection_get_events().
@@ -3372,6 +3320,7 @@ module Connection {
3372
3320
  * If the connection is not a thread wrapper, then this property has no effect.
3373
3321
  */
3374
3322
  monitorWrappedInMainloop?: boolean | null
3323
+ provider?: ServerProvider | null
3375
3324
  threadOwner?: any | null
3376
3325
  }
3377
3326
 
@@ -3381,50 +3330,24 @@ interface Connection extends Lockable {
3381
3330
 
3382
3331
  // Own properties of Gda-5.0.Gda.Connection
3383
3332
 
3384
- auth_string: string | null
3385
3333
  authString: string | null
3386
- cnc_string: string | null
3387
3334
  cncString: string | null
3388
3335
  dsn: string | null
3389
- /**
3390
- * Defines the number of #GdaConnectionEvent objects kept in memory which can
3391
- * be fetched using gda_connection_get_events().
3392
- */
3393
- events_history_size: number
3394
3336
  /**
3395
3337
  * Defines the number of #GdaConnectionEvent objects kept in memory which can
3396
3338
  * be fetched using gda_connection_get_events().
3397
3339
  */
3398
3340
  eventsHistorySize: number
3399
- /**
3400
- * Artificially slows down the execution of queries. This property can be used to
3401
- * debug some problems. If non zero, this value is the number of microseconds waited before actually
3402
- * executing each query.
3403
- */
3404
- execution_slowdown: number
3405
3341
  /**
3406
3342
  * Artificially slows down the execution of queries. This property can be used to
3407
3343
  * debug some problems. If non zero, this value is the number of microseconds waited before actually
3408
3344
  * executing each query.
3409
3345
  */
3410
3346
  executionSlowdown: number
3411
- /**
3412
- * Computes execution times for each statement executed.
3413
- */
3414
- execution_timer: boolean
3415
3347
  /**
3416
3348
  * Computes execution times for each statement executed.
3417
3349
  */
3418
3350
  executionTimer: boolean
3419
- /**
3420
- * This property, if set to %TRUE, specifies that the connection is not a real connection, but rather
3421
- * a #GdaConnection object which "proxies" all the calls to another connection which executes in a sub
3422
- * thread.
3423
- *
3424
- * Note: this property is used internally by Libgda and should not be directly used by any programs. Setting
3425
- * this property has no effect, reading it is supported, though.
3426
- */
3427
- is_wrapper: boolean
3428
3351
  /**
3429
3352
  * This property, if set to %TRUE, specifies that the connection is not a real connection, but rather
3430
3353
  * a #GdaConnection object which "proxies" all the calls to another connection which executes in a sub
@@ -3434,15 +3357,7 @@ interface Connection extends Lockable {
3434
3357
  * this property has no effect, reading it is supported, though.
3435
3358
  */
3436
3359
  isWrapper: boolean
3437
- meta_store: MetaStore
3438
3360
  metaStore: MetaStore
3439
- /**
3440
- * Useful only when there is a mainloop and when the connection acts as a thread wrapper around another connection,
3441
- * it sets up a timeout to handle signals coming from the wrapped connection.
3442
- *
3443
- * If the connection is not a thread wrapper, then this property has no effect.
3444
- */
3445
- monitor_wrapped_in_mainloop: boolean
3446
3361
  /**
3447
3362
  * Useful only when there is a mainloop and when the connection acts as a thread wrapper around another connection,
3448
3363
  * it sets up a timeout to handle signals coming from the wrapped connection.
@@ -3451,7 +3366,6 @@ interface Connection extends Lockable {
3451
3366
  */
3452
3367
  monitorWrappedInMainloop: boolean
3453
3368
  provider: ServerProvider
3454
- thread_owner: any
3455
3369
  threadOwner: any
3456
3370
 
3457
3371
  // Own fields of Gda-5.0.Gda.Connection
@@ -4443,8 +4357,6 @@ module DataComparator {
4443
4357
 
4444
4358
  // Own constructor properties of Gda-5.0.Gda.DataComparator
4445
4359
 
4446
- new_model?: DataModel | null
4447
- old_model?: DataModel | null
4448
4360
  newModel?: DataModel | null
4449
4361
  oldModel?: DataModel | null
4450
4362
  }
@@ -4455,9 +4367,7 @@ interface DataComparator {
4455
4367
 
4456
4368
  // Own properties of Gda-5.0.Gda.DataComparator
4457
4369
 
4458
- new_model: DataModel
4459
4370
  newModel: DataModel
4460
- old_model: DataModel
4461
4371
  oldModel: DataModel
4462
4372
 
4463
4373
  // Own fields of Gda-5.0.Gda.DataComparator
@@ -4560,8 +4470,6 @@ module DataModelArray {
4560
4470
 
4561
4471
  // Own constructor properties of Gda-5.0.Gda.DataModelArray
4562
4472
 
4563
- n_columns?: number | null
4564
- read_only?: boolean | null
4565
4473
  nColumns?: number | null
4566
4474
  readOnly?: boolean | null
4567
4475
  }
@@ -4572,9 +4480,7 @@ interface DataModelArray extends DataModel {
4572
4480
 
4573
4481
  // Own properties of Gda-5.0.Gda.DataModelArray
4574
4482
 
4575
- n_columns: number
4576
4483
  nColumns: number
4577
- read_only: boolean
4578
4484
  readOnly: boolean
4579
4485
 
4580
4486
  // Own fields of Gda-5.0.Gda.DataModelArray
@@ -4714,7 +4620,7 @@ module DataModelImport {
4714
4620
  /**
4715
4621
  * Data to import, as a string.
4716
4622
  */
4717
- data_string?: string | null
4623
+ dataString?: string | null
4718
4624
  /**
4719
4625
  * Name of the file to import.
4720
4626
  */
@@ -4727,26 +4633,13 @@ module DataModelImport {
4727
4633
  * Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
4728
4634
  * access will have to be done using a cursor.
4729
4635
  */
4730
- random_access?: boolean | null
4636
+ randomAccess?: boolean | null
4731
4637
  /**
4732
4638
  * Defines the behaviour in case the imported data contains recoverable errors (usually too
4733
4639
  * many or too few data per row). If set to %TRUE, an error will be reported and the import
4734
4640
  * will stop, and if set to %FALSE, then the error will be reported but the import will not stop.
4735
4641
  */
4736
4642
  strict?: boolean | null
4737
- /**
4738
- * Data to import, as a pointer to an XML node (a #xmlNodePtr).
4739
- */
4740
- xml_node?: any | null
4741
- /**
4742
- * Data to import, as a string.
4743
- */
4744
- dataString?: string | null
4745
- /**
4746
- * Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
4747
- * access will have to be done using a cursor.
4748
- */
4749
- randomAccess?: boolean | null
4750
4643
  /**
4751
4644
  * Data to import, as a pointer to an XML node (a #xmlNodePtr).
4752
4645
  */
@@ -4759,10 +4652,6 @@ interface DataModelImport extends DataModel {
4759
4652
 
4760
4653
  // Own properties of Gda-5.0.Gda.DataModelImport
4761
4654
 
4762
- /**
4763
- * Data to import, as a string.
4764
- */
4765
- readonly data_string: string | null
4766
4655
  /**
4767
4656
  * Data to import, as a string.
4768
4657
  */
@@ -4775,11 +4664,6 @@ interface DataModelImport extends DataModel {
4775
4664
  * Data model options.
4776
4665
  */
4777
4666
  readonly options: Set
4778
- /**
4779
- * Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
4780
- * access will have to be done using a cursor.
4781
- */
4782
- readonly random_access: boolean
4783
4667
  /**
4784
4668
  * Defines if the data model will be accessed randomly or through a cursor. If set to %FALSE,
4785
4669
  * access will have to be done using a cursor.
@@ -4791,10 +4675,6 @@ interface DataModelImport extends DataModel {
4791
4675
  * will stop, and if set to %FALSE, then the error will be reported but the import will not stop.
4792
4676
  */
4793
4677
  strict: boolean
4794
- /**
4795
- * Data to import, as a pointer to an XML node (a #xmlNodePtr).
4796
- */
4797
- readonly xml_node: any
4798
4678
  /**
4799
4679
  * Data to import, as a pointer to an XML node (a #xmlNodePtr).
4800
4680
  */
@@ -4924,10 +4804,6 @@ module DataModelIter {
4924
4804
 
4925
4805
  // Own constructor properties of Gda-5.0.Gda.DataModelIter
4926
4806
 
4927
- current_row?: number | null
4928
- data_model?: DataModel | null
4929
- forced_model?: DataModel | null
4930
- update_model?: boolean | null
4931
4807
  currentRow?: number | null
4932
4808
  dataModel?: DataModel | null
4933
4809
  forcedModel?: DataModel | null
@@ -4940,13 +4816,9 @@ interface DataModelIter {
4940
4816
 
4941
4817
  // Own properties of Gda-5.0.Gda.DataModelIter
4942
4818
 
4943
- current_row: number
4944
4819
  currentRow: number
4945
- data_model: DataModel
4946
4820
  dataModel: DataModel
4947
- forced_model: DataModel
4948
4821
  forcedModel: DataModel
4949
- update_model: boolean
4950
4822
  updateModel: boolean
4951
4823
 
4952
4824
  // Own fields of Gda-5.0.Gda.DataModelIter
@@ -5427,23 +5299,6 @@ module DataProxy {
5427
5299
 
5428
5300
  // Own constructor properties of Gda-5.0.Gda.DataProxy
5429
5301
 
5430
- /**
5431
- * Defines how changes kept in the data proxy are handled when the proxied data model
5432
- * is changed (using the "model" property). The default is to silently discard all the
5433
- * changes, but if this property is set to %TRUE, then the changes are cached.
5434
- *
5435
- * If set to %TRUE, each cached change will be re-applied to a newly set proxied data model if
5436
- * the change's number of columns match the proxied data model's number of columns and based on:
5437
- * <itemizedlist>
5438
- * <listitem><para>the contents of the proxied data model's modified row for updates and deletes</para></listitem>
5439
- * <listitem><para>the inserts are always kept</para></listitem>
5440
- * </itemizedlist>
5441
- */
5442
- cache_changes?: boolean | null
5443
- defer_sync?: boolean | null
5444
- model?: DataModel | null
5445
- prepend_null_entry?: boolean | null
5446
- sample_size?: number | null
5447
5302
  /**
5448
5303
  * Defines how changes kept in the data proxy are handled when the proxied data model
5449
5304
  * is changed (using the "model" property). The default is to silently discard all the
@@ -5458,6 +5313,7 @@ module DataProxy {
5458
5313
  */
5459
5314
  cacheChanges?: boolean | null
5460
5315
  deferSync?: boolean | null
5316
+ model?: DataModel | null
5461
5317
  prependNullEntry?: boolean | null
5462
5318
  sampleSize?: number | null
5463
5319
  }
@@ -5468,19 +5324,6 @@ interface DataProxy extends DataModel {
5468
5324
 
5469
5325
  // Own properties of Gda-5.0.Gda.DataProxy
5470
5326
 
5471
- /**
5472
- * Defines how changes kept in the data proxy are handled when the proxied data model
5473
- * is changed (using the "model" property). The default is to silently discard all the
5474
- * changes, but if this property is set to %TRUE, then the changes are cached.
5475
- *
5476
- * If set to %TRUE, each cached change will be re-applied to a newly set proxied data model if
5477
- * the change's number of columns match the proxied data model's number of columns and based on:
5478
- * <itemizedlist>
5479
- * <listitem><para>the contents of the proxied data model's modified row for updates and deletes</para></listitem>
5480
- * <listitem><para>the inserts are always kept</para></listitem>
5481
- * </itemizedlist>
5482
- */
5483
- cache_changes: boolean
5484
5327
  /**
5485
5328
  * Defines how changes kept in the data proxy are handled when the proxied data model
5486
5329
  * is changed (using the "model" property). The default is to silently discard all the
@@ -5494,12 +5337,9 @@ interface DataProxy extends DataModel {
5494
5337
  * </itemizedlist>
5495
5338
  */
5496
5339
  cacheChanges: boolean
5497
- defer_sync: boolean
5498
5340
  deferSync: boolean
5499
5341
  model: DataModel
5500
- prepend_null_entry: boolean
5501
5342
  prependNullEntry: boolean
5502
- sample_size: number
5503
5343
  sampleSize: number
5504
5344
 
5505
5345
  // Own fields of Gda-5.0.Gda.DataProxy
@@ -5799,20 +5639,8 @@ module DataSelect {
5799
5639
 
5800
5640
  // Own constructor properties of Gda-5.0.Gda.DataSelect
5801
5641
 
5802
- auto_reset?: boolean | null
5803
- connection?: Connection | null
5804
- delete_stmt?: Statement | null
5805
- exec_params?: Set | null
5806
- /**
5807
- * This property stores the execution delay which has been necessary to obtain the data
5808
- */
5809
- execution_delay?: number | null
5810
- insert_stmt?: Statement | null
5811
- model_usage?: number | null
5812
- prepared_stmt?: PStmt | null
5813
- store_all_rows?: boolean | null
5814
- update_stmt?: Statement | null
5815
5642
  autoReset?: boolean | null
5643
+ connection?: Connection | null
5816
5644
  deleteStmt?: Statement | null
5817
5645
  execParams?: Set | null
5818
5646
  /**
@@ -5832,32 +5660,19 @@ interface DataSelect extends DataModel {
5832
5660
 
5833
5661
  // Own properties of Gda-5.0.Gda.DataSelect
5834
5662
 
5835
- auto_reset: boolean
5836
5663
  autoReset: boolean
5837
5664
  readonly connection: Connection
5838
- delete_stmt: Statement
5839
5665
  deleteStmt: Statement
5840
- readonly exec_params: Set
5841
5666
  readonly execParams: Set
5842
- /**
5843
- * This property stores the execution delay which has been necessary to obtain the data
5844
- */
5845
- execution_delay: number
5846
5667
  /**
5847
5668
  * This property stores the execution delay which has been necessary to obtain the data
5848
5669
  */
5849
5670
  executionDelay: number
5850
- insert_stmt: Statement
5851
5671
  insertStmt: Statement
5852
- readonly model_usage: number
5853
5672
  readonly modelUsage: number
5854
- prepared_stmt: PStmt
5855
5673
  preparedStmt: PStmt
5856
- readonly select_stmt: Statement
5857
5674
  readonly selectStmt: Statement
5858
- store_all_rows: boolean
5859
5675
  storeAllRows: boolean
5860
- update_stmt: Statement
5861
5676
  updateStmt: Statement
5862
5677
 
5863
5678
  // Own fields of Gda-5.0.Gda.DataSelect
@@ -6422,21 +6237,10 @@ module Holder {
6422
6237
  // Own constructor properties of Gda-5.0.Gda.Holder
6423
6238
 
6424
6239
  description?: string | null
6425
- full_bind?: Holder | null
6426
- g_type?: GObject.GType | null
6427
- id?: string | null
6428
- name?: string | null
6429
- not_null?: boolean | null
6430
- simple_bind?: Holder | null
6431
- source_column?: number | null
6432
- source_model?: DataModel | null
6433
- /**
6434
- * Defines if the "validate-change" signal gets emitted when
6435
- * the holder's value changes.
6436
- */
6437
- validate_changes?: boolean | null
6438
6240
  fullBind?: Holder | null
6439
6241
  gType?: GObject.GType | null
6242
+ id?: string | null
6243
+ name?: string | null
6440
6244
  notNull?: boolean | null
6441
6245
  simpleBind?: Holder | null
6442
6246
  sourceColumn?: number | null
@@ -6455,25 +6259,14 @@ interface Holder extends Lockable {
6455
6259
  // Own properties of Gda-5.0.Gda.Holder
6456
6260
 
6457
6261
  description: string | null
6458
- full_bind: Holder
6459
6262
  fullBind: Holder
6460
- g_type: GObject.GType
6461
6263
  gType: GObject.GType
6462
6264
  id: string | null
6463
6265
  name: string | null
6464
- not_null: boolean
6465
6266
  notNull: boolean
6466
- simple_bind: Holder
6467
6267
  simpleBind: Holder
6468
- source_column: number
6469
6268
  sourceColumn: number
6470
- source_model: DataModel
6471
6269
  sourceModel: DataModel
6472
- /**
6473
- * Defines if the "validate-change" signal gets emitted when
6474
- * the holder's value changes.
6475
- */
6476
- validate_changes: boolean
6477
6270
  /**
6478
6271
  * Defines if the "validate-change" signal gets emitted when
6479
6272
  * the holder's value changes.
@@ -6857,9 +6650,8 @@ module MetaStore {
6857
6650
 
6858
6651
  catalog?: string | null
6859
6652
  cnc?: Connection | null
6860
- cnc_string?: string | null
6861
- schema?: string | null
6862
6653
  cncString?: string | null
6654
+ schema?: string | null
6863
6655
  }
6864
6656
 
6865
6657
  }
@@ -6870,7 +6662,6 @@ interface MetaStore {
6870
6662
 
6871
6663
  readonly catalog: string | null
6872
6664
  readonly cnc: Connection
6873
- readonly cnc_string: string | null
6874
6665
  readonly cncString: string | null
6875
6666
  readonly schema: string | null
6876
6667
 
@@ -7204,7 +6995,6 @@ module MetaStruct {
7204
6995
  // Own constructor properties of Gda-5.0.Gda.MetaStruct
7205
6996
 
7206
6997
  features?: number | null
7207
- meta_store?: MetaStore | null
7208
6998
  metaStore?: MetaStore | null
7209
6999
  }
7210
7000
 
@@ -7215,7 +7005,6 @@ interface MetaStruct {
7215
7005
  // Own properties of Gda-5.0.Gda.MetaStruct
7216
7006
 
7217
7007
  readonly features: number
7218
- readonly meta_store: MetaStore
7219
7008
  readonly metaStore: MetaStore
7220
7009
 
7221
7010
  // Own fields of Gda-5.0.Gda.MetaStruct
@@ -7562,7 +7351,6 @@ module Row {
7562
7351
 
7563
7352
  // Own constructor properties of Gda-5.0.Gda.Row
7564
7353
 
7565
- nb_values?: number | null
7566
7354
  nbValues?: number | null
7567
7355
  }
7568
7356
 
@@ -7572,7 +7360,6 @@ interface Row {
7572
7360
 
7573
7361
  // Own properties of Gda-5.0.Gda.Row
7574
7362
 
7575
- nb_values: number
7576
7363
  nbValues: number
7577
7364
 
7578
7365
  // Own fields of Gda-5.0.Gda.Row
@@ -7686,10 +7473,8 @@ module ServerOperation {
7686
7473
  // Own constructor properties of Gda-5.0.Gda.ServerOperation
7687
7474
 
7688
7475
  connection?: Connection | null
7689
- op_type?: number | null
7690
- provider?: ServerProvider | null
7691
- spec_filename?: string | null
7692
7476
  opType?: number | null
7477
+ provider?: ServerProvider | null
7693
7478
  specFilename?: string | null
7694
7479
  }
7695
7480
 
@@ -7700,10 +7485,8 @@ interface ServerOperation {
7700
7485
  // Own properties of Gda-5.0.Gda.ServerOperation
7701
7486
 
7702
7487
  readonly connection: Connection
7703
- readonly op_type: number
7704
7488
  readonly opType: number
7705
7489
  readonly provider: ServerProvider
7706
- readonly spec_filename: string | null
7707
7490
  readonly specFilename: string | null
7708
7491
 
7709
7492
  // Own fields of Gda-5.0.Gda.ServerOperation
@@ -8380,12 +8163,6 @@ module Set {
8380
8163
  holders?: any | null
8381
8164
  id?: string | null
8382
8165
  name?: string | null
8383
- /**
8384
- * Defines if the "validate-set" signal gets emitted when
8385
- * any holder in the data set changes. This property also affects the
8386
- * GdaHolder:validate-changes property.
8387
- */
8388
- validate_changes?: boolean | null
8389
8166
  /**
8390
8167
  * Defines if the "validate-set" signal gets emitted when
8391
8168
  * any holder in the data set changes. This property also affects the
@@ -8403,12 +8180,6 @@ interface Set {
8403
8180
  description: string | null
8404
8181
  id: string | null
8405
8182
  name: string | null
8406
- /**
8407
- * Defines if the "validate-set" signal gets emitted when
8408
- * any holder in the data set changes. This property also affects the
8409
- * GdaHolder:validate-changes property.
8410
- */
8411
- validate_changes: boolean
8412
8183
  /**
8413
8184
  * Defines if the "validate-set" signal gets emitted when
8414
8185
  * any holder in the data set changes. This property also affects the
@@ -8976,7 +8747,6 @@ module SqlParser {
8976
8747
  // Own constructor properties of Gda-5.0.Gda.SqlParser
8977
8748
 
8978
8749
  mode?: number | null
8979
- tokenizer_flavour?: number | null
8980
8750
  tokenizerFlavour?: number | null
8981
8751
  }
8982
8752
 
@@ -8986,12 +8756,9 @@ interface SqlParser extends Lockable {
8986
8756
 
8987
8757
  // Own properties of Gda-5.0.Gda.SqlParser
8988
8758
 
8989
- readonly column_error: number
8990
8759
  readonly columnError: number
8991
- readonly line_error: number
8992
8760
  readonly lineError: number
8993
8761
  mode: number
8994
- tokenizer_flavour: number
8995
8762
  tokenizerFlavour: number
8996
8763
 
8997
8764
  // Own fields of Gda-5.0.Gda.SqlParser
@@ -9568,10 +9335,6 @@ interface Tree {
9568
9335
 
9569
9336
  // Own properties of Gda-5.0.Gda.Tree
9570
9337
 
9571
- /**
9572
- * Tells if the GdaTree is a list or a tree.
9573
- */
9574
- readonly is_list: boolean
9575
9338
  /**
9576
9339
  * Tells if the GdaTree is a list or a tree.
9577
9340
  */
@@ -9849,21 +9612,11 @@ module TreeMgrColumns {
9849
9612
  * the #GdaTreeMgrColumns:connection property is specified instead. This property has
9850
9613
  * priority over the GdaTreeMgrColumns:connection property.
9851
9614
  */
9852
- meta_store?: MetaStore | null
9615
+ metaStore?: MetaStore | null
9853
9616
  /**
9854
9617
  * If no set, then the table name will be fetched from the parent node using the "schema" attribute
9855
9618
  */
9856
9619
  schema?: string | null
9857
- /**
9858
- * If no set, then the table name will be fetched from the parent node using the "table_name" attribute
9859
- */
9860
- table_name?: string | null
9861
- /**
9862
- * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
9863
- * the #GdaTreeMgrColumns:connection property is specified instead. This property has
9864
- * priority over the GdaTreeMgrColumns:connection property.
9865
- */
9866
- metaStore?: MetaStore | null
9867
9620
  /**
9868
9621
  * If no set, then the table name will be fetched from the parent node using the "table_name" attribute
9869
9622
  */
@@ -9881,12 +9634,6 @@ interface TreeMgrColumns {
9881
9634
  * the #GdaTreeMgrColumns:meta-store property is specified instead.
9882
9635
  */
9883
9636
  readonly connection: Connection
9884
- /**
9885
- * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
9886
- * the #GdaTreeMgrColumns:connection property is specified instead. This property has
9887
- * priority over the GdaTreeMgrColumns:connection property.
9888
- */
9889
- readonly meta_store: MetaStore
9890
9637
  /**
9891
9638
  * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
9892
9639
  * the #GdaTreeMgrColumns:connection property is specified instead. This property has
@@ -9897,10 +9644,6 @@ interface TreeMgrColumns {
9897
9644
  * If no set, then the table name will be fetched from the parent node using the "schema" attribute
9898
9645
  */
9899
9646
  readonly schema: string | null
9900
- /**
9901
- * If no set, then the table name will be fetched from the parent node using the "table_name" attribute
9902
- */
9903
- readonly table_name: string | null
9904
9647
  /**
9905
9648
  * If no set, then the table name will be fetched from the parent node using the "table_name" attribute
9906
9649
  */
@@ -10131,12 +9874,6 @@ module TreeMgrSchemas {
10131
9874
  * the #GdaTreeMgrSchema:meta-store property is specified instead.
10132
9875
  */
10133
9876
  connection?: Connection | null
10134
- /**
10135
- * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10136
- * the #GdaTreeMgrSchema:connection property is specified instead. This property has
10137
- * priority over the GdaTreeMgrSchema:connection property.
10138
- */
10139
- meta_store?: MetaStore | null
10140
9877
  /**
10141
9878
  * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10142
9879
  * the #GdaTreeMgrSchema:connection property is specified instead. This property has
@@ -10156,12 +9893,6 @@ interface TreeMgrSchemas {
10156
9893
  * the #GdaTreeMgrSchema:meta-store property is specified instead.
10157
9894
  */
10158
9895
  readonly connection: Connection
10159
- /**
10160
- * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10161
- * the #GdaTreeMgrSchema:connection property is specified instead. This property has
10162
- * priority over the GdaTreeMgrSchema:connection property.
10163
- */
10164
- readonly meta_store: MetaStore
10165
9896
  /**
10166
9897
  * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10167
9898
  * the #GdaTreeMgrSchema:connection property is specified instead. This property has
@@ -10325,19 +10056,13 @@ module TreeMgrTables {
10325
10056
  * the #GdaTreeMgrTables:connection property is specified instead. This property has
10326
10057
  * priority over the GdaTreeMgrTables:connection property.
10327
10058
  */
10328
- meta_store?: MetaStore | null
10059
+ metaStore?: MetaStore | null
10329
10060
  /**
10330
10061
  * If no set, then the table name will be fetched from the parent node using the "schema" attribute. If not
10331
10062
  * found that way, then the list of visible tables (tables which can be identified without having to specify
10332
10063
  * a schema) will be used
10333
10064
  */
10334
10065
  schema?: string | null
10335
- /**
10336
- * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10337
- * the #GdaTreeMgrTables:connection property is specified instead. This property has
10338
- * priority over the GdaTreeMgrTables:connection property.
10339
- */
10340
- metaStore?: MetaStore | null
10341
10066
  }
10342
10067
 
10343
10068
  }
@@ -10351,12 +10076,6 @@ interface TreeMgrTables {
10351
10076
  * the #GdaTreeMgrTables:meta-store property is specified instead.
10352
10077
  */
10353
10078
  readonly connection: Connection
10354
- /**
10355
- * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10356
- * the #GdaTreeMgrTables:connection property is specified instead. This property has
10357
- * priority over the GdaTreeMgrTables:connection property.
10358
- */
10359
- readonly meta_store: MetaStore
10360
10079
  /**
10361
10080
  * Defines the #GdaMetaStore to extract information from. Necessary upon construction unless
10362
10081
  * the #GdaTreeMgrTables:connection property is specified instead. This property has
@@ -10635,8 +10354,6 @@ module XaTransaction {
10635
10354
 
10636
10355
  // Own constructor properties of Gda-5.0.Gda.XaTransaction
10637
10356
 
10638
- format_id?: number | null
10639
- transaction_id?: string | null
10640
10357
  formatId?: number | null
10641
10358
  transactionId?: string | null
10642
10359
  }
@@ -10647,9 +10364,7 @@ interface XaTransaction {
10647
10364
 
10648
10365
  // Own properties of Gda-5.0.Gda.XaTransaction
10649
10366
 
10650
- readonly format_id: number
10651
10367
  readonly formatId: number
10652
- readonly transaction_id: string | null
10653
10368
  readonly transactionId: string | null
10654
10369
 
10655
10370
  // Own fields of Gda-5.0.Gda.XaTransaction