Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sql12/build.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<project name="SQuirreLSQL" default="buildAll" basedir=".">


<property name="targetVM" value="11"/>
<property name="targetVM" value="17"/>

<target name="cleanAllAndInit" description="cleanAllAndInit">

Expand Down Expand Up @@ -110,7 +110,7 @@
</pathconvert>

<target name="compileVersionCheck" description="compileVersionCheck">
<javac source="1.6" target="1.6"
<javac source="8" target="8"
includeantruntime="false"
srcdir="versionChecker/src"
destdir="versionChecker/output/work/bin"
Expand Down Expand Up @@ -286,4 +286,4 @@
</java>
</target>

</project>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ public static OkJPanel[] getControlPanels()
new ArrayList<String>(Arrays.asList(initialClassNameList));

// add to that the list of all names that have been registered by plugins
// Iterator<IDataTypeComponentFactory> pluginDataTypeFactories =
// Iterator<IDataTypeComponentFactory> pluginDataTypeFactories =
// _registeredDataTypes.values().iterator();
// while (pluginDataTypeFactories.hasNext()) {
// TODO: add support for plugin-registered data-type preferences panels
Expand Down Expand Up @@ -859,6 +859,7 @@ private static IDataTypeComponent getGenericDataType(JTable table, ColumnDisplay
case Types.TIMESTAMP:
case -101: // Oracle's 'TIMESTAMP WITH TIME ZONE' == -101
case -102: // Oracle's 'TIMESTAMP WITH LOCAL TIME ZONE' == -102
case -155: // MSSQL Server's 'TIMESTAMP WITH LOCAL TIME ZONE' == -155
dataTypeComponent = new DataTypeTimestamp(table, colDef);
break;

Expand Down