summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2006-12-01 15:30:27 +0000
committerRüdiger Timm <rt@openoffice.org>2006-12-01 15:30:27 +0000
commit254f227b41f3e731cc0c7c17e0539ce5d1b1e5c4 (patch)
tree3acdb94c253b62cfa70eff49c5b01c6dc3ada849 /wizards
parenta3fca26a11f73fbfeb8b447fe1ae7a973e5a2794 (diff)
INTEGRATION: CWS dbwizardpp5 (1.7.52); FILE MERGED
2006/10/10 14:24:41 bc 1.7.52.1: #i55179# now reportwizard recognizes numberformat
Diffstat (limited to 'wizards')
-rw-r--r--wizards/com/sun/star/wizards/db/TableDescriptor.java66
1 files changed, 36 insertions, 30 deletions
diff --git a/wizards/com/sun/star/wizards/db/TableDescriptor.java b/wizards/com/sun/star/wizards/db/TableDescriptor.java
index e685d6b306b8..2addda272f0f 100644
--- a/wizards/com/sun/star/wizards/db/TableDescriptor.java
+++ b/wizards/com/sun/star/wizards/db/TableDescriptor.java
@@ -4,9 +4,9 @@
*
* $RCSfile: TableDescriptor.java,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: vg $ $Date: 2006-04-07 12:37:12 $
+ * last change: $Author: rt $ $Date: 2006-12-01 16:30:27 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -144,6 +144,15 @@ public class TableDescriptor extends CommandMetaData implements XContainerListe
}
+ private void removePrimaryKeys(){
+ if (keycolumncontainer.size() > 0){
+ for (int i = (keycolumncontainer.size()-1); i >= 0 ; i--){
+ keycolumncontainer.remove(i);
+ }
+ }
+ }
+
+
public boolean createPrimaryKeys(String[] _fieldnames, boolean _bAutoincrementation){
try {
XKeysSupplier xKeySupplier = (XKeysSupplier)UnoRuntime.queryInterface(XKeysSupplier.class, xPropTableDataDescriptor);
@@ -156,11 +165,7 @@ public class TableDescriptor extends CommandMetaData implements XContainerListe
xKeyColumnSupplier = (XColumnsSupplier)UnoRuntime.queryInterface(XColumnsSupplier.class, xKey);
XDataDescriptorFactory xKeyColFac = (XDataDescriptorFactory)UnoRuntime.queryInterface(XDataDescriptorFactory.class,xKeyColumnSupplier.getColumns());
xKeyColAppend = (XAppend)UnoRuntime.queryInterface(XAppend.class, xKeyColFac);
- if (keycolumncontainer.size() > 0){
- for (int i = (keycolumncontainer.size()-1); i >= 0 ; i--){
- keycolumncontainer.remove(i);
- }
- }
+ removePrimaryKeys();
for (int i = 0; i < _fieldnames.length; i++){
XPropertySet xKeyColPropertySet = xKeyColFac.createDataDescriptor();
xKeyColPropertySet.setPropertyValue("Name", _fieldnames[i]);
@@ -261,40 +266,41 @@ public class TableDescriptor extends CommandMetaData implements XContainerListe
}
if (!breturn){
removeAllColumnsFromDescriptor(_tablename);
+ this.removePrimaryKeys();
}
return breturn;
}
private boolean removeAllColumnsFromDescriptor(String _tablename){
- try {
- xPropTableDataDescriptor.setPropertyValue("Name", "");
- if ((xKeyDrop != null) && (xIndexAccessKeys != null)){
- int icount = xIndexAccessKeys.getCount();
- if (icount > 0){
- for (int i = xIndexAccessKeys.getCount()-1; i >= 0; i--){
- xKeyDrop.dropByIndex(i);
- }
+ try {
+ xPropTableDataDescriptor.setPropertyValue("Name", "");
+ if ((xKeyDrop != null) && (xIndexAccessKeys != null)){
+ int icount = xIndexAccessKeys.getCount();
+ if (icount > 0){
+ for (int i = xIndexAccessKeys.getCount()-1; i >= 0; i--){
+ xKeyDrop.dropByIndex(i);
}
}
- XDrop xColumnDrop = (XDrop) UnoRuntime.queryInterface(XDrop.class, xNameAccessColumns);
- for (int i = xNameAccessColumns.getElementNames().length - 1; i >= 0; i--)
- xColumnDrop.dropByIndex(i);
- if (xTableDrop != null)
- if (xTableNames.hasByName(_tablename))
- xTableDrop.dropByName(_tablename);
- if (bIDFieldisInserted){
- this.dropColumnbyName(this.IDFieldName);
- bIDFieldisInserted = false;
- }
- return false;
- } catch (SQLException oSQLException) {
- super.callSQLErrorMessageDialog(oSQLException, xWindow);
}
- catch (Exception e1) {
- e1.printStackTrace(System.out);
+ XDrop xColumnDrop = (XDrop) UnoRuntime.queryInterface(XDrop.class, xNameAccessColumns);
+ for (int i = xNameAccessColumns.getElementNames().length - 1; i >= 0; i--)
+ xColumnDrop.dropByIndex(i);
+ if (xTableDrop != null)
+ if (xTableNames.hasByName(_tablename))
+ xTableDrop.dropByName(_tablename);
+ if (bIDFieldisInserted){
+ this.dropColumnbyName(this.IDFieldName);
+ bIDFieldisInserted = false;
}
return false;
+ } catch (SQLException oSQLException) {
+ super.callSQLErrorMessageDialog(oSQLException, xWindow);
+ }
+ catch (Exception e1) {
+ e1.printStackTrace(System.out);
+ }
+ return false;
}