473,738 Members | 8,397 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Access or FoxPro?

I am a newcomer to databases and am not sure which DBMS to use. I have
a very simplified knowledge of databases overall. I would very much
appreciate a (simplifed) message explaining the advantages and
disadvantages of both programs.

Many Thanks

Simon
Nov 12 '05 #1
13 13349
I would have say that since you asked the question in a ms-access newsgroup,
then you kind of have to expect some leaning towards using ms-access.

The other issue is how much previous development experience you have. If you
done a lot coding, and prefer a OO approach to application development, then
you certainly might find FoxPro your cup of tea.

If you spend a lot of time coding in a language like VB, then you will find
ms-access a lot easier to learn. (in fact, the programming language you will
use to write code in ms-access is really the same as VB, but the forms are
different).

About the only real downfall of FoxPro is that there is not as large of a
user base, and there are more books, web sites, and newsgroups for
ms-access.

Further, you also realize that products like ms-access are not really a
database system anymore. ms-access is a front end tool that lets you develop
reports, forms, and write code. The database engine is a separate issue.
When you purchase a database system like Oracle, or sql-server, you only get
a box that lets you store data. You still have to write the application and
the user interface using some tools. Those tools could be a web interface,
or VB or even ms-access.

Thus, one should keep in mind the separation between the database system, or
so called database engine, and the application development tools you use.

Thus, one should view ms-access as a application development tool, and not a
database. In fact, the office cd ships with two database engines. You can
choose to use either database engine with ms-access.

Both ms-access or FoxPro make good development tools that can connect to
your database engine of choice.

Microsoft has marketed the FoxPro environment more to developers, and
ms-access has been marketed more towards end users. Thus, ms-access is
considered easier to learn.

FoxPro also has some advantages in distribution of the final application.
However, those advantages are not that great if you use 3rd party tools for
ms-access. Many people will argue that the database engine for FoxPro in a
file share is more reliable then the JET engine for ms-access in a file
share (however, every FoxPro developer I know has suffered some form of
index corruption).

So, if you are in need of a application development platform that is Object
Orientated all the way, then FoxPro might be your ticket. If you need
something that will get you up and running a lot faster, then Ms-access is
probably the way to go.

Much will depending on your previous programming experience. If you don't
have a lot of development experience, then I would bet on ms-access.

However, don't count ms-access out as a serous development tool either. You
can create class objects, and any project you attempt in ms-access still
should be planned in detail.

Here is a article of mine on using class objects to give you and idea of
what I mean:

http://www.attcanada.net/%7ekallal.m.../WhyClass.html
Also, here is some notes on a project I did in ms-access, you might again
find this a good read:

http://www.attcanada.net/%7ekallal.m...000000003.html

--
Albert D. Kallal (MVP)
Edmonton, Alberta Canada
ka****@msn.com
http://www.attcanada.net/~kallal.msn

Nov 12 '05 #2
I am far from being an expert in either Access or Foxpro. I did a lot of
programming in Dbase, Foxbase and Foxpro 2.6. I have used Access for several
years, but just recently started development.

I probably just don't know how to do it in Access yet, but I miss the tools
I had in Foxpro to operate on individual records:

In Foxpro you can program a loop to skip (randomly) through each record in a
table and perform operations on individual records (ie calculate a running
total). In Access you operate on records as a group.

The Foxpro scatter/gather commands are quick ways for a screen to operate on
variables rather then directly on live data.

Foxpro records when deleted are not gone until you pack the table.

I find there are always to do things I need in Access, and plenty of help on
the web. I would say, at least for my level of knowledge, Access seems to
have more of a finesse way of doing things where Foxpro you can power your
way through.

My two cents worth
Bill.

Nov 12 '05 #3
to much SPAM to list here.com (BillB) wrote in
<vp************ @corp.supernews .com>:
I probably just don't know how to do it in Access yet, but I miss
the tools I had in Foxpro to operate on individual records:

In Foxpro you can program a loop to skip (randomly) through each
record in a table and perform operations on individual records (ie
calculate a running total). In Access you operate on records as a
group.
There are some things that can't be done with a SQL update query.
And a running total probably doesn't belong stored in a table, in
any event!

For sequentially stepping through records in Access, you'll want to
look into recordsets. If you're storing your data in an MDB file,
use DAO. If you're using SQL Server for your data, ADO will
probably be more useful. Both have Recordset objects, though they
don't have the same properties and methods.
The Foxpro scatter/gather commands are quick ways for a screen to
operate on variables rather then directly on live data.
Sounds like an unbound form in Access.

