| 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 |
|
More...
|
almost 12 years ago
|
| Strips special characters from table aliases to fix issues in ODBC against excel |
|
More...
|
almost 12 years ago
|
| Fixes duplicate column name selects |
|
More...
|
almost 12 years ago
|
| Fixes querying against excel |
|
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 |
|
More...
|
almost 12 years ago
|
| Makes inner joins work properly |
|
More...
|
almost 12 years ago
|
| Makes inner joins (kind of) work |
|
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 |
|
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 |
|
More...
|
almost 12 years ago
|
| Remove schema from file code (was kind of ugly) |
|
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
|