473,625 Members | 3,330 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

ADP Issues

Hello,

Someone had told me that there was "a list" of known issues with the Access
Data Project. I like using the ADP at this point, and haven't had any
issues yet, but would like to know what those issues are. Does anyone have
a link or a list of any issues using ADP?

Any help would be appreciated.

Thanks!
Rick
Oct 17 '06 #1
6 2047
"Rico" <me@you.comwrot e in news:e79Zg.1585 71$R63.153800@p d7urf1no:
Someone had told me that there was "a list" of known issues with the
Access Data Project. I like using the ADP at this point, and haven't
had any issues yet, but would like to know what those issues are.
Does anyone have a link or a list of any issues using ADP?
Do you want the list from those who use or have used ADPs extensively or do
you want the list from those who haven't but know all about them
regardless?

--
Lyle Fairfield
Oct 17 '06 #2
Hahaha, Now you know my plight with the NGs! Why those who have used them
extensively of course.

Rick
"Lyle Fairfield" <ly***********@ aim.comwrote in message
news:Xn******** *************** **********@216. 221.81.119...
"Rico" <me@you.comwrot e in news:e79Zg.1585 71$R63.153800@p d7urf1no:
>Someone had told me that there was "a list" of known issues with the
Access Data Project. I like using the ADP at this point, and haven't
had any issues yet, but would like to know what those issues are.
Does anyone have a link or a list of any issues using ADP?

Do you want the list from those who use or have used ADPs extensively or
do
you want the list from those who haven't but know all about them
regardless?

--
Lyle Fairfield

Oct 17 '06 #3
Lyle Fairfield wrote:
"Rico" <me@you.comwrot e in news:e79Zg.1585 71$R63.153800@p d7urf1no:
>Someone had told me that there was "a list" of known issues with the
Access Data Project. I like using the ADP at this point, and haven't
had any issues yet, but would like to know what those issues are.
Does anyone have a link or a list of any issues using ADP?

Do you want the list from those who use or have used ADPs extensively
or do you want the list from those who haven't but know all about them
regardless?
Do you feel you would have to own a Yugo for an extensive period before you
could state an opinion about them?

--
Rick Brandt, Microsoft Access MVP
Email (as appropriate) to...
RBrandt at Hunter dot com
Oct 17 '06 #4
"Rick Brandt" <ri*********@ho tmail.comwrote in
news:5y******** *******@newssvr 14.news.prodigy .com:
Lyle Fairfield wrote:
>Do you want the list from those who use or have used ADPs extensively
or do you want the list from those who haven't but know all about
them regardless?
Do you feel you would have to own a Yugo for an extensive period
before you could state an opinion about them?
I have not owned, nor used a Yugo and I have no opinion about Yugos. I
believe that a Yugo is some kind of automobile, but I am not sure.

For somewhat similar reasons, I do not comment here about replication or
security.

But I can comment about ADPs, having used them extensively since shortly
after the release of Access 2000 and having sold successful ADP
applications to large corporations, educational institutions and
professional organizations.

ADPs are wonderfully powerful. They have several capabilities that MDBs do
not. In my opinion, their greatest strength is that they both enable and
encourage the developer to use and take advantage of the great strengths of
MS-SQL server.

I have abandoned the use of ADPs for any work beyond quick mark-ups, or
personal use.
I have done this because I feel that ADPs can open data to unrestricted
intervention. To use MS-SQL data with an ADP the user must have logon
authority and permissions to Select, Edit, Delete or Insert Data. Should
the user create another ADP, these permissions will exist for that ADP, and
the user can modify the database without any of the safeguards which the
developer may have built into the application.
To remedy this, MS introduced application roles. When one uses application
roles, it is the application which has permissions, and if the user creates
another ADP, he/she will see nothing and be able to edit nothing, assuming
the user has no permissions. Unfortunately, MS failed to make ADPs and
application roles sufficiently compatible that they can be programmed
without an enormous amount of work (my estimate is 10 to 20 times the
normal amount of work), much of it guess work. The problem with application
roles is that they must be enabled for every connection the ADP makes to
the SQL database, and an ADP makes many, many simultaneous connections. I
have seen as many, (actually I've had a DBA muttering at me) as eight, some
for forms, some for reports, some for list-boxes. In some cases these
connections seem to be made at random. That is the connection the ADP uses
for list-box A on Monday is not necessarily the connection it uses on
Tuesday. (This is probably my imagination; the programming of application
roles is so twisted and arcane that this just seems to be).
One MS book writer on ADPs suggested that developers simply connect by code
and encrypt all the connection information in code in ADEs. I have written
an entire encryption class to deal with this. But I am unwilling to go this
route with an application that I sell; it's unreasonable that I should be
responsible for security of data in a scenario where MS cannot or will not
be.

I do not know if ADPs have been modified in the past couple of years so
that my concerns are no longer valid.

Nothing I have said here should be construed to be a condemnation of ADO.
In my opinion, ADO is a very powerful technology, perhaps the best thing MS
has ever done.

--
Lyle Fairfield

Oct 17 '06 #5
I suppose that I should mention that I have not entirely given up on
ADPs. The latest ADPs allow the "setting" of both Form, Report and (I
believe) drop-down recordsets to ADO recordsets. Because these ADO
recordsets can be disconnected, they present new possibilities to form
editing, including, for continuous forms, the editing of multiple
records and then the saving or abandoning of all changes.
So it strikes me that one could create an ADP without any base
connection at all and connect all forms etc using standard modules and
encrypted logons and permissions in ADEs. I haven't pursued this enough
to know if it's viable but I have a hobby-oriented geocaching
application I want to create and that may be a suitable situation in
which to experiment.

Oct 17 '06 #6
On Tue, 17 Oct 2006 20:50:25 GMT, Lyle Fairfield
<ly***********@ aim.comwrote:

This is true, but it is certainly not exclusively so for ADP's. It
seems to me all programming environments that perform significant work
behind the scenes to support data binding can be affected. For example
VB6, Access MDB + ODBC, ASP Data Environment.

I wonder if A2007 will be any better in this respect.

AppRoles are not essential for all situations. Databases have been
used for decades without this feature.

AppRoles and ADP: http://support.microsoft.com/kb/308312
I agree with you that the limitations are pathetic and MSFT should be
ashamed about the poor level of integration of two tools from the same
shop.

-Tom.
<clip>
>I have abandoned the use of ADPs for any work beyond quick mark-ups, or
personal use.
I have done this because I feel that ADPs can open data to unrestricted
intervention . To use MS-SQL data with an ADP the user must have logon
authority and permissions to Select, Edit, Delete or Insert Data. Should
the user create another ADP, these permissions will exist for that ADP, and
the user can modify the database without any of the safeguards which the
developer may have built into the application.
<clip>

Oct 18 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2074
by: Tom Loredo | last post by:
Hi folks- I'm about to move from a Solaris 8/SPARC environment to a Dell running RedHat 9. Are there any issues I need to be aware of in bringing my Python code over (mostly scientific computation)? In particular, I know earlier versions of RH shipped with an "old" Python installed as "python" and that installation of more recent versions should not overwrite "python" (e.g., install as "python2.3"). Is this still the case in RH9? Any...
28
2782
by: grahamd | last post by:
Who are the appropriate people to report security problems to in respect of a module included with the Python distribution? I don't feel it appropriate to be reporting it on general mailing lists.
5
4677
by: sandy | last post by:
Hi All, I am a newbie to MySQL and Python. At the first place, I would like to know what are the general performance issues (if any) of using MySQL with Python. By performance, I wanted to know how will the speed be, what is the memory overhead involved, etc during database specific operations (retrieval, update, insert, etc) when MySQL is used with Python.
2
2290
by: malcolm | last post by:
Hello, We have a robust (.NET 1.1 c# winforms) client-server application that utilizes many typed DataSets, typed DataTables and typed DataRows. Our application is a series of windows and popup windows where you can edit information and data, nothing out of the ordinary. I estimate we have something like 50 to 100 tables and/or views in our database each of which map to one strongly typed DataTable. Now we have some odd 20 to 30 typed...
1
1665
by: Aliandro | last post by:
Hi Does any one know where I can find information regarding any issues with SQL and IIS being run under windows XP SP2? as I am in the process of programmning in Dot net and neet some way of knowing if there are any issues before I start. So if some one can please inform me of a place that has this information that would be greatly appreciated. Thanks Ali
7
1845
by: David Laub | last post by:
I have stumbled across various Netscape issues, none of which appear to be solvable by tweaking the clientTarget or targetSchema properties. At this point, I'm not even interested in "solving" these problems - I'm more interested in isolating them, .i.e. finding a "complete" list of issues. Here's my list of serious issues found so far. By serious, I mean functionality that fails, as opposed to much less serious (albeit annoying) display...
2
3036
by: G2 | last post by:
Hi We are dealing with significant browser compatibility issues with Netscape 5.x+ browsers and Mac IE. I am sure most web developers have faced similar issues in the past. Can anyone give me their thoughts on how they were able to address these issues ? Are there any best practices published by MS on how to ensure browser compatibility when coding asp.net Thanks for any input.
1
1962
by: GaryDean | last post by:
We have been developing all of our .net applications on 32 bit windows using 32 bit SQL Server. We are being asked to now deploy to servers running 64bit windows and 64bit SQL Server. Are there issues? Differences? Should we switch our dev environment to 64bit. What is the advantage of going with 64 bit servers other than being able to address more memory? Thanks, Gary
3
1652
by: eschneider | last post by:
Just some common issues with WS: Using custom objects: When objects change, seems you are always fixing some issue. Update references, which sometimes does not work. Deployment: Weird errors which take a while to fix because the error stink: Forget to set ASP.NET 2.0="Parser Error Message: Could not load type" '*.Global' is ambiguous: it could come from assembly=I deleted the
0
8256
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8189
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8356
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8497
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7184
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6118
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4193
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2621
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1803
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.