ADS samples

  • Follow


Hi !

Downloaded ADS Server (30-day try) and Client for Clipper 5.2. Where can I 
find Clipper examples, function list? In other words - where to start?

Thanks 


0
Reply M 12/10/2009 7:19:22 PM

M Mordkovych wrote:
> Hi !
> 
> Downloaded ADS Server (30-day try) and Client for Clipper 5.2. Where can I 
> find Clipper examples, function list? In other words - where to start?
> 
> Thanks 
> 
> 
Hi there

We have used ADS for many years. It is an excellent product and by 
protecting the database has saved us a lot of support time.

Go to the ADS developer zone:
http://devzone.advantagedatabase.com/dz/content.aspx?key=1

 From here you can go to the documentation and download the ADS Norton 
Guide. Very useful. Also download the Clipper installation guide and 
error guide.

Also from the developer zone you can get to the ADS clipper forum. A 
mine of information.

We were lucky that all database opening went through one common function 
so we only had to select which driver to use in one place. I will 
happily mail you that function if you need it. Normal seeks, skips, 
reads and replaces need no changing as it is all done for you in the RDD.

If you need any more help ask on the ADS forum or come back here.


Good luck.

Les Hughes
0
Reply Les 12/11/2009 11:55:36 AM


Hi!
Thanks for reply!

In ADS server system requirements for Windows it say windows NT or 2000. Can 
I run server on XP machine? Installation on XP system went w/o any error 
messages. Now I have error DBCMD 1015 Argument error usearea


Thanks


0
Reply M 12/11/2009 2:54:19 PM

M Mordkovych wrote:
> Hi!
> Thanks for reply!
> 
> In ADS server system requirements for Windows it say windows NT or 2000. Can 
> I run server on XP machine? Installation on XP system went w/o any error 
> messages. Now I have error DBCMD 1015 Argument error usearea
> 
> 
> Thanks
> 
> 
Hi again

Should run OK on XP machine.

If you use the main ADS server product it MUST be on a different PC than 
the client (well it used to have to be). If you need to run it on the 
same PC then you need to use the Advantage Local Server (should have 
been included in your download).

I personally use an old (800Mhz) PC running anyold Windows server 
version you can get hold of and ADS. This works fine and is more like 
ADS operates at a customer site. If you are running your network on IP 
the you need to have ADSDOSIP running on the client and link in the 
relevant library.


For the 1015 error look at:

http://devzone.advantagedatabase.com/dz/content.aspx?Key=17&RefNo=980611-0063

Copy of bits of it below, hope this helps:

Product:
Advantage CA-Clipper RDD
Category:
Programming
Title:
Runtime DBCMD 1015 Error on USE or AUTOUSE in CA-Clipper Application
Problem Description:
A CA-Clipper application linked with the Advantage CA-Clipper Libraries 
receives the following error on a USE or an AUTOUSE statement:
Error DBCMD 1015 Argument error: DBUSEAREA.

DBCMD 1015 is a CA-Clipper runtime error. It is not an Advantage error. 
The error occurs because the RDD specified in the USE or AUTOUSE command 
either has not been linked into the application or has not been 
REQUESTed (via the REQUEST statement). The error can occur with either 
an Advantage RDD or a non-Advantage RDD.
Solution:
Link the desired RDD into the application and also REQUEST the desired 
RDD by using the REQUEST statement.

Example: REQUEST DBFNTXAX

If the RDD being used in the USE or AUTOUSE command is an Advantage RDD, 
the link script can specify an Advantage OBJ (i.e. either DBFNTXAX.OBJ 
or DBFCDXAX.OBJ) rather than REQUESTing the RDD.

Les
0
Reply Les 12/11/2009 4:09:56 PM

Hi!

Thanks for reply!


1) My dowload is
12/10/2009 13:37 9,671,968 adswin_x86_32.exe

I dont see Adv Local Server here.

