473,418 Members | 2,290 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,418 software developers and data experts.

Back End/Front End Puzzle

Hi:

I have an application that has a back end and a front end. I need to add a table which is
identical to one in the back end, and then use it for a temporary holing place form some
records. I have done the following:

.. Copied the table in the back end and given the copy a new name
.. Created a table with the identical name to the back end copy in the front end
.. Used the linkage process to link the table reference in the front end with the new
table in the back end.

Changes to the two table are indepnedent if I am just yusing the "back end", but whe gthey
are executed from the "front end" references to the new table also appear to cause
changes in the original back end table. So for example if I try and empty the temp table,
the original table is also emptied. This is not something that is supposed to happen.

Can someone give me the steps required in a back end/front end situation so that a new
table can be created from an original table, and then linked from the front end to the
back end?

Id appreciate It.

John baker
Nov 13 '05 #1
4 2785
John Baker wrote:
I have an application that has a back end and a front end. I need to add a table which is
identical to one in the back end, and then use it for a temporary holing place form some
records. I have done the following:


Why is it necessary for the tables to have the same name? It seems like
a dangerous situation that should be avoided if it could at all be helped.

Nov 13 '05 #2


Sorry.. I didnt make myself clear. the sturcture of the tables will eb the same, the namse
clearly will be different. MasterTransactions Temp will be one and MasterTransactions will
be the other.
John Baker wrote:
I have an application that has a back end and a front end. I need to add a table which is
identical to one in the back end, and then use it for a temporary holing place form some
records. I have done the following:


Why is it necessary for the tables to have the same name? It seems like
a dangerous situation that should be avoided if it could at all be helped.


Nov 13 '05 #3
John Baker <Ba******@Verizon.net> wrote:
I have an application that has a back end and a front end. I need to add a table which is
identical to one in the back end, and then use it for a temporary holing place form some
records. I have done the following:

. Copied the table in the back end and given the copy a new name
Did you delete the link to the old table name in the backend?
. Created a table with the identical name to the back end copy in the front end
Use a temporary MDB instead of the FE as this will lead to bloating.

See the TempTables.MDB page at my website which illustrates how to use a temporary
MDB in your app. http://www.granite.ab.ca/access/temptables.htm
. Used the linkage process to link the table reference in the front end with the new
table in the back end.

Changes to the two table are indepnedent if I am just yusing the "back end", but whe gthey
are executed from the "front end" references to the new table also appear to cause
changes in the original back end table. So for example if I try and empty the temp table,
the original table is also emptied. This is not something that is supposed to happen.
Why not just create your temp table new each time? Others will suggest you keep a
copy of the temp MDB and copy it across as required.
Can someone give me the steps required in a back end/front end situation so that a new
table can be created from an original table, and then linked from the front end to the
back end?


The above temp tables MDB will give you a starting point.

Tony
--
Tony Toews, Microsoft Access MVP
Please respond only in the newsgroups so that others can
read the entire thread of messages.
Microsoft Access Links, Hints, Tips & Accounting Systems at
http://www.granite.ab.ca/accsmstr.htm
Nov 13 '05 #4
Tony Toews <tt****@telusplanet.net> wrote:
John Baker <Ba******@Verizon.net> wrote:
I have an application that has a back end and a front end. I need to add a table which is
identical to one in the back end, and then use it for a temporary holing place form some
records. I have done the following:

. Copied the table in the back end and given the copy a new name


Did you delete the link to the old table name in the backend?


NO -- I DID NOT REALIZE THAT THERE WAS A LINK. HOW DO I REMOVE IT?

THIS IS THE PROBLEM IM CERTAIN!
. Created a table with the identical name to the back end copy in the front end


Use a temporary MDB instead of the FE as this will lead to bloating.

See the TempTables.MDB page at my website which illustrates how to use a temporary
MDB in your app. http://www.granite.ab.ca/access/temptables.htm
. Used the linkage process to link the table reference in the front end with the new
table in the back end.

Changes to the two table are indepnedent if I am just yusing the "back end", but whe gthey
are executed from the "front end" references to the new table also appear to cause
changes in the original back end table. So for example if I try and empty the temp table,
the original table is also emptied. This is not something that is supposed to happen.


Why not just create your temp table new each time? Others will suggest you keep a
copy of the temp MDB and copy it across as required.
Can someone give me the steps required in a back end/front end situation so that a new
table can be created from an original table, and then linked from the front end to the
back end?


The above temp tables MDB will give you a starting point.

Tony


Nov 13 '05 #5

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

Similar topics

3
by: Matt | last post by:
I always heard people saying IIS ASP front end, and MS-SQL back end. ASP is for server side programming and dynamic content generation, how could it is called front end? Because I thought it is...
3
by: icb | last post by:
Hi I have a front-end/back-end setup. The front-end utilises all unbound forms populating the back-end via the code I have written. All fine so far. Prior to splitting the database I ran the...
4
by: Tempy | last post by:
I am not a programmer, but love to dabble with VBA, mainly in Excel, but I have made an Access data base which is getting a bit outa hand for me!! I am using it to display information only; as a...
1
by: Julia | last post by:
Hello there. I have a question somewhat related to this topic, and I don't know where else to go. I hope somebody can help. I've created a database in access, that I'd like to share with less...
1
by: xavier vazquez | last post by:
I have a problem with a program that does not working properly...when the program run is suppose to generate a cross word puzzle , when the outcome show the letter of the words overlap one intop of...
0
by: xavier vazquez | last post by:
have a problem with a program that does not working properly...when the program run is suppose to generate a cross word puzzle , when the outcome show the letter of the words overlap one intop of the...
5
by: The alMIGHTY N | last post by:
Hi all, Let's say I have a simple math formula: sum (x * y / 1000) / (sum z / 1000) I have to do this across 50 items, each with an x, y and z value, when the page first loads AND when a...
4
by: honey777 | last post by:
Problem: 15 Puzzle This is a common puzzle with a 4x4 playing space with 15 tiles, numbered 1 through 15. One "spot" is always left blank. Here is an example of the puzzle: The goal is to...
25
by: zmickle | last post by:
Excuse my noobness. I am managing an access database that is shared by 4 users. Management does not want to use any technologies outside of access for this application (no SQL Server, etc). I...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
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...
0
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,...
0
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...
0
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...

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.