<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Extracting one column from Database in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/2480742#M758317</link>
    <description>&lt;P&gt;In the interest of keeping things up-to-date, here are the same drivers I posted all those years ago, converted to LV2012. Enjoy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mike..&lt;/P&gt;</description>
    <pubDate>Wed, 03 Jul 2013 20:42:43 GMT</pubDate>
    <dc:creator>mikeporter</dc:creator>
    <dc:date>2013-07-03T20:42:43Z</dc:date>
    <item>
      <title>Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544341#M256325</link>
      <description>I'm just begging my forray in to using the Database Connectivity tools and I have a couple of queastions (the first of many most likely) that haven't been answered by going through the DB Tools Manual and this forum.&lt;BR /&gt;&lt;BR /&gt;See attached JPEG. I want to extract the first colum of the table because I will use this to populate a selection number ring. I assume from the help file that the "columns" input feature of the Select Data VI will help me do this, but I'm at a loss to know what its looking for. I tried the column name and the column number, that didn't work.&lt;BR /&gt;&lt;BR /&gt;Second question, what is the best method for handling inserting data into a table if it has the Autonumber field as column 1.I want that number to be provided by the Access DB, and I need to skip it it. &amp;nbsp; Its probably tied to the same as above as I notice that the insert VI has an input feature for cloumns as well.&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 29 Jun 2007 23:54:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544341#M256325</guid>
      <dc:creator>Pablop</dc:creator>
      <dc:date>2007-06-29T23:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544349#M256331</link>
      <description>The first thing I would recommend is to not waste your time with the Database Connectivity Toolkit. I make this recommendation because the DCT adds a lot of complexity with no real advantage. Most of the problem I see involve (as in your case) trying to get the toolkit to do something that should be very easy. The attached file is something I put together a while ago to show how easy it is to communicate with Access databases. However, I don't use this code for deliverable applications
because it doesn't incorporate any subVIs. It's point is to demonstrate
the inherent simplicity of the process.&lt;BR /&gt;&lt;BR /&gt;Over the weekend I'll post the VIs I use for connecting to databases. Fetching a single column should be as simple as writing a query that returns the column you need. With my drivers it is. Likewise, inserting data into the database should simply be a matter of executing a command that lists the data to insert into the columns that you choose to populate. Again, with my drivers its simple like it should be.&lt;BR /&gt;&lt;BR /&gt;The structural difference between my drivers and the DCT is that the latter forms a very "thick" layer overlaying the database. The complexity of this layer hides the native database interface substituting it's own proprietary interface. This is a problem because if you have trouble it's not enough to find someone that knows databases. You have to find someone who is familiar with this toolkit.&lt;BR /&gt;&lt;BR /&gt;By contrast, the alternative drivers are a very "thin" layer overlaying the native ADO support from Windows. Hence if you have a problem you can get help from anyone that knows ADO, SQL or the specific database that you are using. Let's face it, there are a lot more people who know databases, SQL and ADO than there are people who know the database connectivity toolkit.&lt;BR /&gt;&lt;BR /&gt;Finally because these alternative drivers are more direct, they are also much more efficient.&lt;BR /&gt;&lt;BR /&gt;Mike...&lt;BR /&gt;</description>
      <pubDate>Sat, 30 Jun 2007 01:46:20 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544349#M256331</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2007-06-30T01:46:20Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544472#M256401</link>
      <description>Here are the drivers that I promised. Please let me know about anything you find in the documentation that you don't understand or doesn't sound right.&lt;BR /&gt;&lt;BR /&gt;Mike...&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 01 Jul 2007 19:43:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544472#M256401</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2007-07-01T19:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544604#M256452</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/3391"&gt;@mikeporter&lt;/a&gt; wrote:&lt;BR /&gt;&lt;BR /&gt;By contrast, the alternative drivers are a very "thin" layer overlaying the native ADO support from Windows. Hence if you have a problem you can get help from anyone that knows ADO, SQL or the specific database that you are using. Let's face it, there are a lot more people who know databases, SQL and ADO than there are people who know the database connectivity toolkit.&lt;BR /&gt;&lt;BR /&gt;Finally because these alternative drivers are more direct, they are also much more efficient.&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;Hmm, this is a bit of a bold statement. The thickest part of accessing databases with ADO is in the ADO layer itself. What the DCT adds to this is in comparison not so thick. It could be that the DCT does some things a bit more complicated than would be strictly necessary to support various use cases, but in general the performance of a database query is rather in the method used than in the interface. For instance using querysets for the OP problem will most likely be the most efficient way to get the data, and the DCT does use them by default if I'm not mistaken.&lt;BR /&gt;I could however be wrong here as I haven't used the DCT myself yet, just looked over it, since I use my own ODBC based database access interface for platform independance reasons. ODBC can work on Linux and MacOS too while ADO/DAO is ActiveX based and for that reason Windows only.&lt;BR /&gt;&lt;BR /&gt;And no, ODBC does not have to be slower if you know what you want to do with the database and have an interface that translates well between the ODBC C API and LabVIEW.&lt;BR /&gt;&lt;BR /&gt;Rolf Kalbermatter&lt;BR /&gt;&lt;/DIV&gt;&lt;P&gt;Message Edited by rolfk on &lt;SPAN class="date_text"&gt;07-02-2007&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;11:14 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2007 09:13:14 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544604#M256452</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2007-07-02T09:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544657#M256468</link>
      <description>I don't see what is so bold about it - more like common sense. Consider that there are literally hundreds of web sites run by consultants, user groups and vendors where people can go with questions and problems concerning ADO, SQL and databases. Unfortunately if you're using the DCT none of these sites are of any use to you because you have the DCT's proprietary interface hiding the software and interfaces that are really doing the work.&lt;BR /&gt;&lt;BR /&gt;I agree with you that ADO is a very think layer - which is largely why I am so reluctant to add another thick layer on top of it. Especially so when it's a layer that seems to add problems and few benefits. Until you have troubleshot a problem of trying to get the DCT to do
