vote up 9 vote down star
3

Are there any alternatives to MS Access?

Requirements:

  • Portable Database file
  • Integrated form development for data entry
  • No compiling necessary. Can be modified on the fly.


Two more requirements:

  • Available for Linux or Windows
  • Does not have to be free

    EDIT: Emphasised Integrated form development for data entry as the top voted answers for this question, at the time of edit, both recommend a simple database system. The reason why Access is still so hard to replace for simple department level CRUD (and more) applications is the integration of database, data entry forms and reporting tool. Simply recommending a database does not answer the question as posed.

flag

37% accept rate
I added the duplicate tag because this question is pretty close to being a duplicate of this question: stackoverflow.com/questions/29044/… – Onorio Catenacci Oct 21 '08 at 13:55
I removed it per Jeff's comment made here. stackoverflow.uservoice.com/pages/general/… – Keng Oct 21 '08 at 14:19
@Keng, thanks. I was unaware of that comment. – Onorio Catenacci Oct 21 '08 at 14:53

12 Answers

vote up 0 vote down

VistaDB is the only alternative if you going to run your website at shared hosting (almost all of them won't let you run your websites under Full Trust mode) and also if you need simple x-copy deployment enabled website.

link|flag
vote up 2 vote down

I've done a lot of MS-Access development and from a form design standpoint or RAD (rapid application development) standpoint it's hard to beat.

However you can use MS-Access in conjunction with another Database Server that will give you flexibility down the road. My suggestion would be to use Sybase Advantage Database Server. I'm a bit biased as I support the product but we have a free Local server version for you to try out and later you can implement a full client/server setup by simply changing the connection. Advantage DevZone

In the case that you use another database engine you will likely be using ODBC for your connection type which Advantage supports along with JDBC, OLEDB, .NET, PHP, etc.

link|flag
vote up 1 vote down

I've used 4th Dimension in the past. I don't know, however, if it requires compilation - but it can be compiled.

But its design features are extremely friendly in my opinion.

link|flag
vote up 4 vote down

Possibly you missed this Q & A when you searched the site for an answer to this question. You may find some good options there too.

link|flag
Yes, I saw it. Thanks. But I'm willing to pay for the alternative. – lamcro Oct 21 '08 at 14:06
vote up 8 vote down

Your options seem to be:

  1. SQL Server Express. This used to be called the MSDE

  2. SQL Server Compact Edition.

  3. MySQL.

  4. SQLite.

  5. VistaDB.

==========

I'm modifying this to add the only real contender I've found: Kexi

http://kexi-project.org/

I can't say that I've used it, but it looks like it will do everything you want.

link|flag
Do these have the built-in form development features? – Knobloch Oct 21 '08 at 20:06
Kexi is the only one in that list which has the built in form dev features. – Chris Lively Oct 28 '08 at 20:47
SQL Server Compact is not/was not the same as MSDE. MSDE is now called SQL Server Express and has in the past been SQL Server Desktop. SQL Compact is a very lightweight database for use on mobile devices that connect occasionally. – pipTheGeek Mar 25 at 19:03
vote up 2 vote down

FileMaker meets your requirements, although it is not something that I would recommend for collaborative development.

link|flag
vote up 0 vote down

There used to be an awesome product for dos called Q&A this became http://www.lantica.com/ but I haven't looked at it since the dos version.

Alternatively try this wiki page http://en.wikipedia.org/wiki/Comparison_of_office_suites there are some tables of comparisons near the bottom.

link|flag
vote up 4 vote down

You really can't afford to go past SQL Server Compact Edition 3.5 - the newest version is brimming with potential and it runs on both the Windows Desktop and Windows Mobile devices.

The latest version supports LINQ to SQL and the ADO Entity Framework, and also has a Query Editor which can run on a Mobile device. Admittedly, it falls a little short in supporting more impressive T-SQL syntax (and Stored Procedures etc) but it is more than a challenge to Access IMHO. Heck, you can even create a SQL CE database on the fly from C#/VB.net! Although, you would most likely have to do some work in creating the UI you require..

Alternatively, there is VistaDb which has been a longtime challenger in the low footprint, flat file based database arena.

I guess it depends what you want to do with an alternative database? What wall have you hit with MS Access which has you seeking an alternative?

link|flag
Do these suggested alternatives include front-end development tools? – David W. Fenton Oct 24 '08 at 3:07
It depends on what they want to do with it, really. – Rob Sanders Oct 26 '08 at 1:23
vote up 8 vote down

The one that comes with OpenOffice might be what you're looking for, it's called "Base" I believe: http://dba.openoffice.org

I voted for zacherates because I like SQLite too, though.

link|flag
Tried Base once. Did not like it, but I should give it another try. – lamcro Oct 22 '08 at 14:09
vote up -2 vote down

OpenOffice.org

i've never used ms access and even despised it, but recently i had to do some order/customer fiddling on my own so i decided to give it a try and it worked OK at least for my own needs.

link|flag
How do you know if you despise it if you've never used it? – Knobloch Oct 21 '08 at 20:05
-1 for despising something you've never used – Cruachan Mar 25 at 22:47
i have had my share with MSAccess based databases i had to integrate to other systems ;)p – miceuz Mar 26 at 11:52
vote up 10 vote down

SQLite is always my choice for lightweight databases, though it doesn't have a form creator as it's just a database.

SQLite is great because:

  • It's just a library to be called by your application, not a server.
  • There's no configuration.
  • Your database is just a file.

(... and you can use in memory databases for testing, for those addicted to unit tests :)

link|flag
And what is nice with sqlite is that it is without the configuration burden you have with database systems like mysql and so on. – stephanea Oct 21 '08 at 13:35
SQLite does respond to his requirement : "Integrated form development for data entry"? Didn't know that. – Daok Oct 21 '08 at 13:59
Why do people answer a very clear question about a file-based db engine WITH front-end development tools with a suggestion of a database engine only? – David W. Fenton Oct 24 '08 at 3:06
I think the real question is: Why has this been up voted when it didn't answer the question at all. – Chris Lively Nov 6 '08 at 16:03
-1 as it really doesn't answer the question - and why it's so difficult to replace access. SQLLite is great, but portable databases are two a penny. – Cruachan Mar 25 at 18:31
show 1 more comment
vote up 0 vote down

SQLite is awesome.

link|flag
This link goes to a placeholder page. – Toytown Mafia Oct 21 '08 at 13:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.