summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/browser/dsbrowserDnD.cxx
blob: 83603bfdeffa1f1642bc4d69f7b49d2f2e282f31 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
/*************************************************************************
 *
 *  $RCSfile: dsbrowserDnD.cxx,v $
 *
 *  $Revision: 1.32 $
 *
 *  last change: $Author: oj $ $Date: 2001-11-15 15:15:05 $
 *
 *  The Contents of this file are made available subject to the terms of
 *  either of the following licenses
 *
 *         - GNU Lesser General Public License Version 2.1
 *         - Sun Industry Standards Source License Version 1.1
 *
 *  Sun Microsystems Inc., October, 2000
 *
 *  GNU Lesser General Public License Version 2.1
 *  =============================================
 *  Copyright 2000 by Sun Microsystems, Inc.
 *  901 San Antonio Road, Palo Alto, CA 94303, USA
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License version 2.1, as published by the Free Software Foundation.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
 *  MA  02111-1307  USA
 *
 *
 *  Sun Industry Standards Source License Version 1.1
 *  =================================================
 *  The contents of this file are subject to the Sun Industry Standards
 *  Source License Version 1.1 (the "License"); You may not use this file
 *  except in compliance with the License. You may obtain a copy of the
 *  License at http://www.openoffice.org/license.html.
 *
 *  Software provided under this License is provided on an "AS IS" basis,
 *  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING,
 *  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 *  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 *  See the License for the specific provisions governing your rights and
 *  obligations concerning the Software.
 *
 *  The Initial Developer of the Original Code is: Sun Microsystems, Inc..
 *
 *  Copyright: 2000 by Sun Microsystems, Inc.
 *
 *  All Rights Reserved.
 *
 *  Contributor(s): _______________________________________
 *
 *
 ************************************************************************/

#ifndef _SBA_UNODATBR_HXX_
#include "unodatbr.hxx"
#endif

#ifndef _COM_SUN_STAR_SDB_XQUERIESSUPPLIER_HPP_
#include <com/sun/star/sdb/XQueriesSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_SDB_XSQLQUERYCOMPOSERFACTORY_HPP_
#include <com/sun/star/sdb/XSQLQueryComposerFactory.hpp>
#endif
#ifndef _COM_SUN_STAR_SDB_COMMANDTYPE_HPP_
#include <com/sun/star/sdb/CommandType.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_DATATYPE_HPP_
#include <com/sun/star/sdbc/DataType.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XCONNECTION_HPP_
#include <com/sun/star/sdbc/XConnection.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XTABLESSUPPLIER_HPP_
#include <com/sun/star/sdbcx/XTablesSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBCX_XRENAME_HPP_
#include <com/sun/star/sdbcx/XRename.hpp>
#endif
#ifndef _COM_SUN_STAR_CONTAINER_XNAMECONTAINER_HPP_
#include <com/sun/star/container/XNameContainer.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XRESULTSETMETADATASUPPLIER_HPP_
#include <com/sun/star/sdbc/XResultSetMetaDataSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_SDB_XQUERYDEFINITIONSSUPPLIER_HPP_
#include <com/sun/star/sdb/XQueryDefinitionsSupplier.hpp>
#endif
#ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_
#include <com/sun/star/beans/PropertyValue.hpp>
#endif
#ifndef _COM_SUN_STAR_SDBC_XPARAMETERS_HPP_
#include <com/sun/star/sdbc/XParameters.hpp>
#endif
#ifndef _COM_SUN_STAR_LANG_XSINGLESERVICEFACTORY_HPP_
#include <com/sun/star/lang/XSingleServiceFactory.hpp>
#endif
#ifndef _COM_SUN_STAR_SDB_SQLCONTEXT_HPP_
#include <com/sun/star/sdb/SQLContext.hpp>
#endif
#ifndef DBAUI_DBTREEMODEL_HXX
#include "dbtreemodel.hxx"
#endif
#ifndef DBACCESS_UI_DBTREEVIEW_HXX
#include "dbtreeview.hxx"
#endif
#ifndef DBACCESS_SHARED_DBUSTRINGS_HRC
#include "dbustrings.hrc"
#endif
#ifndef _DBU_RESOURCE_HRC_
#include "dbu_resource.hrc"
#endif
#ifndef _DBAUI_MODULE_DBU_HXX_
#include "moduledbu.hxx"
#endif
#ifndef _COMPHELPER_EXTRACT_HXX_
#include <comphelper/extract.hxx>
#endif
#ifndef _DBHELPER_DBEXCEPTION_HXX_
#include <connectivity/dbexception.hxx>
#endif
#ifndef _CONNECTIVITY_DBTOOLS_HXX_
#include <connectivity/dbtools.hxx>
#endif
#ifndef DBAUI_DBTREELISTBOX_HXX
#include "dbtreelistbox.hxx"
#endif
#ifndef DBAUI_TOKENWRITER_HXX
#include "TokenWriter.hxx"
#endif
#ifndef DBAUI_DBEXCHANGE_HXX
#include "dbexchange.hxx"
#endif
#ifndef DBAUI_WIZ_COPYTABLEDIALOG_HXX
#include "WCopyTable.hxx"
#endif
#ifndef DBAUI_WIZ_EXTENDPAGES_HXX
#include "WExtendPages.hxx"
#endif
#ifndef DBAUI_WIZ_NAMEMATCHING_HXX
#include "WNameMatch.hxx"
#endif
#ifndef DBAUI_WIZ_COLUMNSELECT_HXX
#include "WColumnSelect.hxx"
#endif
#ifndef DBAUI_ENUMTYPES_HXX
#include "QEnumTypes.hxx"
#endif
#ifndef DBAUI_WIZARD_CPAGE_HXX
#include "WCPage.hxx"
#endif
#ifndef DBAUI_TOOLS_HXX
#include "UITools.hxx"
#endif
#ifndef DBAUI_RTFREADER_HXX
#include "RtfReader.hxx"
#endif
#ifndef DBAUI_HTMLREADER_HXX
#include "HtmlReader.hxx"
#endif
#ifndef DBAUI_DLGSAVE_HXX
#include "dlgsave.hxx"
#endif
#ifndef _SOT_STORAGE_HXX
#include <sot/storage.hxx>
#endif
#ifndef _SVX_DATACCESSDESCRIPTOR_HXX_
#include <svx/dataaccessdescriptor.hxx>
#endif
#ifndef _COM_SUN_STAR_TASK_XINTERACTIONHANDLER_HPP_
#include <com/sun/star/task/XInteractionHandler.hpp>
#endif
#ifndef _DBAUI_LINKEDDOCUMENTS_HXX_
#include "linkeddocuments.hxx"
#endif
// .........................................................................
namespace dbaui
{
// .........................................................................

