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