Small SQL Engine

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • RedSon
    Recognized Expert Expert
    • Jan 2007
    • 4980

    Small SQL Engine

    Can anyone suggest a small SQL engine that I can embed in an executable or use as a dll? It needs to be compatible with .net framework 2.0 at least. I need a solution where I can just distribute an .exe and run it on any windows machine without worrying about installing SQL Server Express or MSDE?

    I'm using SQL Mobile and my application is only 800k, but due to licensing restrictions you have to install at least SQL Server Express. I cannot think why it would be necessary to install 40MB of applications to run a small little app! So I need another solution but can't find one.

    The entire project is available at www.codeplex.com/simplebook
  • ck9663
    Recognized Expert Specialist
    • Jun 2007
    • 2878

    #2
    Can't you go XML?

    -- CK

    Comment

    • RedSon
      Recognized Expert Expert
      • Jan 2007
      • 4980

      #3
      Originally posted by ck9663
      Can't you go XML?

      -- CK
      I guss I could but how can you do SQL queries on XML.

      Comment

      • ck9663
        Recognized Expert Specialist
        • Jun 2007
        • 2878

        #4
        XML Dom
        XPath
        XQuery

        Are some of the things you can check out. Here's more.

        -- CK

        Comment

        • RedSon
          Recognized Expert Expert
          • Jan 2007
          • 4980

          #5
          Originally posted by ck9663
          XML Dom
          XPath
          XQuery

          Are some of the things you can check out. Here's more.

          -- CK
          It's not for web design though, so not sure how w3schools are going to help. But I'll check out the keywords you listed.

          Comment

          • ck9663
            Recognized Expert Specialist
            • Jun 2007
            • 2878

            #6
            Those are pretty much generic when it comes on how they treat XML. You can check sql-server BOL and they also have some of those technology on how to parse an XML.

            Good luck.

            -- CK

            Comment

            Working...