English 中文(简体)
Excel的历史数据库
原标题:In-memory Database in Excel

我正在寻找途径,从进入Excel变量中进口一个数据表,然后通过这一变量进行查询,以加快这一进程。 我正试图从C# .NET中迁移,我从一个检索数据库读到一个数据表,以备记忆,然后利用LINQ来查询这一数据集。 它是比我目前在全球银行注册的更快的,我在那里必须向实际数据库发出大量电话,而该数据库进展缓慢。 我看到了《可塑炸药》,但似乎这要求将数据整理成单。 我要随时回顾一下,尽可能把Excel Sheet和VBA代码之间的互动减少到最低限度。

我希望我们确实需要利用Excel+VBA来这样做,但现在我们又不喜欢这样做。 得到帮助!

最佳回答

我只读到ADO记录片,然后按我的需要从记录中获得我所需要的数据。 当然,这将取决于你希望读到的桌子的大小。

问题回答

我不知道像VBA的LINQ一样。

如果你通过公布《反歧视法》的链接方案,就可以对它进行谴责。 它不是像LINQ那样快,而是比制造和摧毁每一次电话的连接物体更快。

如果表格数量太大,我倾向于将表格读到与适当的父母/子女关系相关的传统班级。 很显然,这背后是,你可以利用Q,从你的班子获取数据记录。 当我需要不止一个具体记录时,我不得不使用许多 lo。 这意味着,如果你有1米记录,就会更快地打电话给数据库。

If you re interested in the last one, you can read some of the stuff I ve written on it here http://www.dailydoseofexcel.com/archives/2008/12/07/vba-framework/

http://www.daily Treatmentofexcel.com/archives/2008/11/15/creating-classes- from-access-tables/

> > > > >评论”。





相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签