Access is definitely prejudiced towards bound data. And that's a
good thing, most of the time. When you need to work around it's
problems, then it becomes more complex.
Foxpro records when deleted are not gone until you pack the table.
I've seen dBase applications where someone used a DELETE to filter
the records for a certain purpose, and then didn't undelete them.
They gradually lost more and more data from their database and
didn't discover it until years later.

I don't see any advantage to having that capability -- if a record
should be deleted, it should be deleted.

Of course, in most applications, there's not much place for
actually deleting records, because if you're records are related to
records in other tables, you likely need to keep the record for the
purpose of maintaining its relationships with other data. Because
of that, most of the time you don't want to actually delete
records, you just want to have a flag field that indicates that the
record has been "retired." Then you filter out those records from
your active data sets.

It can be very complex, actually, because for some tasks you may
wat the deleted records to show, and in others you don't.

Not a trivial subject.
I find there are always to do things I need in Access, and plenty
of help on the web. I would say, at least for my level of
knowledge, Access seems to have more of a finesse way of doing
things where Foxpro you can power your way through.


Sounds to me like Access forces you to do it right, whereas FoxPro
allowed you to kludge your way to a result that seemed to work.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #4
"BillB" <to much SPAM to list here.com> wrote in message
news:vp******** ****@corp.super news.com...
I am far from being an expert in either Access or Foxpro. I did a lot of
programming in Dbase, Foxbase and Foxpro 2.6. I have used Access for several years, but just recently started development.
I also did a good stint in the old FoxPro 2.6 days. As mentioned, the new
version of FoxPro is a true Object Orientated development platform now, and
bears little resemblance to what the old FoxPro was. However, we can create
class objects in ms-access, and I generally find that to be more then
adequate.


I probably just don't know how to do it in Access yet, but I miss the tools I had in Foxpro to operate on individual records:


I did a bit at first, but now I don't even think about this fact. I mean,
for most looping and update stuff you can, and should use sql. However, it
is not a lot of code to traverse a table, and do things. The basic loop to
do this is:

dim rstRecs as dao.RecordSet
set rstRecs = currentdb.OpenR ecordSet("yourT able")
do while rstRecs.Eof = false
debug.Print rstRecs!lastnam e
rstRecs.MoveNex t
loop