2) May be I can run ADS server on a old laptop XP machine?

3) Can I send to you my test program and .LNK file?



>>
> Hi again
>
> Should run OK on XP machine.
>
> If you use the main ADS server product it MUST be on a different PC than 
> the client (well it used to have to be). If you need to run it on the same 
> PC then you need to use the Advantage Local Server (should have been 
> included in your download).
>
> I personally use an old (800Mhz) PC running anyold Windows server version 
> you can get hold of and ADS. This works fine and is more like ADS operates 
> at a customer site. If you are running your network on IP the you need to 
> have ADSDOSIP running on the client and link in the relevant library.
>
>
> For the 1015 error look at:
>
> http://devzone.advantagedatabase.com/dz/content.aspx?Key=17&RefNo=980611-0063
>
> Copy of bits of it below, hope this helps:
>
> Product:
> Advantage CA-Clipper RDD
> Category:
> Programming
> Title:
> Runtime DBCMD 1015 Error on USE or AUTOUSE in CA-Clipper Application
> Problem Description:
> A CA-Clipper application linked with the Advantage CA-Clipper Libraries 
> receives the following error on a USE or an AUTOUSE statement:
> Error DBCMD 1015 Argument error: DBUSEAREA.
>
> DBCMD 1015 is a CA-Clipper runtime error. It is not an Advantage error. 
> The error occurs because the RDD specified in the USE or AUTOUSE command 
> either has not been linked into the application or has not been REQUESTed 
> (via the REQUEST statement). The error can occur with either an Advantage 
> RDD or a non-Advantage RDD.
> Solution:
> Link the desired RDD into the application and also REQUEST the desired RDD 
> by using the REQUEST statement.
>
> Example: REQUEST DBFNTXAX
>
> If the RDD being used in the USE or AUTOUSE command is an Advantage RDD, 
> the link script can specify an Advantage OBJ (i.e. either DBFNTXAX.OBJ or 
> DBFCDXAX.OBJ) rather than REQUESTing the RDD.
>
> Les 


0
Reply M 12/11/2009 5:18:51 PM

Hi

Send your code and script and I will have a look at it.

Using your old laptop should be fine.

Les



M Mordkovych wrote:
> Hi!
> 
> Thanks for reply!
> 
> 
> 1) My dowload is
> 12/10/2009 13:37 9,671,968 adswin_x86_32.exe
> 
> I dont see Adv Local Server here.
> 
> 2) May be I can run ADS server on a old laptop XP machine?
> 
> 3) Can I send to you my test program and .LNK file?
> 
> 
> 
>> Hi again
>>
>> Should run OK on XP machine.
>>
>> If you use the main ADS server product it MUST be on a different PC than 
>> the client (well it used to have to be). If you need to run it on the same 
>> PC then you need to use the Advantage Local Server (should have been 
>> included in your download).
>>
>> I personally use an old (800Mhz) PC running anyold Windows server version 
>> you can get hold of and ADS. This works fine and is more like ADS operates 
>> at a customer site. If you are running your network on IP the you need to 
>> have ADSDOSIP running on the client and link in the relevant library.
>>
>>
>> For the 1015 error look at:
>>
>> http://devzone.advantagedatabase.com/dz/content.aspx?Key=17&RefNo=980611-0063
>>
>> Copy of bits of it below, hope this helps:
>>
>> Product:
>> Advantage CA-Clipper RDD
>> Category:
>> Programming
>> Title:
>> Runtime DBCMD 1015 Error on USE or AUTOUSE in CA-Clipper Application
>> Problem Description:
>> A CA-Clipper application linked with the Advantage CA-Clipper Libraries 
>> receives the following error on a USE or an AUTOUSE statement:
>> Error DBCMD 1015 Argument error: DBUSEAREA.
>>
>> DBCMD 1015 is a CA-Clipper runtime error. It is not an Advantage error. 
>> The error occurs because the RDD specified in the USE or AUTOUSE command 
>> either has not been linked into the application or has not been REQUESTed 
>> (via the REQUEST statement). The error can occur with either an Advantage 
>> RDD or a non-Advantage RDD.
>> Solution:
>> Link the desired RDD into the application and also REQUEST the desired RDD 
>> by using the REQUEST statement.
>>
>> Example: REQUEST DBFNTXAX
>>
>> If the RDD being used in the USE or AUTOUSE command is an Advantage RDD, 
>> the link script can specify an Advantage OBJ (i.e. either DBFNTXAX.OBJ or 
>> DBFCDXAX.OBJ) rather than REQUESTing the RDD.
>>
>> Les 
> 
> 
0
Reply Les 12/12/2009 10:27:44 AM

