| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 | | Quintiq file version 2.0 |  | #parent: #root |  | Method ImportFromDB (Boolean pingFirst_i, Boolean directlySynchronize_i) as Boolean id:Method_LibDIF_pnlButtonImportFromDB_ImportFromDB_506 |  | { |  |   #keys: '[131092.1.1259315661]' |  |   Body: |  |   [* |  |     success := false; |  |      |  |     // If applicable, first see if the database can be reached. |  |     if( not pingFirst_i or |  |         LibDIF_GlobalState.CheckDatabaseConnection( this.GetBrokerID() ) ) |  |     { |  |       success := LibDIF_GlobalState.ImportFromDB( this.GetBrokerID(), |  |                                                   this.GetDataTransformationID(), |  |                                                   directlySynchronize_i ); |  |     } |  |      |  |     return success; |  |   *] |  | } | 
 |