|
-
Aug 14th, 2001, 01:19 PM
#1
Thread Starter
PowerPoster
Is it legal?
Is it legal to use and distribute access or SQL database in your application?
-
Aug 14th, 2001, 01:20 PM
#2
PowerPoster
Yes, provided you don't distribute access as well.
-
Aug 14th, 2001, 01:25 PM
#3
-
Aug 14th, 2001, 01:32 PM
#4
Addicted Member
C:\NUL\NUL
What is this "secrete" place thing supposed to do? All I see is Page not found.
se·crete1 (s-krt)
tr.v. se·cret·ed, se·cret·ing, se·cret·es
To generate and separate (a substance) from cells or bodily fluids: secrete digestive juices.
-
Aug 14th, 2001, 01:39 PM
#5
Member
I'm guessing you replied to the wrong thread, Rye.
-
Aug 14th, 2001, 01:40 PM
#6
PowerPoster
No he didn't, look at abdul's sig
-
Aug 14th, 2001, 01:42 PM
#7
Member
Me have sigs off. They annoy me.
-
Aug 14th, 2001, 01:43 PM
#8
PowerPoster
you even have to be careful about reselling third party software licenses with your app. Some (if not most or all) companies require some sort of resellers agreement before you can do it legally.
-
Aug 14th, 2001, 01:59 PM
#9
Thread Starter
PowerPoster
Then how do people create database applications? They use some kind of ADO or DAO technology..right?
-
Aug 14th, 2001, 02:00 PM
#10
PowerPoster
you dont need Access for that (ADO connection to an mdb)
-
Aug 14th, 2001, 02:04 PM
#11
Black Cat
I believe you can freely distribute the MDAC components (ADO, OLEDB Providers, etc) for connectivity.
The "secrete place" link is an old trick, because pointing older, unpatched versions of win 95/98 to hardware addresses would cause them to crash.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Aug 14th, 2001, 02:04 PM
#12
Thread Starter
PowerPoster
But I still create a mdb database. So, is it legal to create mdb database yourself using ADO or DAO and then distribute it?
-
Aug 14th, 2001, 02:05 PM
#13
Member
Why not? I can create HTML files in Dreamweaver, text files in Notepad, graphics in Photoshop, etc.
-
Aug 14th, 2001, 02:08 PM
#14
PowerPoster
The first reply in this thread answered your question.
-
Aug 14th, 2001, 02:15 PM
#15
Addicted Member
Filbert,
All the examples you listed are general file types. Text, HTML, JPG/BMP/GIF. You can use any program to modify these, where as an MDB file is more specialized to access alone. (From what I'm aware of anyway) I think that's what sparked abdul's initial request.
If you can think it....you can code it....
-
Aug 14th, 2001, 02:17 PM
#16
PowerPoster
Originally posted by abdul
But I still create a mdb database. So, is it legal to create mdb database yourself using ADO or DAO and then distribute it?
I understand your line of thinking, but, Access/mdb doesn't share the same relationship as say EXCEL/xls .
Your end user need not have Access on his machine in order to use your ADO application that uses an mdb on his machine.
-
Aug 14th, 2001, 02:18 PM
#17
Simply put, create a setup package. It will contain the data access components that you need. You cannot distribute Access, but you can use those componenets Vb uses to talk to and Access database. Same goes for SQL.
-
Aug 14th, 2001, 02:23 PM
#18
Member
Originally posted by Sibby
Filbert,
All the examples you listed are general file types. Text, HTML, JPG/BMP/GIF. You can use any program to modify these, where as an MDB file is more specialized to access alone. (From what I'm aware of anyway) I think that's what sparked abdul's initial request.
Photoshop uses a proprietary format, PSD.
-
Aug 14th, 2001, 02:26 PM
#19
Well ...
Consider this:
You can create data files in any format you want. I don't think there is any limitation on that. Access is just a software meant to allow a user to view and edit files in a particular format. The DAO and ADO technologies allow you to do the same, but through VB.
Microsoft allows you to distribute the ADO or DAO files along with your VB application as part of the VB or VS license. But since Access is a separate software you cannot redistribute it.
Tomorrow if you cracked the Access file format and created a software with the functionality that Access provides, you could distribute it freely.
.
-
Aug 14th, 2001, 02:28 PM
#20
Thread Starter
PowerPoster
I think you are not getting what I mean so I simply ask:
How people create a database application in vb such as keeping track of students' records or some other database related application?
I just need to know that wether they create an access database or an SQL database, and then open/manipulate that in thier application
-
Aug 14th, 2001, 02:28 PM
#21
PowerPoster
Re: Well ...
Originally posted by honeybee
Tomorrow if you cracked the Access file format and created a software with the functionality that Access provides, you could distribute it freely.
Errrr. i don't think so!! Since when was the file format licenced to other developers?!?!...
-
Aug 14th, 2001, 02:41 PM
#22
Yes abdul you can create your own database viewer/reader/writer that will read an Access/SQL database and that is completely legal.
-
Aug 14th, 2001, 02:48 PM
#23
Well ...
Originally posted by abdul
I think you are not getting what I mean so I simply ask:
How people create a database application in vb such as keeping track of students' records or some other database related application?
I just need to know that wether they create an access database or an SQL database, and then open/manipulate that in thier application
Specifically, yes, because MS grants you the right to redistribute the DLLs which you use to create and manage Access or SQL databases through VB.
.
-
Aug 14th, 2001, 03:00 PM
#24
Thread Starter
PowerPoster
Thanks a lot!
But as I asked the question:
Is that how other people create their application?
And also is there any good web site from where I can get some good tutorials on ADO technology?
-
Aug 14th, 2001, 03:13 PM
#25
PowerPoster
-
Aug 14th, 2001, 03:19 PM
#26
Well ...
Originally posted by abdul
Thanks a lot!
But as I asked the question:
Is that how other people create their application?
And also is there any good web site from where I can get some good tutorials on ADO technology?
Yes, that's how other people write database applications.
Usually, database software makers release some DLL files or APIs so that application developers can make use of their database software as back-end.
With Access, just the DAO/ADO files would do. But with SQL server or Oracle, I think you need to install the client software of the RDBMS.
.
-
Aug 15th, 2001, 06:09 AM
#27
Black Cat
Tomorrow if you cracked the Access file format and created a software with the functionality that Access provides, you could distribute it freely.
Technically, the License Agreements with Visual Studio and other MS developer stuff specifically say you can't use them create programs with the full functionality of Access (or anything that could replace any of MS Office). Then again, you could always just use a Borland compiler, etc.
Josh
Get these: Mozilla Opera OpenBSD
I have books for sale: "MCSD in a Nutshell" and "VB Distributed Exam Cram" - PM me for details. Will also trade for a decent ATX Pentium 2 MB/CPU/RAM combo.
-
Aug 15th, 2001, 06:27 AM
#28
Hyperactive Member
General File Formats
Actually GIF is proprietary to CompuServe but since so many peeps use GIF, CS can't be arsed to do anything . . . .
-
May 15th, 2008, 02:19 AM
#29
-
May 15th, 2008, 03:03 AM
#30
Re: Is it legal?
You do realise that this thread is nearly 7 years old. I suspect the question was answered to the OPs satisfaction then.
-
May 15th, 2008, 07:54 AM
#31
Fanatic Member
Re: Is it legal?
Old thread yes....but you can distribute the Access Runtime if you have a developers license.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|