[ 1707589 ] PackOut export data not working in postgresql

http://sourceforge.net/tracker/index.php?func=detail&aid=1707589&group_id=176962&atid=879332
This commit is contained in:
teo_sarca 2007-04-25 17:32:52 +00:00
parent 81afa1dbc0
commit 01ebaba0aa
1 changed files with 2 additions and 2 deletions

View File

@ -873,7 +873,7 @@ public class PackOut extends SvrProcess
int key1 = 0;
String nameatts = "";
for (i=1 ;i <= columns;i++){
col_Name = meta.getColumnName(i);
col_Name = meta.getColumnName(i).toUpperCase();
if (col_Name.equals("NAME") && rs.getObject("name") != null)
nameatts = ""+rs.getObject("name");
String sql2 = "SELECT ColumnName FROM AD_Column "
@ -907,7 +907,7 @@ public class PackOut extends SvrProcess
hd_menu.startElement("","","drow",atts);
for (i=1 ;i <= columns;i++){
atts.clear();
col_Name = meta.getColumnName(i);
col_Name = meta.getColumnName(i).toUpperCase();
String sql2 = "Select A.ColumnName, B.Name "
+ "From AD_Column A, AD_Reference B "
+ "Where Upper(A.columnname) = ? and "