(* * This file is part of the ExtensionDsLab project. * Copyright (c) 2017 LogicalHacking.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . *) namespace LogicalHacking.ExtensionDsLab.Archive open FSharp.Data.Sql open System.IO module SqlConnector = [] let ConnectionStringName = @"ProductionExtensionDB" [] let ResolutionPath = __SOURCE_DIRECTORY__ + @"/../../packages/MySql.Data/lib/net45" // create a type alias with the connection string and database vendor settings type ExtensionDbProvider = SqlDataProvider< DatabaseVendor = Common.DatabaseProviderTypes.MYSQL, ConnectionStringName = ConnectionStringName, ResolutionPath = ResolutionPath, IndividualsAmount = 500, UseOptionTypes = true > type ExtensionDbType = ExtensionDbProvider.dataContext let getDownloads (ctx:ExtensionDbType) extid = query { for order in ctx.Extensions.Extension do where (order.Extid = extid) select (order.Date, order.Downloads) } |> Seq.filter (fun (_, download) -> download.IsSome) |> Seq.map (fun (date, download) -> (date, download.Value)) |> Seq.toArray let getAllExtIds (ctx:ExtensionDbType) = query { for ext in ctx.Extensions.Extension do select ext.Extid distinct } |> Seq.toList