|
Home > Archive > SQL Anywhere Mobile > May 2005 > deleting the Mobilink script
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
deleting the Mobilink script
|
|
|
| Hi ,
I am using the ASA 9.0.1.1922 with Oracle as consolidated
database. Sync. process is going well. now i have changed
the Mobilink Sync. Script in the database for the additional
feature. now i want to run the script alone. with distrubing
the subsction id and last sync date entry in the
consolidated database in our customer place. I want to
update the patch of the mobilink script in the client
database. I have tried with passing Null in the
Ml_add_table_script procedure. but it is not deleting the
record in the Ml_script table.
I have tried with the following possibilities.
1. call
Ml_add_table_script(
'default',NULL,downl
oad_cursor,NULL)
2.call Ml_add_table_script(
NULL,NULL,NULL,NULL)
3.call Ml_add_table_script(
NULL,NULL,download_c
ursor,NULL)
4.call Ml_add_table_script(
'default',NULL,NULL,
NULL)
I don't thing it deletes the contend in that table. I have
searched in the News group also.
Kindly help me to do this. i want to update the patch to my
client database ASAP.
with regds,
Maddi
| |
| Shuchit 2005-05-05, 7:24 am |
| Maddi wrote in news:4279faa0.6eb3.1681692777@sybase.com:
> I have tried with the following possibilities.
> 1. call
> Ml_add_table_script(
'default',NULL,downl
oad_cursor,NULL)
>
> 2.call Ml_add_table_script(
NULL,NULL,NULL,NULL)
>
> 3.call Ml_add_table_script(
NULL,NULL,download_c
ursor,NULL)
>
> 4.call Ml_add_table_script(
'default',NULL,NULL,
NULL)
That should be
call ml_add_table_script(
'default', 'tablename', 'download_cursor', NULL )
Shuchit
| |
|
| Thanks it is working fine.
> Maddi wrote in news:4279faa0.6eb3.1681692777@sybase.com:
>
>
> That should be
>
> call ml_add_table_script(
'default', 'tablename',
> 'download_cursor', NULL )
>
>
> Shuchit
|
|
|
|
|