something that &lt;I&gt;should &lt;/I&gt;be rather simple, you can't really appreciate how
thick it is itself.&lt;BR /&gt;&lt;BR /&gt;You are also absolutely correct about ODBC not necessarily being slow. Over the past decade the interface (or perhaps the available drivers) has improved considerably making possible things like operating with BLOBs. In addition, as you point out ODBC is now a cross platform solution.&lt;BR /&gt;&lt;BR /&gt;Mike..&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 02 Jul 2007 11:55:37 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544657#M256468</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2007-07-02T11:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544692#M256484</link>
      <description>&lt;DIV&gt;Actually ODBC has been cross platform for many years &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://ni.lithium.com/i/smilies/16x16_smiley-very-happy.gif" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;. unixODBC and libiodbc do exist for quite some time and have worked fairly well even 5 years ago. MacOS ODBC access was another issue, as Apple originally supported it through MacODBC but later abandoned this, probably for licensing cost and support reasons. Now with MacOS X being able to use unixODBC it is also supported.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Speed of ODBC is not only a driver issue but also an issue how you implement the API especially with LabVIEW, since you do not want to go through to many hoops with binary-string-binary data conversions. This is also the area where ODBC access gets difficult since even the best API implementation can not succeed to reduce this overhead if a particular driver does not support certain binary data types. And with any given database interface it is actually a trial and error process if a certain datatype can be directly used.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Rolf Kalbermatter&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;Message Edited by rolfk on &lt;SPAN class="date_text"&gt;07-02-2007&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;03:13 PM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2007 13:06:03 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/544692#M256484</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2007-07-02T13:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/546581#M257228</link>
      <description>Hello Mike,&lt;BR /&gt;&lt;BR /&gt;These VI's look great, thanks, I've already started to use them (and I never did get a response on exactly how to use the DCT).&lt;BR /&gt;&lt;BR /&gt;Just so I'm understanding this correctly: The zipped up Databse ICS files seem to be examples of how you would access a database without either the DCT or your subsequently poseted VI's? Was that the purpose of posting it, to show how it would be done otherwise?&lt;BR /&gt;&lt;BR /&gt;With regard to the set of VI's you ove posted, I may never need all of them, but thanks! I'm using the Open, Close and Create and Read record set rather straighforwardly to load data from my sample database. Which VI would you primarily use to insert, udate and delete data? The Execute SQL VI?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 Jul 2007 20:43:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/546581#M257228</guid>
      <dc:creator>Pablop</dc:creator>
      <dc:date>2007-07-05T20:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/546599#M257240</link>
      <description>&lt;DIV&gt;&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/54383"&gt;@Pablop&lt;/a&gt; wrote:&lt;BR /&gt;Hello Mike,&lt;BR /&gt;&lt;BR /&gt;These VI's look great, thanks, I've already started to use them (and I never did get a response on exactly how to use the DCT).&lt;BR /&gt;&lt;BR /&gt;Just so I'm understanding this correctly: The zipped up Databse ICS files seem to be examples of how you would access a database without either the DCT or your subsequently poseted VI's? Was that the purpose of posting it, to show how it would be done otherwise?&lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;FONT color="#993300"&gt;&lt;B&gt;Not really. You want to use well-structured drivers for deliverable code. The purpose of those VIs is simply to expose the "bare bones" of the process to illustrate that the process is basically pretty simple. I have talked to a lot of people who feel that there is some profound mystery involved in connecting to databases. I wanted to show that there isn't.&lt;/B&gt;&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;With regard to the set of VI's you ove posted, I may never need all of them, but thanks! I'm using the Open, Close and Create and Read record set rather straighforwardly to load data from my sample database. Which VI would you primarily use to insert, update and delete data? The Execute SQL VI?&lt;BR /&gt;&lt;BR /&gt;&lt;B&gt;&lt;FONT color="#993300"&gt;Yes, the Execute VI is for any sort of action that doesn't return data. In addition to inserting, updating and deleting data you can also use it to send SQL DDL (data definition language) statements that modify the structure of the database. This category would include such things as creating tables, adding columns, altering user permissions, etc.&lt;/FONT&gt;&lt;/B&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 05 Jul 2007 21:37:02 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/546599#M257240</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2007-07-05T21:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/546704#M257297</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;Mike, can you backsave those to 7.1\7.0? &lt;BR /&gt;I only had a chance to look at them shortly and I would like to do it in a better environment where I only have 7.x.</description>
      <pubDate>Fri, 06 Jul 2007 07:30:28 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/546704#M257297</guid>
      <dc:creator>tst</dc:creator>
      <dc:date>2007-07-06T07:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/547276#M257531</link>
      <description>Here it is... Enjoy...&lt;BR /&gt;&lt;BR /&gt;Mike...&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 07 Jul 2007 23:01:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/547276#M257531</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2007-07-07T23:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/547313#M257553</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Excellent!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;P.S. Are you coming&amp;nbsp;to NIWeek?&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jul 2007 09:40:19 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/547313#M257553</guid>
      <dc:creator>tst</dc:creator>
      <dc:date>2007-07-08T09:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/547357#M257580</link>
      <description>Unfortunately not.&amp;nbsp; Can't put the finances together this year &lt;SPAN&gt;&lt;img id="smileysad" class="emoticon emoticon-smileysad" src="https://ni.lithium.com/i/smilies/16x16_smiley-sad.gif" alt="Smiley Sad" title="Smiley Sad" /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Mike...&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sun, 08 Jul 2007 21:16:43 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/547357#M257580</guid>
      <dc:creator>mikeporter</dc:creator>
      <dc:date>2007-07-08T21:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/550226#M258859</link>
      <description>&lt;DIV&gt;Mike,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;please send the VIs for LV7.1.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Thanks in advance.&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Karthik&lt;/DIV&gt;</description>
      <pubDate>Fri, 13 Jul 2007 07:49:54 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/550226#M258859</guid>
      <dc:creator>kkronline</dc:creator>
      <dc:date>2007-07-13T07:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/550241#M258864</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;