    using namespace ::com::sun::star::uno;
    using namespace ::com::sun::star::sdb;
    using namespace ::com::sun::star::sdbc;
    using namespace ::com::sun::star::sdbcx;
    using namespace ::com::sun::star::beans;
    using namespace ::com::sun::star::util;
    using namespace ::com::sun::star::frame;
    using namespace ::com::sun::star::container;
    using namespace ::com::sun::star::lang;
    using namespace ::com::sun::star::form;
    using namespace ::com::sun::star::io;
    using namespace ::com::sun::star::i18n;
    using namespace ::com::sun::star::task;
    using namespace ::com::sun::star::datatransfer;
    using namespace ::dbtools;
    using namespace ::svx;

    // -----------------------------------------------------------------------------
    void SbaTableQueryBrowser::implPasteQuery( SvLBoxEntry* _pApplyTo, const TransferableDataHelper& _rPasteData )
    {
        DBG_ASSERT(etQueryContainer == getEntryType(_pApplyTo) || etQuery == getEntryType(_pApplyTo), "SbaTableQueryBrowser::implPasteQuery: invalid target entry!");
        try
        {
            sal_Bool bQueryDescriptor = _rPasteData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_QUERY);
            sal_Bool bCommandDescriptor = _rPasteData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_COMMAND);
            if (bQueryDescriptor || bCommandDescriptor)
            {
                DataFlavor aFlavor;
                SotExchange::GetFormatDataFlavor(bQueryDescriptor ? SOT_FORMATSTR_ID_DBACCESS_QUERY : SOT_FORMATSTR_ID_DBACCESS_COMMAND, aFlavor);
                Sequence<PropertyValue> aDescriptor;
    #ifdef DBG_UTIL
                sal_Bool bCorrectFormat =
    #endif
                _rPasteData.GetAny(aFlavor) >>= aDescriptor;
                DBG_ASSERT(bCorrectFormat, "SbaTableQueryBrowser::implPasteQuery: invalid DnD or clipboard format!");

                ::rtl::OUString sDataSourceName;
                sal_Int32       nCommandType = CommandType::QUERY;
                ::rtl::OUString sCommand;
                sal_Bool        bEscapeProcessing = sal_True;
                {
                    ODataAccessDescriptor aDescriptor(aDescriptor);
                    aDescriptor[daDataSource]       >>= sDataSourceName;
                    aDescriptor[daCommandType]      >>= nCommandType;
                    aDescriptor[daCommand]          >>= sCommand;
                    aDescriptor[daEscapeProcessing] >>= bEscapeProcessing;
                }

                // plausibility check
                sal_Bool bValidDescriptor = sal_False;
                if (CommandType::QUERY == nCommandType)
                    bValidDescriptor = sDataSourceName.getLength() && sCommand.getLength();
                else if (CommandType::COMMAND == nCommandType)
                    bValidDescriptor = (0 != sCommand.getLength());
                if (!bValidDescriptor)
                {
                    DBG_ERROR("SbaTableQueryBrowser::implPasteQuery: invalid descriptor!");
                    return;
                }

                // three properties we can set only if we have a query object as source
                ::rtl::OUString sUpdateTableName;
                ::rtl::OUString sUpdateSchemaName;
                ::rtl::OUString sUpdateCatalogName;

                // the target object name (as we'll suggest it to the user)
                String sTargetName;
                if (CommandType::QUERY == nCommandType)
                    sTargetName = sCommand;

                if (CommandType::QUERY == nCommandType)
                {
                    // need to extract the statement and the escape processing flag from the query object
                    sal_Bool bSuccess = sal_False;
                    try
                    {
                        // the data source to extract the query from
                        Reference< XQueryDefinitionsSupplier > xSourceDSQuerySupp;
                        m_xDatabaseContext->getByName(sDataSourceName) >>= xSourceDSQuerySupp;

                        // the query container
                        Reference< XNameAccess > xQueries;
                        if (xSourceDSQuerySupp.is())
                            xQueries = xSourceDSQuerySupp->getQueryDefinitions();

                        // the concrete query
                        Reference< XPropertySet > xQuery;
                        if (xQueries.is())
                            xQueries->getByName(sCommand) >>= xQuery;

                        if (xQuery.is())
                        {
                            // extract all the properties we're interested in
                            xQuery->getPropertyValue(PROPERTY_COMMAND) >>= sCommand;
                            bEscapeProcessing = ::cppu::any2bool(xQuery->getPropertyValue(PROPERTY_USE_ESCAPE_PROCESSING));

                            xQuery->getPropertyValue(PROPERTY_UPDATE_TABLENAME) >>= sUpdateTableName;
                            xQuery->getPropertyValue(PROPERTY_UPDATE_SCHEMANAME) >>= sUpdateSchemaName;
                            xQuery->getPropertyValue(PROPERTY_UPDATE_CATALOGNAME) >>= sUpdateCatalogName;
                            bSuccess = sal_True;
                        }
                    }
                    catch(SQLException&) { throw; } // caught and handled by the outer catch
                    catch(Exception&) { }

                    if (!bSuccess)
                    {
                        DBG_ERROR("SbaTableQueryBrowser::implPasteQuery: could not extract the source query object!");
                        // TODO: maybe this is worth an error message to be displayed to the user ....
                        return;
                    }
                }

                // get the queries container of the destination data source
                if (!ensureEntryObject(_pApplyTo))
                    // this is a heavy error ... the name container for the queries could not ne obtained
                    return;

                // check if the entry is a container else get the parent
                DBTreeListModel::DBTreeListUserData* pQueriesData = NULL;
                if(!isContainer(_pApplyTo))
                    pQueriesData = static_cast<DBTreeListModel::DBTreeListUserData*>(m_pTreeView->getListBox()->GetParent(_pApplyTo)->GetUserData());
                else
                    pQueriesData = static_cast<DBTreeListModel::DBTreeListUserData*>(_pApplyTo->GetUserData());

                Reference< XNameContainer > xDestQueries(pQueriesData->xObject, UNO_QUERY);
                Reference< XSingleServiceFactory > xQueryFactory(xDestQueries, UNO_QUERY);
                if (!xQueryFactory.is())
                {
                    DBG_ERROR("SbaTableQueryBrowser::implPasteQuery: invalid destination query container!");
                    return;
                }

                // here we have everything needed to create a new query object ...
                // ... ehm, except a new name
                OSaveAsDlg aAskForName(getView(), CommandType::QUERY, xDestQueries.get(), Reference< XDatabaseMetaData>(), sTargetName, SAD_ADDITIONAL_DESCRIPTION | SAD_TITLE_PASTE_AS);
                if (RET_OK != aAskForName.Execute())
                    // cancelled by the user
                    return;

                sTargetName = aAskForName.getName();

                // create a new object
                Reference< XPropertySet > xNewQuery(xQueryFactory->createInstance(), UNO_QUERY);
                DBG_ASSERT(xNewQuery.is(), "SbaTableQueryBrowser::implPasteQuery: invalid object created by factory!");
                if (xNewQuery.is())
                {
                    // initialize
                    xNewQuery->setPropertyValue( PROPERTY_COMMAND, makeAny(sCommand) );
                    xNewQuery->setPropertyValue( PROPERTY_USE_ESCAPE_PROCESSING, ::cppu::bool2any(bEscapeProcessing) );
                    xNewQuery->setPropertyValue( PROPERTY_UPDATE_TABLENAME, makeAny(sUpdateTableName) );
                    xNewQuery->setPropertyValue( PROPERTY_UPDATE_SCHEMANAME, makeAny(sUpdateSchemaName) );
                    xNewQuery->setPropertyValue( PROPERTY_UPDATE_CATALOGNAME, makeAny(sUpdateCatalogName) );
                    // insert
                    xDestQueries->insertByName( sTargetName, makeAny(xNewQuery) );
                }
            }
        }
        catch(SQLContext& e) { showError(SQLExceptionInfo(e)); }
        catch(SQLWarning& e) { showError(SQLExceptionInfo(e)); }
        catch(SQLException& e) { showError(SQLExceptionInfo(e)); }
        catch(Exception& )
        {
            DBG_ERROR("SbaTableQueryBrowser::implPasteQuery: caught a strange exception!");
        }
    }

    // -----------------------------------------------------------------------------
    void SbaTableQueryBrowser::implPasteTable( SvLBoxEntry* _pApplyTo, const TransferableDataHelper& _rPasteData )
    {
        try
        {
            // paste into the tables
            sal_Bool bTableDescriptor = _rPasteData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_TABLE);
            sal_Bool bQueryDescriptor = _rPasteData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_QUERY);
            OSL_ENSURE(!bTableDescriptor || !bQueryDescriptor, "SbaTableQueryBrowser::implPasteTable: suspicious formats (both a table and a query descriptor)!");
            if  (bTableDescriptor || bQueryDescriptor)
            {
                DataFlavor aFlavor;
                SotExchange::GetFormatDataFlavor(bTableDescriptor ? SOT_FORMATSTR_ID_DBACCESS_TABLE : SOT_FORMATSTR_ID_DBACCESS_QUERY, aFlavor);
                Sequence<PropertyValue> aSeq;
    #ifdef DBG_UTIL
                sal_Bool bCorrectFormat =
    #endif
                _rPasteData.GetAny(aFlavor) >>= aSeq;
                DBG_ASSERT(bCorrectFormat, "SbaTableQueryBrowser::implPasteTable: invalid DnD or clipboard format!");

                if(aSeq.getLength())
                {
                    ::rtl::OUString aDSName = GetEntryText( m_pTreeView->getListBox()->GetRootLevelParent( _pApplyTo ) );

                    const PropertyValue* pBegin = aSeq.getConstArray();
                    const PropertyValue* pEnd   = pBegin + aSeq.getLength();

                    // first get the dest connection
                    Reference<XConnection> xDestConnection;  // supports the service sdb::connection
                    if(!ensureConnection(_pApplyTo, xDestConnection))
                        return;

                    Reference<XConnection> xSrcConnection;
                    ::rtl::OUString sName,sSrcDataSourceName;
                    sal_Int32 nCommandType = CommandType::TABLE;
                    for(;pBegin != pEnd;++pBegin)
                    {
                        if (0 == pBegin->Name.compareToAscii(PROPERTY_DATASOURCENAME))
                            pBegin->Value >>= sSrcDataSourceName;
                        else if (0 == pBegin->Name.compareToAscii(PROPERTY_COMMANDTYPE))
                            pBegin->Value >>= nCommandType;
                        else if (0 == pBegin->Name.compareToAscii(PROPERTY_COMMAND))
                            pBegin->Value >>= sName;
                        else if (0 == pBegin->Name.compareToAscii(PROPERTY_ACTIVECONNECTION))
                            pBegin->Value >>= xSrcConnection;
                    }

                    // get the source connection

                    sal_Bool bDispose = sal_False;
                    if(sSrcDataSourceName == aDSName)
                        xSrcConnection = xDestConnection;
                    else if(!xSrcConnection.is())
                    {
                        Reference< XEventListener> xEvt(static_cast< ::cppu::OWeakObject*>(this), UNO_QUERY);
                        showError(::dbaui::createConnection(sSrcDataSourceName,m_xDatabaseContext,getORB(),xEvt,xSrcConnection));
                        bDispose = sal_True;
                    }
                    Reference<XNameAccess> xNameAccess;
                    switch(nCommandType)
                    {
                        case CommandType::TABLE:
                            {
                                // only for tables
                                Reference<XTablesSupplier> xSup(xSrcConnection,UNO_QUERY);
                                if(xSup.is())
                                    xNameAccess = xSup->getTables();
                            }
                            break;
                        case CommandType::QUERY:
                            {
                                Reference<XQueriesSupplier> xSup(xSrcConnection,UNO_QUERY);
                                if(xSup.is())
                                    xNameAccess = xSup->getQueries();
                            }
                            break;
                    }

                    // check if this name really exists in the name access
                    if(xNameAccess.is() && xNameAccess->hasByName(sName))
                    {
                        Reference<XPropertySet> xSourceObject;
                        xNameAccess->getByName(sName) >>= xSourceObject;
                        OCopyTableWizard aWizard(getView(),
                                                 xSourceObject,
                                                 xSrcConnection,
                                                 xDestConnection,
                                                 getNumberFormatter(),
                                                 getORB());
                        OCopyTable*         pPage1 = new OCopyTable(&aWizard,COPY, sal_False,OCopyTableWizard::WIZARD_DEF_DATA);
                        OWizNameMatching*   pPage2 = new OWizNameMatching(&aWizard);
                        OWizColumnSelect*   pPage3 = new OWizColumnSelect(&aWizard);
                        OWizNormalExtend*   pPage4 = new OWizNormalExtend(&aWizard);

                        aWizard.AddWizardPage(pPage1);
                        aWizard.AddWizardPage(pPage2);
                        aWizard.AddWizardPage(pPage3);
                        aWizard.AddWizardPage(pPage4);
                        aWizard.ActivatePage();

                        if (aWizard.Execute() == RET_OK)
                        {
                            Reference<XPropertySet> xTable;
                            switch(aWizard.getCreateStyle())
                            {
                                case OCopyTableWizard::WIZARD_DEF:
                                case OCopyTableWizard::WIZARD_DEF_DATA:
                                    {
                                        xTable = aWizard.createTable();
                                        if(!xTable.is())
                                            break;
                                        if(OCopyTableWizard::WIZARD_DEF == aWizard.getCreateStyle())
                                            break;
                                    }
                                case OCopyTableWizard::WIZARD_APPEND_DATA:
                                    {
                                        if(!xTable.is())
                                            xTable = aWizard.createTable();
                                        if(!xTable.is())
                                            break;

                                        Reference<XResultSet>   xSrcRs;
                                        Reference<XStatement> xStmt; // needed to hold a reference to the statement
                                        Reference<XPreparedStatement> xPrepStmt;// needed to hold a reference to the statement
                                        ::rtl::OUString sSql,sDestName;
                                        ::dbaui::composeTableName(xDestConnection->getMetaData(),xTable,sDestName,sal_False);
                                        // create the sql stmt
                                        if(nCommandType == CommandType::TABLE)
                                        {
                                            sSql = ::rtl::OUString::createFromAscii("SELECT * FROM ");
                                            ::rtl::OUString sComposedName;
                                            ::dbaui::composeTableName(xSrcConnection->getMetaData(),xSourceObject,sComposedName,sal_True);
                                            sSql += sComposedName;
                                            xStmt = xSrcConnection->createStatement();
                                            if(!xStmt.is())
                                                break;
                                            xSrcRs = xStmt->executeQuery(sSql);
                                        }
                                        else
                                        {
                                            xSourceObject->getPropertyValue(PROPERTY_COMMAND) >>= sSql;
                                            xPrepStmt = xSrcConnection->prepareStatement(sSql);
                                            if(!xPrepStmt.is())
                                                break;
                                            // look if we have to fill in some parameters
                                            // create and fill a composer
                                            Reference< XSQLQueryComposerFactory >  xFactory(xSrcConnection, UNO_QUERY);
                                            Reference< XSQLQueryComposer> xComposer;
                                            if (xFactory.is())
                                            {
                                                try
                                                {
                                                    xComposer = xFactory->createQueryComposer();
                                                    if(xComposer.is())
                                                    {
                                                        xComposer->setQuery(sSql);
                                                        Reference< XInteractionHandler > xHandler(getORB()->createInstance(::rtl::OUString::createFromAscii("com.sun.star.sdb.InteractionHandler")), UNO_QUERY);
                                                        ::dbtools::askForParameters(xComposer,Reference<XParameters>(xPrepStmt,UNO_QUERY),xSrcConnection,xHandler);
                                                        xSrcRs = xPrepStmt->executeQuery();
                                                    }
                                                }
                                                catch(SQLContext&)
                                                {
                                                    if(bDispose)
                                                        ::comphelper::disposeComponent(xSrcConnection);
                                                    throw;
                                                }
                                                catch(SQLWarning&)
                                                {
                                                    if(bDispose)
                                                        ::comphelper::disposeComponent(xSrcConnection);
                                                    throw;
                                                }
                                                catch(SQLException&)
                                                {
                                                    if(bDispose)
                                                        ::comphelper::disposeComponent(xSrcConnection);
                                                    throw;
                                                }
                                                catch (Exception&)
                                                {
                                                    xComposer = NULL;
                                                    break;
                                                }
                                            }

                                        }

                                        Reference<XRow> xRow(xSrcRs,UNO_QUERY);
                                        if(!xSrcRs.is() || !xRow.is())
                                            break;

                                        sal_Bool bIsAutoIncrement           = aWizard.SetAutoincrement();
                                        ::std::vector<sal_Int32> vColumns   = aWizard.GetColumnPositions();
                                        // now insert the rows into the new table
                                        // we couldn't use the rowset here because it could happen that we haven't a primary key
                                        insertRows(xSrcRs,vColumns,xTable,xDestConnection->getMetaData(),bIsAutoIncrement);
                                    }
                                    break;
                                case OCopyTableWizard::WIZARD_DEF_VIEW:
                                    xTable = aWizard.createView();
                                    break;
                                default:
                                    break;
                            }
                        }
                    }
                    if(bDispose)
                        ::comphelper::disposeComponent(xSrcConnection);
                }
            }
            else if(_rPasteData.HasFormat(SOT_FORMATSTR_ID_HTML) || _rPasteData.HasFormat(SOT_FORMATSTR_ID_HTML_SIMPLE) || _rPasteData.HasFormat(SOT_FORMAT_RTF))
            {
                // first get the dest connection
                Reference<XConnection> xDestConnection;  // supports the service sdb::connection
                if(!ensureConnection(_pApplyTo, xDestConnection))
                    return;

                SotStorageStreamRef aStream;
                Reference<XEventListener> xEvt;
                ODatabaseImportExport* pImport = NULL;
                if(_rPasteData.HasFormat(SOT_FORMATSTR_ID_HTML) || _rPasteData.HasFormat(SOT_FORMATSTR_ID_HTML_SIMPLE))
                {
                    const_cast<TransferableDataHelper&>(_rPasteData).GetSotStorageStream(_rPasteData.HasFormat(SOT_FORMATSTR_ID_HTML) ? SOT_FORMATSTR_ID_HTML : SOT_FORMATSTR_ID_HTML_SIMPLE,aStream);
                        // TODO: why are the GetXXX methods not const???

                    pImport = new OHTMLImportExport(xDestConnection,getNumberFormatter(),getORB());
                }
                else
                {
                    const_cast<TransferableDataHelper&>(_rPasteData).GetSotStorageStream(SOT_FORMAT_RTF,aStream);
                        // TODO: why are the GetXXX methods not const???
                    pImport = new ORTFImportExport(xDestConnection,getNumberFormatter(),getORB());
                }
                xEvt = pImport;
                SvStream* pStream = (SvStream*)(SotStorageStream*)aStream;
                pImport->setStream(pStream);
                if(!pImport->Read())
                    throw SQLException(String(ModuleRes(STR_NO_TABLE_FORMAT_INSIDE)),*this,::rtl::OUString::createFromAscii("S1000") ,0,Any());
            }
            else
                DBG_ERROR("SbaTableQueryBrowser::implPasteTable: invalid call (no supported format found)!");
        }
        catch(SQLContext& e) { showError(SQLExceptionInfo(e)); }
        catch(SQLWarning& e) { showError(SQLExceptionInfo(e)); }
        catch(SQLException& e) { showError(SQLExceptionInfo(e)); }
        catch(Exception& )
        {
            OSL_ENSURE(sal_False, "SbaTableQueryBrowser::implPasteTable: caught a generic exception!");
        }
    }

    // -----------------------------------------------------------------------------
    TransferableHelper* SbaTableQueryBrowser::implCopyObject( SvLBoxEntry* _pApplyTo, sal_Int32 _nCommandType, sal_Bool _bAllowConnection )
    {
        try
        {
            ::osl::MutexGuard aGuard(m_aEntryMutex);
            Reference<XConnection> xConnection;  // supports the service sdb::connection
            if (_bAllowConnection && !ensureConnection(_pApplyTo, xConnection))
                return NULL;

            ::rtl::OUString aName = GetEntryText( _pApplyTo );
            ::rtl::OUString aDSName = GetEntryText( m_pTreeView->getListBox()->GetRootLevelParent( _pApplyTo ) );

            // the owner ship goes to ODataClipboard
            ODataClipboard* pData = new ODataClipboard(aDSName, _nCommandType, aName, xConnection, getNumberFormatter(), getORB());
            return pData;
        }
        catch(SQLException& e)
        {
            showError(SQLExceptionInfo(e));
        }
        catch(Exception&)
        {
            DBG_ERROR("SbaTableQueryBrowser::implCopyObject: caught a generic exception!");
        }
        return NULL;
    }
    /// unary_function Functor object for class ZZ returntype is void
    struct DataFlavorExVectorSlotPrec : ::std::unary_function<DataFlavorExVector::value_type,bool>
    {
        SbaTableQueryBrowser::EntryType eEntryType;
        sal_Bool    bQueryDrop;
        DataFlavorExVectorSlotPrec(const SbaTableQueryBrowser::EntryType &_eEntryType,sal_Bool _bQueryDrop)
            : eEntryType(_eEntryType)
            , bQueryDrop(_bQueryDrop)
        {
        }

        inline bool operator()(const DataFlavorExVector::value_type& _aType)
        {
            switch (_aType.mnSotId)
            {
                case SOT_FORMAT_RTF:                    // RTF data descriptions
                case SOT_FORMATSTR_ID_HTML:             // HTML data descriptions
                case SOT_FORMATSTR_ID_HTML_SIMPLE:      // HTML data descriptions
                case SOT_FORMATSTR_ID_DBACCESS_TABLE:   // table descriptor
                    return (SbaTableQueryBrowser::etTableContainer == eEntryType);
                    break;
                case SOT_FORMATSTR_ID_DBACCESS_QUERY:   // query descriptor
                case SOT_FORMATSTR_ID_DBACCESS_COMMAND: // SQL command
                    return ((SbaTableQueryBrowser::etQueryContainer == eEntryType) || ( !bQueryDrop && SbaTableQueryBrowser::etTableContainer == eEntryType));
                    break;
            }
            return false;
        }
    };


    // -----------------------------------------------------------------------------
    sal_Int8 SbaTableQueryBrowser::queryDrop( const AcceptDropEvent& _rEvt, const DataFlavorExVector& _rFlavors )
    {
        // check if we're a table or query container
        SvLBoxEntry* pHitEntry = m_pTreeView->getListBox()->GetEntry( _rEvt.maPosPixel );
        if (!pHitEntry)
            // no drop of no entry was hit ....
            return DND_ACTION_NONE;

        // it must be a container
        EntryType eEntryType = getEntryType( pHitEntry );
        if (!isContainer(eEntryType))
            return DND_ACTION_NONE;

        // TODO: check if the data source is readonly

        // check for the concrete type
        if(::std::find_if(_rFlavors.begin(),_rFlavors.end(),DataFlavorExVectorSlotPrec(eEntryType,sal_True)) != _rFlavors.end())
            return DND_ACTION_COPY;

        return DND_ACTION_NONE;
    }

    // -----------------------------------------------------------------------------
    IMPL_LINK( SbaTableQueryBrowser, OnAsyncDrop, void*, NOTINTERESTEDIN )
    {
        m_nAsyncDrop = 0;

        if (m_aAsyncDrop.bTable)
            implPasteTable(m_aAsyncDrop.pDroppedAt, m_aAsyncDrop.aDroppedData);
        else
            implPasteQuery(m_aAsyncDrop.pDroppedAt, m_aAsyncDrop.aDroppedData);

        m_aAsyncDrop.aDroppedData   = TransferableDataHelper();
        m_aAsyncDrop.pDroppedAt     = NULL;

        return 0L;
    }

    // -----------------------------------------------------------------------------
    sal_Int8 SbaTableQueryBrowser::executeDrop( const ExecuteDropEvent& _rEvt )
    {
        SvLBoxEntry* pHitEntry = m_pTreeView->getListBox()->GetEntry( _rEvt.maPosPixel );
        EntryType eEntryType = getEntryType( pHitEntry );
        if (!isContainer(eEntryType))
        {
            DBG_ERROR("SbaTableQueryBrowser::executeDrop: what the hell did queryDrop do?");
                // queryDrop shoud not have allowed us to reach this situation ....
            return DND_ACTION_NONE;
        }

        // a TransferableDataHelper for accessing the dropped data
        TransferableDataHelper aDroppedData(_rEvt.maDropEvent.Transferable);


        // reset the data of the previous async drop (if any)
        if (m_nAsyncDrop)
            Application::RemoveUserEvent(m_nAsyncDrop);
        m_nAsyncDrop = 0;
        m_aAsyncDrop.aDroppedData   = TransferableDataHelper();
        m_aAsyncDrop.pDroppedAt     = NULL;
        m_aAsyncDrop.bTable         = sal_False;

        // loop through the available formats and see what we can do ...
        if(::std::find_if(aDroppedData.GetDataFlavorExVector().begin(),aDroppedData.GetDataFlavorExVector().end(),DataFlavorExVectorSlotPrec(eEntryType,sal_False)) != aDroppedData.GetDataFlavorExVector().end())
        {
            m_aAsyncDrop.aDroppedData   = aDroppedData;
            m_aAsyncDrop.pDroppedAt     = pHitEntry;
            m_aAsyncDrop.bTable         = (etTableContainer == eEntryType);

            m_nAsyncDrop = Application::PostUserEvent(LINK(this, SbaTableQueryBrowser, OnAsyncDrop));
            return DND_ACTION_COPY;
        }

        return DND_ACTION_NONE;
    }

    // -----------------------------------------------------------------------------
    sal_Bool SbaTableQueryBrowser::requestDrag( sal_Int8 _nAction, const Point& _rPosPixel )
    {
        // get the affected list entry
        // ensure that the entry which the user clicked at is selected
        SvLBoxEntry* pHitEntry = m_pTreeView->getListBox()->GetEntry( _rPosPixel );
        if (!pHitEntry)
            // no drag of no entry was hit ....
            return sal_False;

        // it must be a query/table
        EntryType eEntryType = getEntryType( pHitEntry );
        if (!isObject(eEntryType))
            return DND_ACTION_NONE;

        if (etBookmark == eEntryType)
            return DND_ACTION_NONE;

        TransferableHelper* pTransfer = implCopyObject( pHitEntry, (etTable == eEntryType || etView == eEntryType) ? CommandType::TABLE : CommandType::QUERY);
        Reference< XTransferable> xEnsureDelete = pTransfer;

        if (pTransfer)
            pTransfer->StartDrag( m_pTreeView->getListBox(), DND_ACTION_COPY );

        return NULL != pTransfer;
    }
    // -----------------------------------------------------------------------------
    sal_Bool SbaTableQueryBrowser::isTableFormat()  const
    {
        sal_Bool bTableFormat = sal_False;
#if SUPD < 631
        TransferableDataHelper aTransferData(TransferableDataHelper::CreateFromSystemClipboard());
#else
        TransferableDataHelper aTransferData(TransferableDataHelper::CreateFromSystemClipboard(getView()));
#endif
        bTableFormat    =   aTransferData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_TABLE)
                    ||  aTransferData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_QUERY)
                    ||  aTransferData.HasFormat(SOT_FORMAT_RTF)
                    ||  aTransferData.HasFormat(SOT_FORMATSTR_ID_HTML)
                    ||  aTransferData.HasFormat(SOT_FORMATSTR_ID_HTML_SIMPLE);

        return bTableFormat;
    }
    // -----------------------------------------------------------------------------
    void SbaTableQueryBrowser::insertRows(const Reference<XResultSet>& xSrcRs,
                                                   const ::std::vector<sal_Int32>& _rvColumns,
                                                   const Reference<XPropertySet>& _xTable,
                                                   const Reference<XDatabaseMetaData>& _xMetaData,
                                                   sal_Bool bIsAutoIncrement) throw(SQLException, RuntimeException)
    {
        Reference< XResultSetMetaDataSupplier> xSrcMetaSup(xSrcRs,UNO_QUERY);
        Reference<XRow> xRow(xSrcRs,UNO_QUERY);
        if(!xSrcRs.is() || !xRow.is())
            return;

        Reference< XResultSetMetaData> xMeta = xSrcMetaSup->getMetaData();
        sal_Int32 nCount = xMeta->getColumnCount();


        ::rtl::OUString aSql(::rtl::OUString::createFromAscii("INSERT INTO "));
        ::rtl::OUString sComposedTableName;
        ::dbaui::composeTableName(_xMetaData,_xTable,sComposedTableName,sal_True);

        aSql += sComposedTableName;
        aSql += ::rtl::OUString::createFromAscii(" ( ");
        // set values and column names
        ::rtl::OUString aValues = ::rtl::OUString::createFromAscii(" VALUES ( ");
        static ::rtl::OUString aPara = ::rtl::OUString::createFromAscii("?,");
        ::rtl::OUString aQuote = _xMetaData->getIdentifierQuoteString();
        static ::rtl::OUString aComma = ::rtl::OUString::createFromAscii(",");

        Reference<XColumnsSupplier> xColsSup(_xTable,UNO_QUERY);
        OSL_ENSURE(xColsSup.is(),"SbaTableQueryBrowser::insertRows: No columnsSupplier!");
        if(!xColsSup.is())
            return;
        Reference<XNameAccess> xNameAccess = xColsSup->getColumns();
        Sequence< ::rtl::OUString> aSeq = xNameAccess->getElementNames();
        const ::rtl::OUString* pBegin = aSeq.getConstArray();
        const ::rtl::OUString* pEnd   = pBegin + aSeq.getLength();
        for(;pBegin != pEnd;++pBegin)
        {
            aSql += ::dbtools::quoteName( aQuote,*pBegin);
            aSql += aComma;
            aValues += aPara;
        }

        aSql = aSql.replaceAt(aSql.getLength()-1,1,::rtl::OUString::createFromAscii(")"));
        aValues = aValues.replaceAt(aValues.getLength()-1,1,::rtl::OUString::createFromAscii(")"));

        aSql += aValues;
        // now create,fill and execute the prepared statement
        Reference< XPreparedStatement > xPrep(_xMetaData->getConnection()->prepareStatement(aSql));
        Reference< XParameters > xParameter(xPrep,UNO_QUERY);
        ::std::vector<sal_Int32> aColumnTypes;
        aColumnTypes.reserve(nCount+1);
        aColumnTypes.push_back(-1); // just to avoid a everytime i-1 call
        for(sal_Int32 k=1;k <= nCount;++k)
            aColumnTypes.push_back(xMeta->getColumnType(k));


        sal_Int32 nRowCount = 0;
        while(xSrcRs->next())
        {
            ++nRowCount;
            ::std::vector<sal_Int32>::const_iterator aPosIter = _rvColumns.begin();
            for(sal_Int32 i = 1;aPosIter != _rvColumns.end();++aPosIter,++i)
            {
                sal_Int32 nPos = *aPosIter;
                if(nPos == CONTAINER_ENTRY_NOTFOUND)
                    continue;
                if(i == 1 && bIsAutoIncrement)
                {
                    xParameter->setInt(1,nRowCount);
                    continue;
                }
                switch(aColumnTypes[i])
                {
                    case DataType::CHAR:
                    case DataType::VARCHAR:
                        xParameter->setString(nPos,xRow->getString(i));
                        break;
                    case DataType::DECIMAL:
                    case DataType::NUMERIC:
                        xParameter->setDouble(nPos,xRow->getDouble(i));
                        break;
                    case DataType::BIGINT:
                        xParameter->setLong(nPos,xRow->getLong(i));
                        break;
                    case DataType::FLOAT:
                        xParameter->setFloat(nPos,xRow->getFloat(i));
                        break;
                    case DataType::DOUBLE:
                        xParameter->setDouble(nPos,xRow->getDouble(i));
                        break;
                    case DataType::LONGVARCHAR:
                        xParameter->setString(nPos,xRow->getString(i));
                        break;
                    case DataType::LONGVARBINARY:
                        xParameter->setBytes(nPos,xRow->getBytes(i));
                        break;
                    case DataType::DATE:
                        xParameter->setDate(nPos,xRow->getDate(i));
                        break;
                    case DataType::TIME:
                        xParameter->setTime(nPos,xRow->getTime(i));
                        break;
                    case DataType::TIMESTAMP:
                        xParameter->setTimestamp(nPos,xRow->getTimestamp(i));
                        break;
                    case DataType::BIT:
                        xParameter->setBoolean(nPos,xRow->getBoolean(i));
                        break;
                    case DataType::TINYINT:
                        xParameter->setByte(nPos,xRow->getByte(i));
                        break;
                    case DataType::SMALLINT:
                        xParameter->setShort(nPos,xRow->getShort(i));
                        break;
                    case DataType::INTEGER:
                        xParameter->setInt(nPos,xRow->getInt(i));
                        break;
                    case DataType::REAL:
                        xParameter->setDouble(nPos,xRow->getDouble(i));
                        break;
                    case DataType::BINARY:
                    case DataType::VARBINARY:
                        xParameter->setBytes(nPos,xRow->getBytes(i));
                        break;
                    default:
                        OSL_ENSURE(0,"Unknown type");
                }
                if(xRow->wasNull())
                    xParameter->setNull(nPos,aColumnTypes[i]);
            }
            xPrep->executeUpdate();
        }
    }
    // -----------------------------------------------------------------------------
    IMPL_LINK(SbaTableQueryBrowser, OnCutEntry, SvLBoxEntry*, _pEntry)
    {
        return 0;
    }
    // -----------------------------------------------------------------------------
    IMPL_LINK(SbaTableQueryBrowser, OnCopyEntry, SvLBoxEntry*, _pEntry)
    {
        if(isEntryCopyAllowed(_pEntry))
            copyEntry(_pEntry);
        return 0;
    }
    // -----------------------------------------------------------------------------
    IMPL_LINK(SbaTableQueryBrowser, OnPasteEntry, SvLBoxEntry*, _pEntry)
    {
        if(isEntryPasteAllowed(_pEntry))
            pasteEntry(_pEntry);
        return 0;
    }
    // -----------------------------------------------------------------------------
    IMPL_LINK(SbaTableQueryBrowser, OnEditingEntry, SvLBoxEntry*, _pEntry)
    {
        EntryType eType = getEntryType(_pEntry);
        long nRet = 0;
        switch(eType)
        {
            case etQuery:
            case etView:
            case etTable:
                try
                {
                    if(eType == etQuery || isConnectionWriteAble(_pEntry))
                    {
                        ensureObjectExists(_pEntry);
                        DBTreeListModel::DBTreeListUserData* pData = static_cast<DBTreeListModel::DBTreeListUserData*>(_pEntry->GetUserData());
                        if(pData && pData->xObject.is())
                        {
                            Reference<XRename> xRename(pData->xObject,UNO_QUERY);
                            if(xRename.is())
                            {
                                ::rtl::OUString sName;
                                Reference<XPropertySet> xProp(pData->xObject,UNO_QUERY);
                                xProp->getPropertyValue(PROPERTY_NAME) >>= sName;
                                m_pTreeView->getListBox()->SetEntryText(_pEntry,sName);
                                nRet =  1;
                            }
                        }
                    }
                }
                catch(const Exception&)
                {
                    OSL_ENSURE(0,"Exception catched!");
                }
                break;
        }
        return nRet;
    }
    // -----------------------------------------------------------------------------
    IMPL_LINK(SbaTableQueryBrowser, OnEditedEntry, DBTreeEditedEntry*, _aEntry)
    {
        EntryType eType = getEntryType(_aEntry->pEntry);
        ::rtl::OUString sOldName;
        long nRet = 0;
        try
        {
            switch(eType)
            {
                case etView:
                case etTable:
                case etQuery:
                    if(etQuery == eType || isConnectionWriteAble(_aEntry->pEntry))
                    {
                        DBTreeListModel::DBTreeListUserData* pData = static_cast<DBTreeListModel::DBTreeListUserData*>(_aEntry->pEntry->GetUserData());
                        OSL_ENSURE(pData && pData->xObject.is(),"Error in editing!");
                        if(pData && pData->xObject.is())
                        {
                            ::rtl::OUString sName,sSchema,sCatalog;
                            ::rtl::OUString sNewName = _aEntry->aNewText;
                            Reference<XPropertySet> xProp(pData->xObject,UNO_QUERY);
                            xProp->getPropertyValue(PROPERTY_NAME) >>= sName;
                            Reference<XConnection> xConnection = getConnectionFromEntry(_aEntry->pEntry);
                            Reference<XDatabaseMetaData> xMeta = xConnection.is() ? xConnection->getMetaData() : Reference<XDatabaseMetaData>();
                            if(etQuery == eType)
                                sOldName = sName;
                            else
                                ::dbaui::composeTableName(xMeta,xProp,sOldName,sal_False);

                            if((etQuery == eType || (xMeta.is() && xMeta->storesMixedCaseQuotedIdentifiers())) ? sName != sNewName : !sNewName.equalsIgnoreAsciiCase(sName))
                            {
                                Reference<XRename> xRename(pData->xObject,UNO_QUERY);
                                OSL_ENSURE(xRename.is(),"No Xrename interface!");
                                if(xRename.is())
                                {
                                    xRename->rename(sNewName);
                                     nRet = 1;
                                    if(etQuery != eType)
                                    {// special handling for tables and views
                                         xProp->getPropertyValue(PROPERTY_SCHEMANAME)  >>= sSchema;
                                        xProp->getPropertyValue(PROPERTY_CATALOGNAME) >>= sCatalog;
                                        ::dbtools::composeTableName(xMeta,sCatalog,sSchema,sNewName,sName,sal_False);
                                        sOldName = sName;
                                        // now check if our datasource has set a tablefilter and if append the new table name to it
                                        ::dbaui::appendToFilter(xConnection,sOldName,getORB(),getView()); // we are not interessted in the return value
                                    }
                                    else
                                        sOldName = sNewName;

                                }
                            }
                        }
                    }
                    break;
            }
        }
        catch(const SQLException& e)
        {
            showError(SQLExceptionInfo(e));
        }
        catch(const ElementExistException& e)
        {
            static ::rtl::OUString sStatus = ::rtl::OUString::createFromAscii("S1000");
            String sMsg = String(ModuleRes(STR_OBJECT_ALREADY_EXISTS));
            sMsg.SearchAndReplace('#',e.Message);
            showError(SQLExceptionInfo(SQLException(sMsg, e.Context, sStatus, 0, Any())));
        }
        catch(const Exception& )
        {
            OSL_ENSURE(0,"Exception catched!");
        }
        _aEntry->aNewText = sOldName;

        return nRet;
    }
    // -----------------------------------------------------------------------------
    IMPL_LINK(SbaTableQueryBrowser, OnDeleteEntry, SvLBoxEntry*, _pEntry)
    {
        EntryType eType = getEntryType(_pEntry);
        switch(eType)
        {
            case etQuery:
                implRemoveQuery(_pEntry);
                break;
            case etView:
            case etTable:
                {
                    // check if connection is readonly
                    if(isConnectionWriteAble(_pEntry))
                        implDropTable(_pEntry);
                }
                break;
            case etBookmark:
                {
                    // get the container of the bookmarks
                    SvLBoxEntry* pContainer = isContainer(_pEntry) ? _pEntry : m_pTreeView->getListBox()->GetParent(_pEntry);
                    if (!ensureEntryObject(pContainer))
                        break;

                    String sSelectedObject = GetEntryText(_pEntry);

                    DBTreeListModel::DBTreeListUserData* pContainerData = static_cast<DBTreeListModel::DBTreeListUserData*>(pContainer->GetUserData());
                    Reference< XNameAccess > xBookmarks(pContainerData->xObject, UNO_QUERY);

                    OLinkedDocumentsAccess aHelper(getView(), getORB(), xBookmarks);
                    aHelper.drop(sSelectedObject);
                }
                break;
        }

        return 0;
    }
    // -----------------------------------------------------------------------------
    sal_Bool SbaTableQueryBrowser::isEntryCutAllowed(SvLBoxEntry* _pEntry)
    {
        // at the momoent this isn't allowed
        return sal_False;
    }
    // -----------------------------------------------------------------------------
    sal_Bool SbaTableQueryBrowser::isEntryCopyAllowed(SvLBoxEntry* _pEntry)
    {
        EntryType eType = getEntryType(_pEntry);
        return  (eType == etTable || eType == etQuery || eType == etView);
    }
    // -----------------------------------------------------------------------------
    sal_Bool SbaTableQueryBrowser::isEntryPasteAllowed(SvLBoxEntry* _pEntry)
    {
        sal_Bool bAllowed = sal_False;
        EntryType eType = getEntryType(_pEntry);
        switch(eType)
        {
            case etQuery:
            case etQueryContainer:
            {
                TransferableDataHelper aTransferData(TransferableDataHelper::CreateFromSystemClipboard(getView()));
                bAllowed = aTransferData.HasFormat(SOT_FORMATSTR_ID_DBACCESS_QUERY);
                break;
            }
            case etView:
            case etTable:
            case etTableContainer:
                {
                    // check if connection is readonly
                    bAllowed = isConnectionWriteAble(_pEntry) && isTableFormat();
                }
                break;
        }
        return bAllowed;
    }
    // -----------------------------------------------------------------------------
    void SbaTableQueryBrowser::cutEntry(SvLBoxEntry* _pEntry)
    {
    }
    // -----------------------------------------------------------------------------
    void SbaTableQueryBrowser::copyEntry(SvLBoxEntry* _pEntry)
    {
        TransferableHelper* pTransfer = NULL;
        Reference< XTransferable> aEnsureDelete;
        EntryType eType = getEntryType(_pEntry);
        pTransfer       = implCopyObject( _pEntry, eType == etQuery ? CommandType::QUERY : CommandType::TABLE);
        aEnsureDelete   = pTransfer;
        if (pTransfer)
            pTransfer->CopyToClipboard(getView());
    }
    // -----------------------------------------------------------------------------
    void SbaTableQueryBrowser::pasteEntry(SvLBoxEntry* _pEntry)
    {
        TransferableDataHelper aTransferData(TransferableDataHelper::CreateFromSystemClipboard(getView()));
        EntryType eType = getEntryType(_pEntry);
        switch(eType)
        {
            case etQuery:
            case etQueryContainer:
                implPasteQuery(_pEntry, aTransferData);
                break;

            case etView:
            case etTable:
            case etTableContainer:
                implPasteTable( _pEntry, aTransferData );
            default:
                ;
        }
    }
    // -----------------------------------------------------------------------------
    Reference<XConnection> SbaTableQueryBrowser::getConnectionFromEntry(SvLBoxEntry* _pEntry) const
    {
        DBTreeListModel::DBTreeListUserData* pDSData = NULL;
        DBTreeListModel::DBTreeListUserData* pEntryData = NULL;
        SvLBoxEntry* pDSEntry = NULL;
        pDSEntry = m_pTreeView->getListBox()->GetRootLevelParent(_pEntry);
        pDSData =   pDSEntry
                ?   static_cast<DBTreeListModel::DBTreeListUserData*>(pDSEntry->GetUserData())
                :   NULL;

        sal_Bool bIsConnectionWriteAble = sal_False;
        Reference<XConnection> xCon;
        if(pDSData && pDSData->xObject.is())
            xCon = Reference<XConnection>(pDSData->xObject,UNO_QUERY);
        return xCon;
    }
    // -----------------------------------------------------------------------------
    sal_Bool SbaTableQueryBrowser::isConnectionWriteAble(SvLBoxEntry* _pEntry) const
    {
        // check if connection is readonly
        sal_Bool bIsConnectionWriteAble = sal_False;
        Reference<XConnection> xCon = getConnectionFromEntry(_pEntry);
        if(xCon.is())
            bIsConnectionWriteAble = !xCon->getMetaData()->isReadOnly();
        return bIsConnectionWriteAble;
    }
