| View previous topic :: View next topic |
| Author |
Message |
Irwin Aschkenas Guest
|
Posted: Sun Feb 20, 2005 5:05 am Post subject: Using ADO with Views |
|
|
I am trying to use ADO by updating a record in SQL Server 2000 via a view.
The post() method seems to go directly to the table bypassing the view.
Anyone know how to make post() use the view.
Thanks
|
|
| Back to top |
|
 |
Daniel Stevenson Guest
|
Posted: Tue Mar 29, 2005 1:53 am Post subject: Re: Using ADO with Views |
|
|
Are you using data-aware Grids with Views? What are the Views you are
referring to?
"Irwin Aschkenas" <irwin_a (AT) yahoo (DOT) com> wrote
| Quote: | I am trying to use ADO by updating a record in SQL Server 2000 via a view.
The post() method seems to go directly to the table bypassing the view.
Anyone know how to make post() use the view.
Thanks
|
|
|
| Back to top |
|
 |
Irwin Aschkenas Guest
|
Posted: Mon Apr 04, 2005 2:13 am Post subject: Re: Using ADO with Views |
|
|
I was referring to using views within SQL Server via ADO. If use the
ADO Post method it seems to bypass the view.
Daniel Stevenson wrote:
| Quote: | Are you using data-aware Grids with Views? What are the Views you are
referring to?
"Irwin Aschkenas" <irwin_a (AT) yahoo (DOT) com> wrote in message
news:42181aa4$1 (AT) newsgroups (DOT) borland.com...
I am trying to use ADO by updating a record in SQL Server 2000 via a view.
The post() method seems to go directly to the table bypassing the view.
Anyone know how to make post() use the view.
Thanks
|
|
|
| Back to top |
|
 |
Scott Morris Guest
|
Posted: Mon Apr 04, 2005 1:46 pm Post subject: Re: Using ADO with Views |
|
|
You need to define the view with "view_metadata". This is covered in the
online documentation that comes with sql server.
|
|
| Back to top |
|
 |
Irwin Aschkenas Guest
|
Posted: Sun Apr 10, 2005 7:04 am Post subject: Re: Using ADO with Views |
|
|
Thanks.. That was it..
Scott Morris wrote:
| Quote: | You need to define the view with "view_metadata". This is covered in the
online documentation that comes with sql server.
|
|
|
| Back to top |
|
 |
|