1
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Feb 22, 2025 — Feb 22, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
added new create methods 1) with a parameter for each required field (excluding the PK) 2) accepts a (string * obj) sequence, this can be used to copy from other entities / sources assuming correct column names (unsafe) More... almost 12 years ago
Makes inserts work for ODBC
simonhdickson
as Simon Dickson
More... almost 12 years ago
Strips special characters from table aliases to fix issues in ODBC against excel
simonhdickson
as Simon Dickson
More... almost 12 years ago
Fixes duplicate column name selects
simonhdickson
as Simon Dickson
More... almost 12 years ago
Fixes querying against excel
simonhdickson
as Simon Dickson
More... almost 12 years ago
Merge pull request #61 from colinbull/master More... almost 12 years ago
initial implementation of CRUD for oracle More... almost 12 years ago
Merge pull request #60 from simonhdickson/master More... almost 12 years ago
Adding individuals support in ODBC
simonhdickson
as Simon Dickson
More... almost 12 years ago
Makes inner joins work properly
simonhdickson
as Simon Dickson
More... almost 12 years ago
Makes inner joins (kind of) work
simonhdickson
as Simon Dickson
More... almost 12 years ago
inverting nullable columns in SQLite as they seem to be around the wrong way? More... almost 12 years ago
fix sqlite delete More... almost 12 years ago
fox for scope_identity for sqlite, and fix a little bug causing just-inserted records to not register for subsequent updates More... almost 12 years ago
remove tests for now More... almost 12 years ago
not sure why this is not working... it compiles fine locally. Attempt change of FSharp.Core target More... almost 12 years ago
Adding odbc test file
simonhdickson
as Simon Dickson
More... almost 12 years ago
fixing build, missed project file More... almost 12 years ago
experiment to see if i can get tests working with sqlite db More... almost 12 years ago
fix small bug in Delete More... almost 12 years ago
some locking, altho we may need some more for the new CRUD bits More... almost 12 years ago
getting Where to work in ODBC. Fixed whitespace qualifiers in ODBC (for Excel at least) More... almost 12 years ago
Merge branch 'master' of github.com:fsprojects/SQLProvider More... almost 12 years ago
oops, missed a file More... almost 12 years ago
working crud More... almost 12 years ago
Merge pull request #56 from simonhdickson/master More... almost 12 years ago
ODBC: Fixes queries on tables with no primary keys
simonhdickson
as Simon Dickson
More... almost 12 years ago
Remove schema from file code (was kind of ugly)
simonhdickson
as Simon Dickson
More... almost 12 years ago
Architectural changes paving the way for CRUD operations. Specifically, I have now removed all the static methods on the data context type. Data contexts are now threaded through and erased to (or at least hidden and unboxed to) in most places via use of the new ISqlDataContext interface, and the quotations make use the of their new instance methods to do things such as retrieving related entities. This separation will allow us to A) still keep the idea of "runtime data context" and "design time data context" separate, whilst able to share the ISqlProvider instances yet allowing connection string and resolution path differences in the runtime created versions, and B) the entities now know about the data context they were generated from, which will be essential going forward to provide transactional update operations scoped to the correct context. More... almost 12 years ago
Use SeqValues instead of NewArrayExpression. More... almost 12 years ago