帮助开始在 Android 上使用 SQL 数据库吗?

发布于 2024-11-19 20:27:48 字数 307 浏览 5 评论 0原文

我对数据库的经验为零,正在寻找入门方向。我正在制作一个Android应用程序,需要快速读取大量数据......最终这将是一个访问实时股票信息的股票市场应用程序。但在我花钱尝试访问此类实时数据之前,我正在使用一个 Microsoft Excel 文件,其中包含过去股票的时间和信息。

我已经阅读了数据库,显然 Android 附带了 SQLite,但我不知道如何开始使用它,或者如何导入我的 excel 文件。

请帮助我开始或为我指明正确的方向。我找到了一些教程,但由于我完全缺乏经验,它们对我来说很难遵循,并且不一定与我的项目相关;我需要非常基本的分步说明......

I have zero experience with databases, and am looking for some direction in getting started. I am making an Android app that needs to read in a large amount of data quickly... Eventually this will be a stock market app that accesses real-time stock information. But before I spend money trying to get access to such real-time data, I'm working with a Microsoft excel file that has times and information on stocks from the past.

I've read up on databases and apparently Androids come with SQLite but I can't figure out how to start using it, or how to import my excel file.

Please help get me started or point me in the right direction. I've found some tutorials but they were difficult for me to follow with my complete lack of experience, and not necessarily related to my project; I'd need really basic step-by-step instructions...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情仇皆在手 2024-11-26 20:27:48

这是执行此操作的一种方法,仅考虑您需要的数据,而不是尝试将所有电子表格数据放入 SQLite 数据库中。

因此,考虑学习基本的 SQL 和 SQL 查询并创建您需要的表(在一张纸上),以及如何操作这些表中的数据(更新、插入、删除等)。

现在您已经有了表架构和查询,剩下的任务就是将此数据导入到表中。为此我还没有这样做,但我相信您会在互联网上找到很多资源。

现在,正如您所看到的,看似复杂的问题已分解为切实可行的步骤。

这里是一个关于 SQLite 的合理教程。 这里是另一个针对 SQLite 和 Android 的。您可以通过谷歌获取更多帮助。

另请查看此处。该博客讨论了从 Excel 导入 SQLite DB。

Here is one way of doing this, think only in terms of data you need, rather than trying to get all spreadsheet data into your SQLite DB.

So, think in terms of learning basic SQL and SQL queries and create the tables (on a piece of paper) you need, how you will manipulate the data in these tables (updates, inserts, deletes etc).

Now that you have the table schema and your queries, the task remains of importing this data into the tables. For this I haven't done this but I am sure you will find a lot of resources on the Internet.

Now, as you can see, the seemingly complicated problem is broken into tangible actionable steps.

Here is a reasonable tutorial on SQLite. Here is another for SQLite and Android. You can google for more help.

Also take a look here. The blog talks about importing from excel into SQLite DB.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文