&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/56204"&gt;@kkronline&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;DIV&gt;Mike,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;please send the VIs for LV7.1.&lt;/DIV&gt;
&lt;HR /&gt;
&lt;/BLOCKQUOTE&gt;Look at post #10 and then give Mike a lot of stars.&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Jul 2007 08:19:23 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/550241#M258864</guid>
      <dc:creator>tst</dc:creator>
      <dc:date>2007-07-13T08:19:23Z</dc:date>
    </item>
    <item>
      <title>Entering large data stream to Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571427#M267973</link>
      <description>Hey Mike (or any interested users out there!)&lt;BR /&gt;&lt;BR /&gt;I'm banging away on my main application and have made use of your DB tools, mostly just the basic ones. They work great. But I was wondering about your advice on writing a large amount of data into the DB. It goes something like this:&lt;BR /&gt;&lt;BR /&gt;1) The operator hits the test buttons&lt;BR /&gt;2) 80 unique pieces of data are generated, mostly numeric, a few boolean, some string. My program shoves them all into a cluster (with clsuters in it) and passes it to a Write DB VI.&lt;BR /&gt;3) I want all of these items to be entered in a single DB row. Date/Time Stamp, Part Number, Serial Number and then all of the other stuff&lt;BR /&gt;&lt;BR /&gt;Seems like the only way I know how to accomplish this is to write an enormous INSERT statement explicitly using the name of each field and then use the Execute SQL VI. Is that about it for options?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 27 Aug 2007 22:47:03 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571427#M267973</guid>
      <dc:creator>Pablop</dc:creator>
      <dc:date>2007-08-27T22:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Entering large data stream to Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571531#M268016</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;You can try doing something like the attached VI (I believe this is based on code originally written by Jean-Pierre Drolet), but you should note that this is not tested code, it was just a quick example.&lt;/P&gt;
