Board index » cppbuilder » Borland C++
Sean Holly
![]() CBuilder Developer |
Sean Holly
![]() CBuilder Developer |
Borland C++2005-04-20 10:59:49 PM cppbuilder50 Anyone know where I can find a copy of BCPP 5.02. I know this is very out of date and discontinued but I am trying to find out where I can get this compiler to replicate a problem a customer of my companies is having using our tool with BCPP. |
Jogy
![]() CBuilder Developer |
2005-04-20 11:18:33 PM
Re:Borland C++
Sean Holly wrote:
QuoteAnyone know where I can find a copy of BCPP 5.02. I know this is very out of date and discontinued but I am trying to find out where I can get this compiler to replicate a problem a customer of my companies is having using our tool with BCPP. www.recycledsoftware.com/ www.emsps.com/oldtools/borland.htm or searching e-Bay Jogy |
gayatrisona
![]() CBuilder Developer |
2008-08-04 06:48:24 PM
Re:Borland C++
I am facing a problem in Borland C++ code.
There is a database in SQL server 2005. Merge publication is done on the database. the borland c++ application connects to that database. There is one table in the database named DBTable which we are trying to open in the following code. The call to open() function fails with an error message "General SQL Error:[Microsoft][ODBC SQL Server Driver]Numeric Value out of range" Help with Code Tags (Toggle Plain Text) DBTable = new TTable(Application); DBTable ->TableName = "SID"; DBTable ->DatabaseName = pDB->DatabaseName; DBTable ->Open();DBTable = new TTable(Application); DBTable ->TableName = "SID"; DBTable ->DatabaseName = pDB->DatabaseName; DBTable ->Open(); The table conatins around 2 lac records and the columns are of type- int,int,int,varchar(4000) If the merge publication is deleted then there is no error produced. {smallsort} |