// .........................................................................
}   // namespace dbaui
// .........................................................................

/*************************************************************************
 * history:
 *  $Log: not supported by cvs2svn $
 *  Revision 1.31  2001/11/12 10:34:55  oj
 *  #94391# exclude tablefilter and enable schema name again
 *
 *  Revision 1.30  2001/10/08 07:26:29  oj
 *  #92786# refcount implemented for connectiondata and sqlexception catched
 *
 *  Revision 1.29  2001/09/25 13:24:38  oj
 *  #91719# implementing the XRename handling
 *
 *  Revision 1.28  2001/09/20 12:56:17  oj
 *  #92232# fixes for BIGINT type and new property HELPTEXT
 *
 *  Revision 1.27  2001/08/27 06:57:24  oj
 *  #90015# some speedup's
 *
 *  Revision 1.26  2001/08/24 06:31:34  oj
 *  #90015# code corrcetions for some speedup's
 *
 *  Revision 1.25  2001/07/30 06:20:24  oj
 *  #90291# check if table should be appended
 *
 *  Revision 1.24  2001/07/26 14:12:01  oj
 *  #90291# check if table should be appended
 *
 *  Revision 1.23  2001/07/19 09:27:12  oj
 *  #86186# check parsetree for joins
 *
 *  Revision 1.22  2001/07/18 11:33:57  oj
 *  #85664# enable copy/cut/paste/delete keys
 *
 *  Revision 1.21  2001/07/17 10:31:48  oj
 *  #89128# look if connection is readonly
 *
 *  Revision 1.20  2001/07/16 13:40:03  oj
 *  #89650# check if table was created for html/rtf format
 *
 *  Revision 1.19  2001/07/05 12:46:52  oj
 *  #87744# use HTML_SIMPLE
 *
 *  Revision 1.18  2001/07/05 12:19:25  oj
 *  #87744# check for right HTML_TYPE
 *
 *  Revision 1.17  2001/07/02 13:22:11  oj
 *  #88476# save name of object before recursive call
 *
 *  Revision 1.16  2001/06/22 10:53:59  oj
 *  #88455# serveral fixes for parameters
 *
 *  Revision 1.15  2001/06/12 13:19:24  fs
 *  #65293# linux ambiguity
 *
 *  Revision 1.14  2001/06/07 12:53:46  fs
 *  #87905# don't DnD bookmarks
 *
 *  Revision 1.13  2001/06/01 11:23:45  oj
 *  #86520# insert of tabledata corrected
 *
 *  Revision 1.12  2001/05/14 11:58:35  oj
 *  #86744# some changes for entries and views
 *
 *  Revision 1.11  2001/05/10 12:24:47  fs
 *  the clipboard changes are SUPD-dependent
 *
 *  Revision 1.10  2001/05/07 14:09:00  fs
 *  MUST changes regarding the system clipboard access
 *
 *  Revision 1.9  2001/04/26 11:36:16  fs
 *  added support for data source associated bookmarks
 *
 *  Revision 1.8  2001/04/11 12:58:38  fs
 *  use the ODataAccessDescriptor instead of the dbatools functions
 *
 *  Revision 1.7  2001/04/06 13:48:34  oj
 *  #85664# match copy/cut/paste with the right window
 *
 *  Revision 1.6  2001/04/03 14:15:53  fs
 *  corrected some wrong OSL_ASSERTs
 *
 *  Revision 1.5  2001/03/30 13:42:02  oj
 *  remove <:
 *
 *  Revision 1.4  2001/03/30 08:47:18  oj
 *  correct the creation of views
 *
 *  Revision 1.3  2001/03/28 15:44:58  fs
 *  changed the ctor of ODataClipboard
 *
 *  Revision 1.2  2001/03/27 07:09:19  oj
 *  use of new initialize
 *
 *  Revision 1.1  2001/03/23 10:59:09  fs
 *  initial checkin - DnD related implementations for the data source browser controller
 *
 *
 *  Revision 1.0 23.03.01 09:03:17  fs
 ************************************************************************/