创建手持式数据库应用程序时使用什么
哪种程序/编程语言最适合在 Windows 5 CE 手持式扫描仪上创建类似 Access 的数据库?
我们已经尝试过 Visual CE,但它并不是我们真正可以使用的东西。 最终,我们希望构建一个系统,在其中扫描条形码,从下拉列表中选择用户,选择部门、位置以及从一个位置移动到另一个位置的基本选项。 Access 对于此来说是完美的,但我似乎找不到任何类似的东西。
任何建议,将不胜感激。
What program/programming language would be ideal for creating an Access like database on a Windows 5 CE hand held scanner?
We have tried Visual CE but it is not really something we can work with. Ultimately we would love to build a system where we scan a bar code, select a user from a drop down list, select basic options of division, location and moving from one location to another. Access would be perfect for this, but I cannot seem to find anything comparable.
Any suggestions would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在运行 Windows CE 的条形码扫描仪(如符号技术扫描仪)上。 您可以轻松地使用 Visual Studio 2005 和 2008,并在 VB.net 或 C# 中进行开发(尽管它至少需要这些烦人的专业版本)。 对于数据库后端,有一个 SQl Server Ce,它是 SQL Server 的较小版本,设计用于在 ce 设备上运行。
On a barcode scanner (like the symbol technology ones) running windows CE. You can easily use Visual Studio 2005 and 2008 and do your development in VB.net or C# (Though it requires at least the professional version of these annoyingly). For a database backend, there is a SQl Server Ce that is a smaller version of SQL server designed to run on a ce device.
我将使用 SQLite 作为应用程序的数据库后端。 它在嵌入式设备中运行良好。 它广泛使用,您可以获得专业支持。
I would use SQLite as the database backend for your application. It works well in embedded devices. It is widely used and you can get professional support.