xref: /trunk/main/connectivity/source/commontools/AutoRetrievingBase.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_connectivity.hxx"
30 #include "AutoRetrievingBase.hxx"
31 
32 namespace connectivity
33 {
34     ::rtl::OUString OAutoRetrievingBase::getTransformedGeneratedStatement(const ::rtl::OUString& _sInsertStatement) const
35     {
36         ::rtl::OUString sStmt = _sInsertStatement;
37         OSL_ENSURE( m_bAutoRetrievingEnabled,"Illegal call here. isAutoRetrievingEnabled is false!");
38         sStmt = sStmt.toAsciiUpperCase();
39         ::rtl::OUString sStatement;
40         if ( sStmt.compareToAscii("INSERT",6) == 0 )
41         {
42             sStatement = m_sGeneratedValueStatement;
43             static const ::rtl::OUString sColumn(RTL_CONSTASCII_USTRINGPARAM("$column"));
44             static const ::rtl::OUString sTable(RTL_CONSTASCII_USTRINGPARAM("$table"));
45             sal_Int32 nIndex = 0;
46             nIndex = sStatement.indexOf(sColumn,nIndex);
47             if ( -1 != nIndex )
48             { // we need a column
49             }
50             nIndex = 0;
51             nIndex = sStatement.indexOf(sTable,nIndex);
52             if ( -1 != nIndex )
53             { // we need a table name
54                 sal_Int32 nIntoIndex = sStmt.indexOf(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("INTO ")));
55                 sStmt = sStmt.copy(nIntoIndex+5);
56                 do
57                 {
58                     if ( sStmt.indexOf(' ') == 0 )
59                         sStmt = sStmt.copy(1);
60                 }
61                 while (sStmt.indexOf(' ') == 0 );
62 
63                 nIntoIndex = 0;
64                 ::rtl::OUString sTableName = sStmt.getToken(0,' ',nIntoIndex);
65                 sStatement = sStatement.replaceAt(nIndex,sTable.getLength(),sTableName);
66             }
67         }
68         return sStatement;
69     }
70 }
71 
72