create access table with ado sql (cannot change table properties)
From: ercan (ercanaktin_at_pcm.com.tr)
Date: 03/24/05
- Next message: borland: "Re: How to connect to sybase 11 with ADO?"
- Previous message: murphy: "How to connect to sybase 11 with ADO?"
- Next in thread: Brian Hollister: "Re: create access table with ado sql (cannot change table properties)"
- Reply: Brian Hollister: "Re: create access table with ado sql (cannot change table properties)"
- Reply: Brian Bushay TeamB: "Re: create access table with ado sql (cannot change table properties)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Thu, 24 Mar 2005 13:40:52 +0200
we have an access database and we want to modify the table field
properties.like format of double field to Currency .
is it possible to do it with sql ado.if yes how?
that works:
ADOCommand1.CommandText :=
'CREATE TABLE MUSTERI_ODEME ' +
' ( ' +' NAME TEXT(20) WITH COMP NOT NULL' +
' )';
ADOCommand1.Execute;
but this one gives error :
ADOCommand1.CommandText :=
'CREATE TABLE MUSTERI_ODEME ' +
' ( ' +
' NUMBER DOUBLE WITH FORMAT "CURRENCY" ' +
' )';
ADOCommand1.Execute;
- Next message: borland: "Re: How to connect to sybase 11 with ADO?"
- Previous message: murphy: "How to connect to sybase 11 with ADO?"
- Next in thread: Brian Hollister: "Re: create access table with ado sql (cannot change table properties)"
- Reply: Brian Hollister: "Re: create access table with ado sql (cannot change table properties)"
- Reply: Brian Bushay TeamB: "Re: create access table with ado sql (cannot change table properties)"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|