<?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: database file in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51088#M6210</link>
    <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="ddd4d6a3-af39-4c64-8db4-cdb1d05ed669" data-tag-text="@Michael ONeil" href="https://community.blueprism.com/network/profile?UserKey=ddd4d6a3-af39-4c64-8db4-cdb1d05ed669" data-itemmentionkey="f1458f7a-343f-4abe-8a43-85b6ebd9896b"&gt;@Michael ONeil&lt;/A&gt; ,&lt;BR /&gt;&lt;BR /&gt;that's what i tried to do ,to convert the .db file to CSV file but it didn't work&lt;BR /&gt;i found that there is an object in the digital exchange for importing data from SQLite DB.&lt;BR /&gt;&lt;BR /&gt;Thank you for helping,&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV style="position: absolute; display: none; z-index: 16777271;"&gt;&lt;/DIV&gt;
​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohammed Shilbayeh&lt;BR /&gt;Amman&lt;BR /&gt;+962785766991&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Mon, 18 Jul 2022 09:52:00 GMT</pubDate>
    <dc:creator>mnsh98</dc:creator>
    <dc:date>2022-07-18T09:52:00Z</dc:date>
    <item>
      <title>database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51084#M6206</link>
      <description>Hello everyone,&lt;BR /&gt;&lt;BR /&gt;I have a &lt;SPAN&gt;SQLite database&lt;/SPAN&gt; file .db that I need to get data from it as a collection,&lt;BR /&gt;can anyone tell me how can I do it?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="25934.png"&gt;&lt;img src="https://community.blueprism.com/t5/image/serverpage/image-id/26065i4FD58B9862249EC8/image-size/large?v=v2&amp;amp;px=999" role="button" title="25934.png" alt="25934.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohammed Shilbayeh&lt;BR /&gt;Amman&lt;BR /&gt;+962785766991&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jul 2022 13:14:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51084#M6206</guid>
      <dc:creator>mnsh98</dc:creator>
      <dc:date>2022-07-15T13:14:00Z</dc:date>
    </item>
    <item>
      <title>RE: database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51085#M6207</link>
      <description>Hi Mohammed&lt;BR /&gt;&lt;BR /&gt;I'm not familiar with the use of the db files but im assuming this is an extracted file from and SQL database? If so is it not possible for you to use the OLEDB actions to extract the data directly from the database? If not can you convert the db file to a CSV file or get the database extract from sql in a csv file?&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Michael ONeil&lt;BR /&gt;Technical Lead developer&lt;BR /&gt;NTTData&lt;BR /&gt;Europe/London&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jul 2022 13:39:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51085#M6207</guid>
      <dc:creator>michaeloneil</dc:creator>
      <dc:date>2022-07-15T13:39:00Z</dc:date>
    </item>
    <item>
      <title>RE: database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51086#M6208</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="0ddbafd5-94ea-4c78-9de2-6ce4b80cb163" data-tag-text="@Mohammed Shilbayeh" href="https://community.blueprism.com/network/profile?UserKey=0ddbafd5-94ea-4c78-9de2-6ce4b80cb163" data-itemmentionkey="8ebc1a64-5e57-48cc-9a45-70aad0fd7750"&gt;@Mohammed Shilbayeh&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I see that there is no VBO in the DX store.&lt;BR /&gt;&lt;BR /&gt;I create you a special VBO to execute queries and get collections.&lt;BR /&gt;&lt;BR /&gt;Attached to this post you have all the dlls that you need to use and the VBO.&lt;BR /&gt;&lt;BR /&gt;​In the folder dlls you have all the libraries that you need to have in your Blue Prism installation folder (Usually &amp;gt;&amp;gt; C:\Program Files\Blue Prism Limited\Blue Prism Automate)&lt;BR /&gt;&lt;BR /&gt;Import the VBO and use the action "Get Query as Collection".&lt;BR /&gt;&lt;BR /&gt;As input parametter you need to indicate the file and the query that you want to get returned as collection&lt;BR /&gt;&lt;BR /&gt;The code behind is very simple:&lt;BR /&gt;&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE&gt;string cs = "Data Source=" + DataBaseFile + ";Version=3;";&lt;BR /&gt;&lt;BR /&gt;string sql = Query;&lt;BR /&gt;&lt;BR /&gt;var con = new SQLiteConnection(cs);&lt;BR /&gt;con.Open();&lt;BR /&gt;&lt;BR /&gt;var cmd = new SQLiteCommand(sql, con);&lt;BR /&gt;&lt;BR /&gt;DataTable dt = new DataTable();&lt;BR /&gt;&lt;BR /&gt;dt.Load(cmd.ExecuteReader());&lt;BR /&gt;&lt;BR /&gt;dtResult = dt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BR /&gt;Hope this helps you! If you need to add more actions here, let me know and I change the VBO&lt;BR /&gt;&lt;BR /&gt;See you in the Community, bye &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Pablo Sarabia&lt;BR /&gt;Solution Manager &amp;amp; Architect&lt;BR /&gt;Altamira Assets Management&lt;BR /&gt;Madrid&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Fri, 15 Jul 2022 13:51:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51086#M6208</guid>
      <dc:creator>PabloSarabia</dc:creator>
      <dc:date>2022-07-15T13:51:00Z</dc:date>
    </item>
    <item>
      <title>RE: database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51087#M6209</link>
      <description>pls check if the below VBO is helping you.&lt;BR /&gt;&lt;BR /&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&lt;A href="https://digitalexchange.blueprism.com/dx/entry/3439/solution/oracle-mda---utility?_ga=2.133564302.1600082727.1655103133-1052292321.1645100355&amp;amp;_gl=1*1m10wx7*_ga*MTA1MjI5MjMyMS4xNjQ1MTAwMzU1*_ga_MFBQ2KFZ1L*MTY1NjA5MTEzNy41NDUuMS4xNjU2MDkyMTA3LjA" target="_blank" rel="noopener"&gt;https://digitalexchange.blueprism.com/dx/entry/3439/solution/oracle-mda---utility?_ga=2.133564302.1600082727.1655103133-1052292321.1645100355&amp;amp;_gl=1*1m10wx7*_ga*MTA1MjI5MjMyMS4xNjQ1MTAwMzU1*_ga_MFBQ2KFZ1L*MTY1NjA5MTEzNy41NDUuMS4xNjU2MDkyMTA3LjA&lt;/A&gt;.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Neeraj Kumar&lt;BR /&gt;Technical Architect&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jul 2022 09:26:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51087#M6209</guid>
      <dc:creator>Neel1</dc:creator>
      <dc:date>2022-07-18T09:26:00Z</dc:date>
    </item>
    <item>
      <title>RE: database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51088#M6210</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="ddd4d6a3-af39-4c64-8db4-cdb1d05ed669" data-tag-text="@Michael ONeil" href="https://community.blueprism.com/network/profile?UserKey=ddd4d6a3-af39-4c64-8db4-cdb1d05ed669" data-itemmentionkey="f1458f7a-343f-4abe-8a43-85b6ebd9896b"&gt;@Michael ONeil&lt;/A&gt; ,&lt;BR /&gt;&lt;BR /&gt;that's what i tried to do ,to convert the .db file to CSV file but it didn't work&lt;BR /&gt;i found that there is an object in the digital exchange for importing data from SQLite DB.&lt;BR /&gt;&lt;BR /&gt;Thank you for helping,&lt;BR /&gt;&lt;BR /&gt;