Hi!

where can I find ads forum?

"Les Hughes" <laz.lo@virgin.net> wrote in message 
news:hftbmf$2ufn$1@news.ett.com.ua...
>M Mordkovych wrote:
>> Hi !
>>
>> Downloaded ADS Server (30-day try) and Client for Clipper 5.2. Where can 
>> I find Clipper examples, function list? In other words - where to start?
>>
>> Thanks
> Hi there
>
> We have used ADS for many years. It is an excellent product and by 
> protecting the database has saved us a lot of support time.
>
> Go to the ADS developer zone:
> http://devzone.advantagedatabase.com/dz/content.aspx?key=1
>
> From here you can go to the documentation and download the ADS Norton 
> Guide. Very useful. Also download the Clipper installation guide and error 
> guide.
>
> Also from the developer zone you can get to the ADS clipper forum. A mine 
> of information.
>
> We were lucky that all database opening went through one common function 
> so we only had to select which driver to use in one place. I will happily 
> mail you that function if you need it. Normal seeks, skips, reads and 
> replaces need no changing as it is all done for you in the RDD.
>
> If you need any more help ask on the ADS forum or come back here.
>
>
> Good luck.
>
> Les Hughes 


0
Reply M 12/20/2009 6:45:19 PM

http://devzone.advantagedatabase.com/dz/content.aspx?key=7


M Mordkovych wrote:
> Hi!
> 
> where can I find ads forum?
> 
> "Les Hughes" <laz.lo@virgin.net> wrote in message 
> news:hftbmf$2ufn$1@news.ett.com.ua...
>> M Mordkovych wrote:
>>> Hi !
>>>
>>> Downloaded ADS Server (30-day try) and Client for Clipper 5.2. Where can 
>>> I find Clipper examples, function list? In other words - where to start?
>>>
>>> Thanks
>> Hi there
>>
>> We have used ADS for many years. It is an excellent product and by 
>> protecting the database has saved us a lot of support time.
>>
>> Go to the ADS developer zone:
>> http://devzone.advantagedatabase.com/dz/content.aspx?key=1
>>
>> From here you can go to the documentation and download the ADS Norton 
>> Guide. Very useful. Also download the Clipper installation guide and error 
>> guide.
>>
>> Also from the developer zone you can get to the ADS clipper forum. A mine 
>> of information.
>>
>> We were lucky that all database opening went through one common function 
>> so we only had to select which driver to use in one place. I will happily 
>> mail you that function if you need it. Normal seeks, skips, reads and 
>> replaces need no changing as it is all done for you in the RDD.
>>
>> If you need any more help ask on the ADS forum or come back here.
>>
>>
>> Good luck.
>>
>> Les Hughes 
> 
> 
0
Reply Les 12/21/2009 9:09:56 AM

I will recommend not to hold off until you get big sum of cash to buy all you need! You should get the <a href="http://lowest-rate-loans.com">loan</a> or just car loan and feel fine 
0
Reply Velazquez24Michelle 5/10/2010 7:03:31 AM

8 Replies
1064 Views

(page loaded in 0.073 seconds)

Similiar Articles:













7/23/2012 3:34:18 PM


Reply: