Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help: Interbase 6 and BDE

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
0
0
I can't connect to a interbase 6 database using dialect 3 and using BDE to connect it.
 
Have you updated your BDE?
James P. Cottingham

I am the Unknown lead by the Unknowing.
I have done so much with so little
for so long that I am now qualified
to do anything with nothing.
 
Yes. I think it's because date's and log its are
incompatible.

Dialect 1 don't accept for example:
create table (date1 date);
accepts only:
create table (date1 timestamp);

In dialect 3 I can use:
create table (date1 date);

I try to use Interbase ODBC, but some of them still in BETA
and have some errors:(

 
Can't you create the table using SQL Explorer or some other tool?
Why you use the dbe to create tables?. In most cases I create the tables in WISQL or SQL explorer, and the DBE only enters when I make the front end application.

Regards S. van Els
SAvanEls@cq-link.sr
 
Gives me this error:

--------------------------------------------------------
General SQL error.
Column unknown
SALEDATE
Client SQL dialect 1 does not support reference to DATE
datatype.
--------------------------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top