&lt;DIV style="position: absolute; display: none; z-index: 16777271;"&gt;&lt;/DIV&gt;
​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohammed Shilbayeh&lt;BR /&gt;Amman&lt;BR /&gt;+962785766991&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jul 2022 09:52:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51088#M6210</guid>
      <dc:creator>mnsh98</dc:creator>
      <dc:date>2022-07-18T09:52:00Z</dc:date>
    </item>
    <item>
      <title>RE: database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51089#M6211</link>
      <description>Hi &lt;a href="https://community.blueprism.com/t5/user/viewprofilepage/user-id/66"&gt;@PabloSarabia&lt;/a&gt; ,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for this VBO, I will try it now,&lt;BR /&gt;i think that only what i need.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;
&lt;DIV style="position: absolute; display: none; z-index: 16777271;"&gt;&lt;/DIV&gt;
​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohammed Shilbayeh&lt;BR /&gt;Amman&lt;BR /&gt;+962785766991&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jul 2022 09:57:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51089#M6211</guid>
      <dc:creator>mnsh98</dc:creator>
      <dc:date>2022-07-18T09:57:00Z</dc:date>
    </item>
    <item>
      <title>RE: database file</title>
      <link>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51090#M6212</link>
      <description>Hi &lt;A class="user-content-mention" data-sign="@" data-contactkey="c5e63ea0-81f8-48b9-bde7-b9fabd8876b1" data-tag-text="@Neeraj Kumar" href="https://community.blueprism.com/network/profile?UserKey=c5e63ea0-81f8-48b9-bde7-b9fabd8876b1" data-itemmentionkey="2d5ed2e8-5a9a-475e-b0db-956f177c3a14"&gt;@Neeraj Kumar&lt;/A&gt; ,&lt;BR /&gt;&lt;BR /&gt;Thank you for your help, &lt;BR /&gt;I found a VBO called "Function for Data - SQLite - 1.0.0"&amp;nbsp; it work fine with me.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;
&lt;DIV style="position: absolute; display: none; z-index: 16777271;"&gt;&lt;/DIV&gt;
​&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mohammed Shilbayeh&lt;BR /&gt;Amman&lt;BR /&gt;+962785766991&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 18 Jul 2022 10:20:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/database-file/m-p/51090#M6212</guid>
      <dc:creator>mnsh98</dc:creator>
      <dc:date>2022-07-18T10:20:00Z</dc:date>
    </item>
  </channel>
</rss>