rstRecs.Close
set rstRecs = nothing
The above is a standard base record processing loop in ms-access, and it
certainly is not any more code then is the old FoxPro. The above just prints
all the lastname fields to the debug window. (and the debug window in
ms-access is certainly your .dot prompt in FoxPro. I could modify the above
to do a replace, such as:

do while rstRecs.Eof = false
if rstRecs!City = "N. Y" then
rstRecs.Edit
rstRecs!City = "New York"
rstRecs.Update
endif
rstRecs.MoveNex t
loop

Of course, the above can be written with one line of code to run a sql
statement, but the above does show that you can do old fashioned record
processing in ms-access. And, once again, the amount of code is very similar
to what you had in FoxPro. You can even send the record pointer to a
absolute position. Of course, in FoxPro we would use the "replace" command.
However, I was just pointing out how a basic record processing loop in
ms-access works, and it is very similar to old fox.

However, the one line of code to replace all the above in ms-access would
be:

currentdb.Execu te "update yourTable set City = 'New York" where City = 'N.
Y'"

So, you can certainly code your record update stuff, but it just we don't
need to very much.

--
Albert D. Kallal (MVP)
Edmonton, Alberta Canada
ka****@msn.com
http://www.attcanada.net/~kallal.msn

Nov 12 '05 #5
NO************@ msn.com (Albert D. Kallal) wrote in
<zzDlb.148900$9 l5.58298@pd7tw2 no>:
However, the one line of code to replace all the above in
ms-access would be:

currentdb.Exec ute "update yourTable set City = 'New York" where
City = 'N. Y'"

So, you can certainly code your record update stuff, but it just
we don't need to very much.


And doing it sequentially will probably be more than one order of
magnitude slower than doing it with a SQL update.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc
Nov 12 '05 #6
The two applications are similar in many ways -
- they both are used for rapid application design of data centric
applications
-they both contain a report and form designer
-they both can use local database engines (JET/DBF) or serve as
front-end to server database engines (SQL Server)
-they both can process information via SQL or individually processing
each record
-they both contain technology "rushmore" for fast selection of data
using indexes (technology obtained from Fox Company which was bought
by Microsoft)
-they both can allow the developer to distribute applications royalty
free.

The biggest difference is that Access is part of Microsoft Office,
whereby Visual FoxPro is sold seperately (or part of certain MSDN
subscriptions). Access integration into the Office suite is superior,
and many users may have Access on their computers.

But such integration can cause implementation issues - users have
different versions of Access/Office than you, or they upgrade their
Office after you implement the system. This is not an issue if your
are not distributing over a large base of users; but can be an issue
if you are. And, there are tools to help you install Access over a
wide user base.

VFP does not have similar issues. It is a seperate development tool.
One of the draw backs is that potential customers may feel more
comfortable with you developing in Access than VFP, which is not as
widely known or used.
Steven


On 22 Oct 2003 04:04:02 -0700, go*********@hot mail.com (Simon Bailey)
wrote:
I am a newcomer to databases and am not sure which DBMS to use. I have
a very simplified knowledge of databases overall. I would very much
appreciate a (simplifed) message explaining the advantages and
disadvantage s of both programs.

Many Thanks

Simon


Nov 12 '05 #7

I've used FoxPro and Visual Fox Pro since 89' and Access since 98'. I
definitely prefer FoxPro for what I would call middle sized applications, 6+
users and maybe some larger tables, say over 500,000 records.

I think the programming language is clearer, I like the oo setup, the
ability to create controls and then subclass them, and the very direct way
of handling tables, both procedurally and with SQL. There are a lot of
things I think are bad about Access: especially the "one big file" approach
which I think fosters file corruption and makes it diffuclt to isolate and
repair and what I think is the sloppiness in the referring to objects.

However, most of my work is now in Access for several reasons: there are
very few FoxPro programmers left, it looks like MSFT is finally going to
drop the product, corporate MIS people are very prejudiced against it, and
since almost everybody in the corporate world has heard of Access and maybe
even has it on their computer, they tend to think that they "already have
the software".

There are a couple of things going for Access. It is great for writing
reports, I think the query builder works really well, and if you make a
successful Access application, it won't be too long before your customer
will want to upgrade to SQL Server and some sort of other front end, so it
tends to keep your customers coming back.

If I'd had my druthers, MSFT would have marketed VFP and it would be where
it should be, a great tool for mid-sized applications which are too
complicated for the casual user. But it has come to where there is no way I
can recommend VFP to anybody, mainly because so few people use it anymore.

Mike Thomas


"Albert D. Kallal" <NO************ @msn.com> wrote in message
news:73zlb.1495 33$pl3.127202@p d7tw3no...
I would have say that since you asked the question in a ms-access newsgroup, then you kind of have to expect some leaning towards using ms-access.

The other issue is how much previous development experience you have. If you done a lot coding, and prefer a OO approach to application development, then you certainly might find FoxPro your cup of tea.

If you spend a lot of time coding in a language like VB, then you will find ms-access a lot easier to learn. (in fact, the programming language you will use to write code in ms-access is really the same as VB, but the forms are
different).

About the only real downfall of FoxPro is that there is not as large of a
user base, and there are more books, web sites, and newsgroups for
ms-access.

Further, you also realize that products like ms-access are not really a
database system anymore. ms-access is a front end tool that lets you develop reports, forms, and write code. The database engine is a separate issue.
When you purchase a database system like Oracle, or sql-server, you only get a box that lets you store data. You still have to write the application and the user interface using some tools. Those tools could be a web interface,
or VB or even ms-access.

Thus, one should keep in mind the separation between the database system, or so called database engine, and the application development tools you use.

Thus, one should view ms-access as a application development tool, and not a database. In fact, the office cd ships with two database engines. You can
choose to use either database engine with ms-access.

Both ms-access or FoxPro make good development tools that can connect to
your database engine of choice.

Microsoft has marketed the FoxPro environment more to developers, and
ms-access has been marketed more towards end users. Thus, ms-access is
considered easier to learn.

FoxPro also has some advantages in distribution of the final application.
However, those advantages are not that great if you use 3rd party tools for ms-access. Many people will argue that the database engine for FoxPro in a
file share is more reliable then the JET engine for ms-access in a file
share (however, every FoxPro developer I know has suffered some form of
index corruption).

So, if you are in need of a application development platform that is Object Orientated all the way, then FoxPro might be your ticket. If you need
something that will get you up and running a lot faster, then Ms-access is
probably the way to go.

Much will depending on your previous programming experience. If you don't
have a lot of development experience, then I would bet on ms-access.

However, don't count ms-access out as a serous development tool either. You can create class objects, and any project you attempt in ms-access still
should be planned in detail.

Here is a article of mine on using class objects to give you and idea of
what I mean:

http://www.attcanada.net/%7ekallal.m.../WhyClass.html
Also, here is some notes on a project I did in ms-access, you might again
find this a good read:

http://www.attcanada.net/%7ekallal.m...000000003.html

--
Albert D. Kallal (MVP)
Edmonton, Alberta Canada
ka****@msn.com
http://www.attcanada.net/~kallal.msn

Nov 12 '05 #8
On Sat, 22 Nov 2003 18:12:14 GMT, "Mike Thomas" <Mi******@Yahoo .com>
wrote:
There are a lot of
things I think are bad about Access: especially the "one big file" approach
which I think fosters file corruption and makes it diffuclt to isolate and
repair and what I think is the sloppiness in the referring to objects.


There is absolutely nothing wrong with storing the data in one big
file. But if that gives one concern, they can always place one table
in a MDB, and then link all the MDBs to a central one. But that is,
IMHO, is clearly an improper approach.

Regarding storing the program objects (e.g. forms, reports, modules,
queries, ...) one should use a seperate MDB. This is a standard
practice in Access development.

SQL Server and other high-end server database engines store all the
data (and triggers, procedures, etc ...) in one big "file".

Steven Zuch
Nov 12 '05 #9
TC
And your question is ... ?

TC
"Mike Thomas" <Mi******@Yahoo .com> wrote in message
news:2G******** **************@ newssvr28.news. prodigy.com...

I've used FoxPro and Visual Fox Pro since 89' and Access since 98'. I
definitely prefer FoxPro for what I would call middle sized applications, 6+ users and maybe some larger tables, say over 500,000 records.

I think the programming language is clearer, I like the oo setup, the
ability to create controls and then subclass them, and the very direct way
of handling tables, both procedurally and with SQL. There are a lot of
things I think are bad about Access: especially the "one big file" approach which I think fosters file corruption and makes it diffuclt to isolate and
repair and what I think is the sloppiness in the referring to objects.

However, most of my work is now in Access for several reasons: there are
very few FoxPro programmers left, it looks like MSFT is finally going to
drop the product, corporate MIS people are very prejudiced against it, and
since almost everybody in the corporate world has heard of Access and maybe even has it on their computer, they tend to think that they "already have
the software".

There are a couple of things going for Access. It is great for writing
reports, I think the query builder works really well, and if you make a
successful Access application, it won't be too long before your customer
will want to upgrade to SQL Server and some sort of other front end, so it
tends to keep your customers coming back.

If I'd had my druthers, MSFT would have marketed VFP and it would be where
it should be, a great tool for mid-sized applications which are too
complicated for the casual user. But it has come to where there is no way I can recommend VFP to anybody, mainly because so few people use it anymore.

Mike Thomas


"Albert D. Kallal" <NO************ @msn.com> wrote in message
news:73zlb.1495 33$pl3.127202@p d7tw3no...
I would have say that since you asked the question in a ms-access newsgroup,
then you kind of have to expect some leaning towards using ms-access.

The other issue is how much previous development experience you have. If

you
done a lot coding, and prefer a OO approach to application development,

then
you certainly might find FoxPro your cup of tea.

If you spend a lot of time coding in a language like VB, then you will

find
ms-access a lot easier to learn. (in fact, the programming language you

will
use to write code in ms-access is really the same as VB, but the forms are different).

About the only real downfall of FoxPro is that there is not as large of a user base, and there are more books, web sites, and newsgroups for
ms-access.

Further, you also realize that products like ms-access are not really a
database system anymore. ms-access is a front end tool that lets you

develop
reports, forms, and write code. The database engine is a separate issue.
When you purchase a database system like Oracle, or sql-server, you only

get
a box that lets you store data. You still have to write the application

and
the user interface using some tools. Those tools could be a web interface, or VB or even ms-access.

Thus, one should keep in mind the separation between the database system, or
so called database engine, and the application development tools you
use.
Thus, one should view ms-access as a application development tool, and not a
database. In fact, the office cd ships with two database engines. You

can choose to use either database engine with ms-access.

Both ms-access or FoxPro make good development tools that can connect to
your database engine of choice.

Microsoft has marketed the FoxPro environment more to developers, and
ms-access has been marketed more towards end users. Thus, ms-access is
considered easier to learn.

FoxPro also has some advantages in distribution of the final application. However, those advantages are not that great if you use 3rd party tools

for
ms-access. Many people will argue that the database engine for FoxPro in a file share is more reliable then the JET engine for ms-access in a file
share (however, every FoxPro developer I know has suffered some form of
index corruption).

So, if you are in need of a application development platform that is

Object
Orientated all the way, then FoxPro might be your ticket. If you need
something that will get you up and running a lot faster, then Ms-access is probably the way to go.

Much will depending on your previous programming experience. If you don't have a lot of development experience, then I would bet on ms-access.

However, don't count ms-access out as a serous development tool either.

You
can create class objects, and any project you attempt in ms-access still
should be planned in detail.

Here is a article of mine on using class objects to give you and idea of
what I mean:

http://www.attcanada.net/%7ekallal.m.../WhyClass.html
Also, here is some notes on a project I did in ms-access, you might again find this a good read:

http://www.attcanada.net/%7ekallal.m...000000003.html

--
Albert D. Kallal (MVP)
Edmonton, Alberta Canada
ka****@msn.com
http://www.attcanada.net/~kallal.msn


Nov 12 '05 #10

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

Similar topics

2
3352
by: djc | last post by:
I need to use data from multiple tables that are located in 2 different databases. Most of the tables are in SQL Server 2000 but 1 one the tables I need to include in my query resides in an Access2002 mdb file. I need to do this via ASP/ADO on IIS5. How do I combine (join in a query) tables from different databases? they are each opened from a different connection object? I have only had to access tables from one source before and I...
2
2757
by: Colin Colin | last post by:
We migrated our intranet site from IIS4 NT4 (\\GHCNT8) to a Windows 2003 server with IIS6 (\\NT58) using the IIS Migration Tools. I have a few ASP pages that access Foxpro data on a different server. I downloaded the Visual Foxpro ODBC Driver from MSDN. I exported (from the registry) the ODBC entries from the old server and imported them onto the newserver. I setup the Internet user guest account with rights where the Foxpro data is...
1
2338
by: jdola | last post by:
I have a customer that is using Access to create reports from FoxPro tables. We started noticing problems with the indexes on the FoxPro tables. It is to the point where we have to delete and rebuild the indexes on a nightly basis. We cannot determine if Access is the culprit and I have not been able to look at the Access reports and determine how he is linking to the tables. I realize this is not much to go on, but does anyone see any...
8
2720
by: Alfred | last post by:
Hi What is the difference between Access and Foxpro and who will use Foxpro. Thanks Alfred
2
6601
by: Salad | last post by:
OS = WinXP & Win98. Access = A97 & AXP Q1) Where can I find the VFP ODBC driver at Microsoft. I have been working developing an app in Access that will link to some DOS FoxPro tables. I have been doing my development work in A97 but the folks have AXP at their site. As near as I can tell, the FoxPro driver has been discarded from A97 and replaced with ODBC in A2K onward
1
3115
by: David Sorber via AccessMonster.com | last post by:
Hello, I've got two questions. Im writing an Access 2000 database to collect data from multiple Visual Foxpro Databases, total some figures, save the data into a table for archiving purposes, and be able print out a report. Im connecting to the Foxpro Databases using ODBC through VB version 6 and my Visual Foxpro Driver is dated at 12/7/1999 version 6.01. 1.When connecting to a particular Foxpro database my access program completely...
37
5237
by: jasmith | last post by:
How will Access fair in a year? Two years? .... The new version of Access seems to service non programmers as a wizard interface to quickly create databases via a fancy wizard. Furthermore, why would you even continue to use Access as a backend when you have a much superior option in SQL express? What about as a future front-end development tool? Let's get serious. Microsoft continues to publish numerous articles and videos on how you...
7
5498
by: z71mdridin | last post by:
I have an asp.net website that uses Form authentication to authenticate users. I need to provide users with a report based on FoxPro data that resides on a remote server. When I attempt to connect to the Foxpro directory by using the ODBC DSN that we currently use in ColdFusion, I get the following message: ERROR File 'table.dbf' does not exist. I know this is probably a permissions issue because asp.net is being
3
5174
by: HistoricVFP | last post by:
Hello, I’ve been given the task of importing .dbf files from a very old version of Visual FoxPro (version 2.1) into Access (2003). When I import the data straight to Access it errors with: External table is not in the expected format. (Error 3274) I’ve tried the following but it did not work: “To import data from a FoxPro database, use the Microsoft Visual FoxPro ODBC driver. To do so, follow these steps: 1. Click Start, and then...
0
8788
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
9476
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
9335
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
9263
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
9208
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
8210
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
6751
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
4570
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
3279
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

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.