Tagged Questions
dotConnect is an enhanced database connectivity solution built over ADO.NET architecture and a development framework with a number of innovative technologies.
10
votes
3answers
521 views
Large SQL transaction: runs out of memory on PostgreSQL, yet works on SQL Server
I have decided to move my C# daemon application (using dotConnect as ADO.NET provider) from SQL Server 2008 R2 to PostgreSQL 9.0.4 x64 (on Windows Server 2008 R2). Therefore I slightly modified all ...
9
votes
6answers
994 views
Can we control LINQ expression order with Skip(), Take() and OrderBy()
I'm using LINQ to Entities to display paged results. But I'm having issues with the combination of Skip(), Take() and OrderBy() calls.
Everything works fine, except that OrderBy() is assigned too ...
6
votes
3answers
1k views
CLOB vs. VARCHAR2 and are there other alternatives?
I am using DevArt's dotConnect and Entity Developer for my application. I've created the tables using the Entity-First feature.
I notice that many of the column types are set to CLOB. I only have ...
6
votes
2answers
1k views
Linq to Entities and LEFT OUTER JOIN issue with MANY:1 relations
Can somebody tell me, why does Linq to Entities translate many to 1 relationships to left outer join instead of inner join? Because there's referential constraint on DB itself that ensures there's a ...
5
votes
2answers
2k views
DevArt's dotConnect for Oracle vs DataDirect's ADO.NET data provider
Has anybody done a comparative analysis of dotConnect for Oracle from DevArt and the ADO.NET data provider from DataDirect.
We are thinking of using the Entity Framework support available in these ...
2
votes
2answers
352 views
Connection pool management
I'm developing a high load web service that would provide as fast response as possible. The service should keep a bunch of connections to various databases for faster performance. I'm suggesting using ...
2
votes
1answer
211 views
Disadvantages when using dotConnect for Oracle in comparison to SQL Server?
I am currently evaluating dotConnect for Oracle as an alternative to switching to SQL Server at my company altogether.
We are currently developing ASP.NET MVC2 applications with datasets and oracle, ...
2
votes
3answers
477 views
dotConnect or “sqlite.phxsoftware.com” for using Entity Framework with SQLite
Which is the better choice out of dotConnect or "sqlite.phxsoftware.com" for using Entity Framework with SQLite (in C#)?
1
vote
1answer
93 views
Telerik's OpenAccess ORM and DevArt's dotConnect for Oracle
Has anyone tried to connect to an Oracle DB using DevArt's dotConnect data provider among with OpenAccess ?
OpenAccess works excellent with Oracle.DataAccess.Client, but how about dotConnect?
Is it ...
1
vote
1answer
117 views
ORA-00936: missing expression when reading from database with dotConnect driver and oracle database
I am using dotConnect driver for connecting to oracle database but i always get this error when i want to use parameters: ORA-00936: missing expression
CODE:
using (var cmd = conn.CreateCommand())
...
1
vote
1answer
621 views
Call Oracle stored procedures using devart dotConnect
I'm new in Entity Framework and trying to call oracle stored procedures, but without success. So Here is my question:
How to call oracle stored procedures using devart dotConnect?
For example, I ...
1
vote
1answer
215 views
license not found issue devart postgres sql
i have developed an app using the devart dot connect control. I have deployed on the server, using iis. However, whenever i try to do anything with the database i get the license not found error. I ...
1
vote
2answers
828 views
OracleClient to devart dotConnect for Oracle
Has anyone tried migration from Microsoft OracleClient to dotConnect for Oracle? Is it realy so easy (as they wrote at their blog http://www.devart.com/blogs/dotconnect/?p=67) or just another ...
0
votes
0answers
19 views
Oracle text search using .Net and Devart's dotConnect for Oracle
We have a web application that needs to search across all tables using a keyword. I have not found much on Google other than using a Linq query.
We need the search to be performed by Oracle, not the ...
0
votes
1answer
36 views
Porting from ODP.NET to dotConnect - what's the equivalent of the OracleParameter.CollectionType property?
I'm porting a bunch of code from the ODP.NET drivers to DevArt dotConnect for Oracle. I ran into the following code that no longer compiles:
OracleParameter parameter = new OracleParameter("state", ...
0
votes
0answers
70 views
Linq - Grouping by range results in “sub-query returns more than one row”
I am using the following LINQ to group by a variable range (as per question here)
var ranges = new List<decimal> { 5m, 10m, 20m };
var grouped = entities.PointTransaction.Where( x => ...
0
votes
2answers
60 views
dotConnect and calling procedure with parameters problem
This is my code for calling procedure:
cmd.CommandText = "x.PROCEDURENAME";
cmd.Parameters["V_IID_DOKUMENT_PO"].Value = "1";
cmd.Parameters["x"].Value = x.Text;
cmd.Parameters["x"].Value = x.Text;
...
0
votes
1answer
230 views
Devart Oracle Entity Framework 4.1 performance
I want to know why Code fragment 1 is faster than Code 2 using POCO's with Devart DotConnect for Oracle.
I tried it over 100000 records and Code 1 is way faster than 2. Why? I thought "SaveChanges" ...
0
votes
2answers
57 views
dotConnect mobile and fluent nhibernate in compact framework 3.5
We are using dotConnect mobile for connecting to Oracle DB.
I know that dotConnect can be used with NHibernate and Fluent Nhibernate ORM on the desktop but can the combination also be used with the ...
0
votes
1answer
664 views
Using Entity Framework Code First to connect to Legacy Oracle Database with devart dotconnect
ERROR: The Type clob is not qualified with a namespace or alias. Only PrimitiveTypes can be used without qualification.
I have been trying out to use EF 4.1 (code first) with MVC 3, against a legacy ...
0
votes
2answers
332 views
Need help converting a Linq query (Silverlight RIA Entity - Oracle DB)
I have no problem with SQL, but I'm finding Linq a little confusing.
C#, .NET4, Silverlight, RIA services, Oracle DB (v?), VS2010 running Devart dotConnect 6.10.121.
I have a RIA Entity
public ...
0
votes
1answer
162 views
dotConnect for Oracle Hebrew problem - gibberish - getting ¿¿¿¿
I'm trying to create EF through Devart dotConnect with an Oracle database that includes Hebrew chars.
In regedit:
NLS_LANG = HEBREW_ISRAEL.IW8ISO8859P8
In web.config:
<system.web>
...
0
votes
1answer
199 views
Dotconnect for Oracle - EF - too many local sessions in Global Transaction
I have to insert 2 records in to one db and around 40 records in to another db in a single transaction. I am using TransactionScope and getting this error.
I did read this article but that does not ...
0
votes
1answer
133 views
Does dotConnect for SQLite support Mono?
Does the dotConnect provider for SQLite from Devart support Mono? Google seems to say it does, but their own compatibility page says it does not.
I'm looking to use Code First on Mono with SQLite.
0
votes
2answers
385 views
Setting connection string in code
I have an .NET MVC application which utilizes entity framework and a 3rd party provider to interact with an Oracle database. I need to be able to choose among two connection strings based on who is ...
0
votes
2answers
155 views
Issue with Updating Changes in LINQ
I'm having an issue with updating the database. The app shows the updated value, but the database does not. No errors returned. My table has a PK. Using DotConnect for Oracle, but the LINQ syntax ...
0
votes
1answer
238 views
dotConnect LINQ to MySQL Issue
I am using dotConnect LINQ to MySQL and i have the following error. what would be the cause for this issue
annot convert parameter value of type 'System.String' to MySQL type 'MySqlType.TimeStamp'.
...
0
votes
2answers
2k views
Database connection string and collation
Is it possible to set connection collation within MySql connection string and how, since there's a default setting on the server that's used for new connections.
Two things I can't do:
Can't call ...
0
votes
2answers
352 views
dotConnect for MySQL license cannot be used with TOAD
I am trying to connect to MySQL with TOAD. I have dotConnect for MySQL (trial) installed on my PC. The very first time TOAD's connection with MySQL worked fine and I worked with that connection across ...
0
votes
1answer
317 views
devart dotConnect MySQL
I've been evaluating MindScape Lightspeed for the purpose of Model creation. So far I am satisfied. I was further looking for OOTB (actually some professional quality code) providers for MySQL for ...