473,786 Members | 2,611 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Replacement for Access 97

Hi all,

One of our customers who has been using Access 97 for a long time has
made a strategic decision to move to Oracle 10G. However, they are used
to the simplicity of creating forms and defining business rules in
Access. I am wondering if anyone knows of a commercial product on
Windows that will let you easily define business rules and create forms
with the simplicity of Access.

Thank you in advance for your help.

Pradeep

Feb 4 '06 #1
9 2022
Per Pradeep:
I am wondering if anyone knows of a commercial product on
Windows that will let you easily define business rules and create forms
with the simplicity of Access.


Why not just point MS Access at the Oracle tables?
--
PeteCresswell
Feb 4 '06 #2

"Pradeep" <pr*****@tapadi ya.net> wrote in message
news:11******** *************@g 44g2000cwa.goog legroups.com...
Hi all,

One of our customers who has been using Access 97 for a long time has
made a strategic decision to move to Oracle 10G. However, they are used
to the simplicity of creating forms and defining business rules in
Access. I am wondering if anyone knows of a commercial product on
Windows that will let you easily define business rules and create forms
with the simplicity of Access.


Short answer: no. Even Access 97.
Feb 4 '06 #3
Most effective/efficient answer is probably to create stored procedures
and triggers in Oracle to enforce your business rules, and then call
them in your Access FE.

Hey, converting to Oracle isn't that easy. That's the cost of power, I
guess.

Feb 5 '06 #4
Thank you all for your help. After going through the requirements
carefully, we proposed using Visual Studio 2005 for rapid form
development and the customers has accepted the proposal.

Pradeep

Feb 6 '06 #5
Maybe you missed the anawers you were given... use Access.
--

Terry Kreft
"Pradeep" <pr*****@tapadi ya.net> wrote in message
news:11******** **************@ o13g2000cwo.goo glegroups.com.. .
Thank you all for your help. After going through the requirements
carefully, we proposed using Visual Studio 2005 for rapid form
development and the customers has accepted the proposal.

Pradeep

Feb 6 '06 #6
oracle also has a development suite, oracle forms / reports that is
integrated with their environment

Feb 6 '06 #7
Terry Kreft wrote:
Maybe you missed the anawers you were given... use Access.


I agree.

If your customer is proficient with Access (and I'd recommend going to
2003 from 97), why not simply structure the database in Oracle and use
Access to write the forms? You can use the Jet SQL dialect using ODBC
linked tables or you can use Oracle SQL using pass through queries (my
preference) or even ADO (however, ADO falls short in writing reports in
the mdb reports collection).

There are a number of us here who use Access with oracle quite regularly
and would be happy to help as we can with any challenges you/your
customer may encounter.

Whether one uses Access/Jet or another database engine, the design steps
in determining and mapping out a structure and corresponding constraints
(relationships) is quite similar.
--
Tim http://www.ucs.mun.ca/~tmarshal/
^o<
/#) "Burp-beep, burp-beep, burp-beep?" - Quaker Jake
/^^ "Whatcha doin?" - Ditto "TIM-MAY!!" - Me
Feb 6 '06 #8
"Pradeep" <pr*****@tapadi ya.net> wrote in
news:11******** **************@ o13g2000cwo.goo glegroups.com:
Thank you all for your help. After going through the requirements
carefully, we proposed using Visual Studio 2005 for rapid form
development and the customers has accepted the proposal.


How idiotic.

--
David W. Fenton http://www.dfenton.com/
usenet at dfenton dot com http://www.dfenton.com/DFA/
Feb 6 '06 #9
"David W. Fenton" wrote
Thank you all for your help. After going
through the requirements carefully, we
proposed using Visual Studio 2005 for
rapid form development and the customers
has accepted the proposal.


How idiotic.


David confirms again that he is not always tactful, but is very perceptive.

On the other hand, we have not gone through Pradeesh's customer's
requirements carefully -- it could, perhaps, be a humungous, intergalactic,
enterprise web-based application, for which VS would be better than Access.

"Rapid form development" does not necessarily imply Rapid Application
Development (RAD). I have seen no examples indicating that Visual Studio is
a useful tool in the area that we have come to call "Rapid Application
Development" (RAD), when compared with Access as a front-end that can be
linked to different backend databases.

Larry
Feb 7 '06 #10

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

Similar topics

8
2721
by: Google Mike | last post by:
I need an Application object replacement. I was creating my own using shared memory -- shm* API in PHP. I was doing fine for 6 months until it just got too fat, I guess, and the RH9 Linux server just started "losing its memory". I don't know -- perhaps I'm doing something wrong, perhaps it's my code, or perhaps there's a limitation on what I'm trying to do here. It's too many lines of code to debug right now. I'm searching for...
13
1526
by: Dave Boland | last post by:
The other day I was asked if there is an open source replacement for VB6 that is cross-platform. I spent a little bit of time at Barnes-Noble and looking at news groups, but don't have a good answer. Hope you can help without geting into a language war. These will be for commercial applications with a GUI. What they seem to be looking for is: 1. High level language, but not necessarly VB compatible. 2. OOP 3. Reasonalble learning...
92
6543
by: Reed L. O'Brien | last post by:
I see rotor was removed for 2.4 and the docs say use an AES module provided separately... Is there a standard module that works alike or an AES module that works alike but with better encryption? cheers, reed
53
4968
by: Kerberos | last post by:
I followed Dan Cederholm's image replacement tutorial, to replace a header tag by a logo. The h1 is clickable if no CSS is applied but it I replace it by the logo, the area isn't clickable anymore when I pass the mouse over the logo. Is there a way to replace a link by an image that will still be clickable? Thanks, -- Kerberos.
3
9746
by: Vibha Tripathi | last post by:
Hi Folks, I put a Regular Expression question on this list a couple days ago. I would like to rephrase my question as below: In the Python re.sub(regex, replacement, subject) method/function, I need the second argument 'replacement' to be another regular expression ( not a string) . So when I find a 'certain kind of string' in
13
2476
by: Randy Jackson | last post by:
Hello, I'm creating a sample portfolio application for MS-Access XP, and I'm wondering if there's a suitable replacement for the ms-access textbox control. I'm looking for something similar to an HTML textarea control, but without rich text formatting. I know you can just use a regular textbox and expand it, but it still has size limitations that I'm needing to overcome.
2
1217
by: Mad_Gerbil | last post by:
Scenario: We have several SQL 2000 servers that our employees use by linking tables through Access XP. They have read only access to several tables and views – they also write their own views to get the data in a form that is useful for them. The problem is that the users are in a habit of not linking to the tables, but rather, importing the data. This is a problem because despite numerous warnings against unsafe practices they...
1
2332
by: lawrence k | last post by:
Want to replace the limit clause in a query, but can't get it right. What's wrong with this: $pattern = "(.*)limit (.*)"; $replacement = '$1'; $replacement .= "LIMIT $limit"; $replacement .= '$2'; $query = preg_replace ($pattern, $replacement, $query);
0
902
by: ryano | last post by:
Hi All, I have a web project which references many other projects for data access layers, business logic etc and I'd like to define a central location for resources. At present I'm using the built-in localisation facilities with web pages which restricts the location of those resources to the web project only, for example; <asp:Label Text="<%$ Resources:Language, BUTTONTEXTPHRASE %>" ID="xxx" runat="server" />
3
2288
by: =?Utf-8?B?RHVrZSAoQU4yNDcp?= | last post by:
I've added a web deployment project and want to use the config section replacement but I'm obviously not understanding something. I have set up an alternate appSettings file, test.appSettings.config, and when I build the appSettings are correctly overridden, but I also end up with a copy of test.appSettings.config in my web site. If I have config sections for several environments they all get copied. How do I stop the copy? I wondered...
0
9650
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
9497
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,...
0
10363
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10164
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10110
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
8992
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...
0
6748
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5534
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3670
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.