English 中文(简体)
查阅数据库的替代物
原标题:Access Database Alternatives

Ok before I interpret... 我知道,基本上不应再使用准入。

现在,我的申请使用其可携带性,即其内部应用,使私人/内部数据库的储存成为天花。

问题在于,它使用了64个轨道操作系统中得不到支持的4.0号联合技术,而且坦率地说,这还没有得到很好的执行。

我正在使用C# NET视力演播室。 我正在寻找一种办法,与一些其他数据库类型一道这样做,这些数据库不需要我安装用户电脑上的任何东西。 我看一看三肢,但视力演播室无法轻易执行。

一种想法?

最佳回答
问题回答

我建议制度。 Data.Sqlite ( http://sqlite.phxsoftware.com/), a management, open-source ADO。 开放源地Sqlite数据库周围的净包装。 无需安装——你只是将单一的DLL列入你的解决方案。 它留下了小足迹、加密和良好性能。

服务器快报版应配备视觉演播室。 它是安装时间的一种选择,国际排雷中心。

Access has a couple of key characteristics: - Single-user - Requires installation

对于替代措施,(至少):

  • SQL Compact (doesn t require installation, single-user)
  • SQLite (doesn t require installation, single-user--although multi-user is supported)
  • SQL Express (multi-user, requires install)

正如已经提到的那样,CE是一个很好的选择。 如果数据不是私人数据,那么你也可以考虑Xml(如果你使用无障碍环境,这种数据很可能是这样)。 Xpath提供了通常从数据库查询和储存中需要的许多特点。 你也没有必要安装任何东西。

你们是否尝试了H2?

H2的主要特征是:

Very fast, open source, JDBC API  
Embedded and server modes; in-memory databases  
Browser based Console application  
Small footprint: around 1 MB jar file size  

检查执行情况:

http://www.google.ba/search?sourceid=chrome&ie=UTF-8&q=C%23+h2+database

这是人们继续使用准入的原因之一。 当然,你想要一个简单的解决方案,不需要在客户方面安装任何装置。

迄今为止,你们的用户都与你的服务器脱节。 如果他们能够联系,你就能够自由回家。 如果你需要支持只读取的互不关联的使用,那么问题就更小了,如果你需要从互不关联的用户中提取最新数据的话。

你能告诉我们你需要什么?

rel=“nofollow noreferer”>Fire鸟类可作为进入的非常好的替代办法,而且具有很好的净司机

Here,是《火灾鸟类床位》与《契约》服务器版之间的比较

如何使用XML? 便于使用,并可在任何平台上开展工作。 如果你不熟悉《公约》,就不执行《公约》,但是,一旦你学习如何工作,就会 pre。





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签