&lt;P&gt;You will need the &lt;A href="http://forums.jkisoft.com/index.php?showtopic=233" target="_blank"&gt;OpenG&lt;/A&gt;&amp;nbsp;data tools package to do the variant cluster parsing.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Aug 2007 06:36:48 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571531#M268016</guid>
      <dc:creator>tst</dc:creator>
      <dc:date>2007-08-28T06:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Entering large data stream to Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571850#M268161</link>
      <description>I'm not able to open the file, I must not have the correct tool set. &lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Aug 2007 15:56:30 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571850#M268161</guid>
      <dc:creator>Pablop</dc:creator>
      <dc:date>2007-08-28T15:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Entering large data stream to Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571965#M268216</link>
      <description>Follow the instructions at the link and then download the data tools package (you will also need the string package).&lt;BR /&gt;&lt;BR /&gt;If you want another approach, you can try modifying Ben's example &lt;A href="http://forums.ni.com/ni/board/message?board.id=170&amp;amp;message.id=267659" target="_blank"&gt;here&lt;/A&gt;.&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Aug 2007 18:30:12 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/571965#M268216</guid>
      <dc:creator>tst</dc:creator>
      <dc:date>2007-08-28T18:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/706162#M323512</link>
      <description>Mike,&lt;BR /&gt;&lt;BR /&gt;Your database drivers are totally awesome... Thanks so much for your contribution..&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;min&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 14 May 2008 08:17:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/706162#M323512</guid>
      <dc:creator>m_min</dc:creator>
      <dc:date>2008-05-14T08:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting one column from Database</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/742645#M340213</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;I may be to late, but can you backsave these to v 6i?&amp;nbsp; They'd help me out quite alot.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jul 2008 20:09:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Extracting-one-column-from-Database/m-p/742645#M340213</guid>
      <dc:creator>msimpson</dc:creator>
      <dc:date>2008-07-11T20:09:22Z</dc:date>
    </item>
  </channel>
</rss>

