Book a Demo

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Laurent_F

Pages: [1]
1
General Board / Re: Sybase ODBC import bug
« on: February 18, 2004, 06:09:02 am »
I never got a response nor fix. Are you using build #660? Maybe it has datatypes that were missing in prior builds. (I'm saying that because I have encountered a similar issue reverse-engineering a MS SQLServer DB and the latest build (#660) had all the datatypes defined and it solved the problem). Otherwise, I would open a bug report.

2
General Board / Sybase ODBC import bug
« on: September 30, 2003, 12:29:35 pm »
When reverse-engineering from Sybase, I get the following error message:

[INTERSOLV][ODBC SQL Server driver]Number of bound columns exceeds the number of result columns.

I get a messagebox for each table imported, so it is quite annoying for large reverse engineering taks. Is there a fix for this?

I'm using the ODBC driver bundled with the Sybase 11 client against a Sybase 11.9 server.

[great tool otherwise]

3
General Board / Web Services with EA ?
« on: January 21, 2004, 12:18:50 pm »
Is anyone using EA to build Web Services? Any recommendations / best practices doc. out there?

4
my point is that even when you pick String, it's not the type that gets used by EA.

5
How can I generate a Java class where the fields have a datatype mapped to the appropriate Java type instead of the database type? i.e. :


public class Stuff {

     private String test;

     public Stuff(){

     }

     public String gettest(){
           return test;
     }

     public void settest(String newVal){
           test = newVal;
     }

}

instead of what EA generates:

public class Stuff {

     private varchar test;

     public Stuff(){

     }

     public varchar gettest(){
           return test;
     }

     public void settest(varchar newVal){
           test = newVal;
     }

}

Setting up a type mapping under Configuration -> Language Datatypes -> Java

doesn't work.

Pages: [1]