Search results

  1. M

    Drop table in progress database with certain condition

    Hi I want to drop the table if it is already exist in progress database. Eg: T_Customer Before create a T_Customer table, i need to check if that is already exist or not in the database. If it is exist then i need to drop it and again i need to create the table. This is my...
  2. M

    Drop table if it is already exists

    In progress SQL-92/4GL how can drop table if alread exists in database For example in sql server IF OBJECT_ID ('dbo.customer','U') IS NOT NULL Drop table customer; Like that how can do the same thing in progress database. Can anyone please give the exact query how to drop the...
  3. M

    Query for Drop table if already exists

    In progress SQL-92/4GL how can drop table if alread exists in database For example in sql server IF OBJECT_ID ('dbo.customer','U') IS NOT NULL Drop table customer; Like that how can do the same thing in progress database. Can anyone please give the exact query how to drop the...
  4. M

    simple JDBC code to connect progress database

    Hi I am writing simple jdbc code and try to connect the progress 10.1C database. The connection is not sucess and its giving error. Code: public class OpenEdge { private java.sql.Connection con = null; privatefinal String url = "jdbc:jdbcprogress:T:"; privatefinal String serverName=...
  5. M

    what is the difference between SQL-92 and 4GL database

    Hi In Progress 10.1.c, what is the difference between SQL-92 and 4GL database?
  6. M

    difference between progress 9 and progress 10.1c

    Hi i have my application with progress 9 and now i need to change to progress 10.1c. Can any one please tell me what is the difference between progress 9 and 10.1c. Is it true that the datatypes are different from progress 9 and progress 10.1c. For example progress 9 have varchar...
  7. M

    default port number for progress database

    Hi can u please tell me what is the default port number for progress database. Like for oracle 1521, MS Sql 1433 etc.. Thanks mindus
  8. M

    No suitable driver found for jdbc:jdbcprogress:T (set class path)

    Hi i am new to this progress database. I am developing the application which is used to get the data from progress database. My progress database is in remote system. When i execute my application i am getting following error. : unable to get connection java.sql.SQLException No suitable...
Top