Re: From .mdb to .adp database
- From: "Nesta" <nestaman@xxxxxxxxxxx>
- Date: Fri, 19 Oct 2007 14:02:45 -0400
Hi Norman,
Thank you very much for your response.
I understand how things work better now.
Because i'm used to work with mdb files, it was difficult for me to
understand that ADP files are just an interface that is not directly
connected with databases, like it is in mdb (for example, the queries).
The reason why i got interested into ADP files is that i'm trying to find
the best way (with less changes to do ans without great changes in
interfaces) to convert my mdb into SQL.
But, as you say ADP is dying, maybe this way is wrong.
I know i can convert my tables and stuff into SQL and still use mdb
interface (by changing the link of the bases), but if i want to
redistribuate my application, i will have to create the dbo connection on
every computers, isn't it ?
Do you have a better solution ?
Thanks by advance.
Nesta
"Norman Yuan" <NoAddress@xxxxxxxxxxxx> a écrit dans le message de news:
%23Xr2UEcEIHA.3332@xxxxxxxxxxxxxxxxxxxxxxx
ADP file, not like MDB, does not contains query. The queries you see in
ADP file are SQL Server objects (Views, Stored Procedures and UDFs...).
When converting, the queries in MDB may or may not be converted to
corresponding SQL Server objects, depending on what is in the mdb queries.
In your case, your query was conerted as stored procedure, which sits in
SQL Server back end, and has no knowledge of your ADP front end (and it
should not be tied to any specific front end at all), so the conversion
smartly enough to a sptored procedure and converted the two required
inputs as input parameters. Now, when you call this stored procedure in an
front end application, such as ADP file using it as a form's data source,
you need to get user input and pass the input as the stored procedure's
parameters.
If you already have an Access application done in MDB file, the better
approach would be to only convert data back end to SQL Server, and still
use your MDB front end, with possible minor modification. After all, ADP
type of application is dying.
"Nesta" <nestaman@xxxxxxxxxxx> wrote in message
news:ul6lgVaEIHA.3916@xxxxxxxxxxxxxxxxxxxxxxx
Hi all,
I'm testing migration from Acess database to ADP Project.
I have this query wich criteria of selection is the value of a textbox,
in a form.
In my mdb database, the syntax was like : [Forms]![F_MyForm]![MyTextBox].
In my ADP project, i have noticed theses changes :
- my query was transformed into a function ;
- the syntax ro reach the value of my TexBox has changed (and obviously
does not work) : = @Forms_F_MyForm_MyTextBox.
1) How to find the good syntax ?
2) Where can I find ressources on ADP syntax ?
Thanks by advance !
Nesta
.
- Follow-Ups:
- Re: From .mdb to .adp database
- From: Norman Yuan
- Re: From .mdb to .adp database
- References:
- From .mdb to .adp database
- From: Nesta
- Re: From .mdb to .adp database
- From: Norman Yuan
- From .mdb to .adp database
- Prev by Date: Re: Run Time Error 7965 when displaying recordset
- Next by Date: Re: From .mdb to .adp database
- Previous by thread: Re: From .mdb to .adp database
- Next by thread: Re: From .mdb to .adp database
- Index(es):
Relevant Pages
|
Loading