FSharp.Data.SqlClient icon indicating copy to clipboard operation
FSharp.Data.SqlClient copied to clipboard

A set of F# Type Providers for statically typed access to MS SQL database

Results 87 FSharp.Data.SqlClient issues
Sort by recently updated
recently updated
newest added

### Description I'm trying to connect to SQLite ADO.NET provider ### Repro steps Here it is the repro 1. Visual Studio 2016 .Net 462 a new F# console project 2....

question

It seems the consensus on using `IN` is to explicitly use table-valued parameters, requiring defining types and putting your query in a stored procedure. There's a much easier way that...

docs
up-for-grabs

When we have an error indicated like this in Visual Studio: ![image](https://user-images.githubusercontent.com/19760720/53631006-5e8a3980-3c09-11e9-98a0-00f006a42cf8.png) Hovering gives: ![image](https://user-images.githubusercontent.com/19760720/53630958-40bcd480-3c09-11e9-8386-17e90ee67663.png) Is it something we are doing wrong or a bug in FSharp.Data.SqlClient? Thanks!

needs-repro

Is there a way to get types to update after changing an sql file in `SqlFile` or `SqlCommandProvider`, without restarting Visual Studio?

question

1. Includes all database tables 2. Navigation support 3. Ideally reuses same erased types for tables ``` FSharp type DB = SqlProgrammabilityProvider let ds = DB.DataSet() //table types re-use //pseudo...

feature

Given an instantiated type ```fsharp type MySqlType = SqlCommandProvider use cmd = new TestFirstResultSet(conn) ``` 1) new method ```fsharp DescribeFirstResult(params : string option, browseInformationMode : BrowseInformationMode) BrowseInformationMode.NoInfo 0 BrowseInformationMode.ForBrowse 1...

feature

### Description I'd like to be able to track the progress of loading a datatable, the library allows to return DataReader but then you are on your own as you...

improvement

Currently the User-Defined Table Types are classes. Could a config option be added to allow them to be records. Sql Setup: ```SQL --DROP PROCEDURE InsertTypeIntoTable1 --DROP TYPE dbo.Type1 --DROP TABLE...

improvement
blocked

I'm trying to call a stored procedure but many parameters should allow null. I think a top level `AllParameterOptionals` parameter could be a good short term solution. Longer term, I'd...

up-for-grabs
improvement

Due to specifics of return value, I sometimes need to use manually created `System.Data.SqlClient.SqlCommand` objects that I obtain from typed `SqlCommand` objects, I'd like to actually still leverage type checking...

improvement
discussion