element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Design Challenges
  • Challenges & Projects
  • More
Design Challenges
Forum Starting with Raspberry Pi 3 with Windows 10 IOT and access db engine
  • Forum
  • Documents
  • Polls
  • Files
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Suggested Answer
  • Replies 8 replies
  • Answers 1 answer
  • Subscribers 6 subscribers
  • Views 2027 views
  • Users 0 members are here
  • frontpage
  • msaccess
  • windows 10 iot
Related

Starting with Raspberry Pi 3 with Windows 10 IOT and access db engine

amateurtje
amateurtje over 9 years ago

Hello All,

 

I am new here and the raspberry PI, Win10 IOT etc are all very new to me.

 

I have a system running which is made in vb.net and uses a serial box to read io ports. Information regarding this is stored in a access database. For a lot of reasons is this the easiest to use instead of other db's.

My questions are:

- Is it easy/do-able to transfer my current program developed in Visual studio to a program for the Win 10 IOT?

- I use a accessdatase engine plugin. Will I be able to use this on windows IOT?

          - or is there another way to store data in an access database?

 

Who can help me getting started?

 

Greetz

Amateurtje

  • Sign in to reply
  • Cancel

Top Replies

  • Workshopshed
    Workshopshed over 8 years ago in reply to amateurtje +3
    Access is effectively a desktop solution so it's not surprising that it does not work on an embedded platform such as IOT. I was a little surprised that Access was still supported on any platform, I had…
  • Workshopshed
    Workshopshed over 9 years ago +2 suggested
    You can run .NET apps on Win IOT but there are some restrictions as Windows 10 IoT Core only supports a subset of the Win32 and .Net APIs. When you build an app for IOT it gets transferred to the Pi as…
  • Workshopshed
    Workshopshed over 8 years ago +2
    Access is a very old application, I was using nearly 20 years ago when I first started work. It's also a desktop application so it's quite heavy weight by modern standards. We moved across from Access…
Parents
  • Workshopshed
    0 Workshopshed over 9 years ago

    You can run .NET apps on Win IOT but there are some restrictions as Windows 10 IoT Core only supports a subset of the Win32 and .Net APIs.  When you build an app for IOT it gets transferred to the Pi as part of the build process.

     

    I've not tried it out yet but it should all be explained here https://developer.microsoft.com/en-us/windows/iot

     

    You are a bit limited for database options on Windows IOT although SQLite does seem to be supported Using SQLite in Windows 10 IoT Core – Chris Briggs' Blog

    alternatively store your data remotely.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • Workshopshed
    0 Workshopshed over 9 years ago

    You can run .NET apps on Win IOT but there are some restrictions as Windows 10 IoT Core only supports a subset of the Win32 and .Net APIs.  When you build an app for IOT it gets transferred to the Pi as part of the build process.

     

    I've not tried it out yet but it should all be explained here https://developer.microsoft.com/en-us/windows/iot

     

    You are a bit limited for database options on Windows IOT although SQLite does seem to be supported Using SQLite in Windows 10 IoT Core – Chris Briggs' Blog

    alternatively store your data remotely.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Children
  • amateurtje
    0 amateurtje over 9 years ago in reply to Workshopshed

    hi andy,

     

    Thanks for te answer.

     

    While the complete system is already build around access databases, It is a big job to start using another db-system. This is a problem. Crazy.. A windows 10 versions (although IOT) that can not handle an access db......

     

    What do you mean with store your data remotely? Than I still have to comunicate with the access db in order to store my data in that?

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • Workshopshed
    0 Workshopshed over 8 years ago in reply to amateurtje

    Access is effectively a desktop solution so it's not surprising that it does not work on an embedded platform such as IOT. I was a little surprised that Access was still supported on any platform, I had to double check that before answering.

     

    By remotely I mean having another machine that can accept calls to save the data, typically we use SQL Server but MySQL or Azure DB would also work. Access would not work in this fashion on IOT as it would still require the Microsoft Jet Database Engine to access the file.

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • amateurtje
    0 amateurtje over 8 years ago in reply to Workshopshed

    that is completely dissapointing. So they basically made a useless os based on a useless system. The Access database has huge advantages over  mysql systems etc but they can not be used. So all developments can better be done normally and we use small pc's like atom etc. The only thing we need for that above the useless raspberry pi is that it has no GIO ports....

    I bought 1 for test before introducing them into my system but that was a waste f money. Yes, i know, my own fault. I should have asked this question before buying but I finally that there was something usefull in the market.

     

    EDIT:

    Thanks for the info..

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube