Tagged Questions
The esql tag has no wiki summary.
11
votes
3answers
2k views
Entity Framework & LINQ To SQL - Conflict of interest?
I've been reading on the blogosphere for the past week that Linq to SQL is dead [and long live EF and Linq to Entities]. But when I read the overview on MSDN, it appeared to me Linq to Entities ...
6
votes
5answers
358 views
Is ESQL used in industry?
I'm taking a database course and I have to write a command line application. The prof wants us to write an ESQL (embed SQL) application.
I have a feeling that this kind of technology is depreciated.
...
6
votes
6answers
6k views
Linq to Entities vs ESQL
When using the Entity Framework, does ESQL perform better than Linq to Entities?
I'd prefer to use Linq to Entities (mainly because of the strong-type checking), but some of my other team members ...
4
votes
1answer
148 views
Converting ESQL to LINQ to Entities. Sort by related entities
I am using EF + RIA and unfortunately meet some problems with sorting by related entities.
For such purpose there is ESQL query that I implemented (found only this solution):
var queryESQL = ...
4
votes
1answer
94 views
Move record from oracle array to Cobol occurs
How can I move a record from oracle to a cobol array?
When I move a single field, everything works as expected.
When I try to move a record in an Oracle VARRAY I cannot
get it to work. The PRO*COBOL ...
3
votes
1answer
393 views
ESQL in Entity Framework
Is there any good and, if possible, exhaustive documentation about ESQL in entity framework ?
I'm trying to make a select of an entity object with modification of a property of this one by a method; ...
3
votes
3answers
464 views
In what situations, should I use Entity SQL?
I was wondering whether there are situation that's more advisable to use ESQL?
Generally, I find ESQL a PIA (specially with all the special cases where you need to fully qualify an entity type) & ...
2
votes
1answer
59 views
Fetch only key value from EF association
I've set up a many-to-many association between two tables based on a third table that just holds a pair of key values. Now I'd like to do a query that groups the right tables key values by the lefts ...
2
votes
4answers
136 views
Dynamically sorting and filtering projected Entity SQL results
I have the following query which I want to sort or filter using projected class names:
List<CompanyInfo> list = new List<CompanyInfo>();
using (var db = new DbContext())
{
...
2
votes
1answer
724 views
Convert float to decimal in Informix
I have a table with a column of type decimal. There is a ESQL/C structure that represents the table. It has a member of type decimal. I also have a normal C structure for equivalent for the same ...
2
votes
2answers
634 views
Entity Sql for a Many to Many relationship
Consider two tables Bill and Product with a many to many relationship. How do you get all the bills for a particular product using Entity Sql?
1
vote
1answer
16 views
the pros and cons of ESQL
a few days ago when I researched about database manipulation languages I discovered Embedded SQL. After a lot of research, I know:
It´s hard to switch to another database if ESQL is used
It is not ...
1
vote
1answer
62 views
Informix “SERIAL” to Oracle NUMBER/Sequence/Trigger in Pro*C
I'm trying to convert some Informix ESQL to Oracle Pro*C. In the existing Informix code the "SERIAL" data type was used to indicate automatically incrementing columns. According to the Oracle ...
1
vote
1answer
72 views
Class name is a reserved word when query provider compiles ELINQ query to ESQL
I'm receiving this error:
System.Data.DataException: An exception occurred while initializing
the database. See the InnerException for details. --->
System.Data.EntitySqlException: 'All' is a ...
1
vote
2answers
155 views
Viewing Entity SQL produced by Linq-to-Entities
Is there a way I can view the Entity Sql (eSQL) that my Linq-to-entities queries are generating with EF framework (that is, not native SQL, but eSQL, if that makes sense?)
Thanks!
1
vote
1answer
195 views
How Select From Parent Based on Child Property in EntityFramework and ESQL
I have a parent/child table in Entity Framework and I need to select some row from parent based on child primary key.
I write these code:
List<int> s = (from all in DB.TbProfiles
...
1
vote
2answers
412 views
Entity SQL Datetime Syntax error
Anyone know What is wrong with my syntax here? I am making dynamic eSQL Queries and running into an error when trying to make where condition for DateTime data type. This is the error:
The query ...
1
vote
1answer
373 views
Eclipse CDT and ESQL syntax errors
I am using Eclipse CDT (Helios release) to edit the source code of an (old) C application, which also uses ESQL. In this project, by convention, files containing ESQL code have a .sc extension ...
1
vote
1answer
297 views
Is writing eSQL database independent or not?
Using EF we can use LINQ to read data which is rather simple (especially using fluent calls), but we have less control unless we write eSQL on our own.
Is writing eSQL actually data store ...
1
vote
4answers
866 views
Entity framework (3.5): How to translate a certain LINQ query to eSQL?
I have the following LINQ query that I need to translate to Entity SQL /eSQL):
return (ObjectQuery<User>) from user in Users
where !user.Roles.Any(r => r.AnIntegerProperty < 0)
...
1
vote
1answer
308 views
“FOR UPDATE” clause is throwing error in esql program
We are developing a migrate program. There are nearly 80 million records are there in DB. The code is as follows:
static int mymigration(struct progargs *args)
{
exec sql begin declare section;
...
0
votes
0answers
10 views
Searching properties of a navigation property with Entity SQL
I am doing some queries using Entity SQL. I can't use LINQ as the queries are generated at run time.
Consider the following tables/classes
class Note
{
string Text { get; set; }
string ...
0
votes
0answers
6 views
Embedded SQL program flow
I´ve got a question according ESQL. Everywhere, I read something about a precompiler. The precompiler takes the ESQL-parts in the code, but what does it do with them?
Does anyone have a piece of ...
0
votes
1answer
29 views
entity query 'Like' doesnt support int column
i trying to implement the 'Like' operator by using the entity framework query.But seem 'Like' doesnt appear to be supported int column.
Here is my query
using (ObjectContext ctx = new ...
0
votes
0answers
21 views
Display the record in JQuery from esql list<DbDataRecord>
i having a problem nw .Does anyone noe how to display the record in JQuery from esql list ?
Here is my coding
[WebMethod]
public List<DbDataRecord> createGvStaff()
{
...
0
votes
1answer
31 views
ObjectQuery as a parameter in ESQL
Assume I have 2 entities: Ent and SubEnt with N:1 relationship. So, there are navigation properties SubEnt.Ents and Ent.SubEnt. Also, I have some ObjectQuery defined:
ObjectQuery<SubEnt> se;
...
0
votes
0answers
189 views
Master child gridview without nested gridview
is it possible to make a master child gridview wihout using nested gridview?I am able to make a master child gridview by using nested gridview. But the performance is quite slow. I need to wait at ...
0
votes
0answers
25 views
ESQL many-to-many Query
I am trying to figure out how to write an esql query for a many to many table relationship
i.e(query all student who are in courses ...)
In the SQL server you have three tables the middle table being ...
0
votes
2answers
70 views
How to return a Bool from a Where Filter using Entity Framework and Esql
I use c# and ef4.
I have a Model with an Entity with two proprieties int Id and string Title.
I need to write an ESQL query that is able to return bool TRUE if Id and Title are present in the ...
0
votes
1answer
72 views
Which is faster “where col = ? or col = ? or col = ?” OR “where col in (?, ?, ?)” in C with informix (.ec/esql)?
Our code is written in C and DB is Informix.
We are doing some code optimization in ESQL program and found the following query:
UPDATE [TABLE] SET [PRIMARY KEY COLUMN] = [NEW KEY] WHERE COL = ? OR ...
0
votes
1answer
61 views
How to select 32 or 64 bit Informix Csdk 3.7?
My developer machine is a Windows 7 64bit and have some programs on 32 an others on 64 bits
since the upgrade of the 3.70FC3 and 3.70TC3, I'm having problems compiling with VisualStudio 2010 sp1.
...
0
votes
0answers
114 views
Entity Framework 4.0 ESql Problem with Schema not loaded
I would really appreciate any help with this matter.
I have a class that I use as my base class for my models in entity framework 4.0 and most of it works fine except for one thing. So here it is:
...
0
votes
2answers
93 views
cast with linqToEntity(Esql)
my code :
public List<Book> GetBook(string NameField, object Value)
{
var queryESQL = @"select VALUE Book from Book
where Cast(Book." + NameField + " as string) ...
0
votes
0answers
60 views
Deleting a row in Oracle with ESQL/C
I'm trying to write a program with C and ESQL. One of the things I want to do is delete old row from one of my table (by comparing with SYSDATE) each time the program is run.
So my SQL code looks ...
0
votes
0answers
48 views
reverse of string in esql programming
I have a string let us say "between the", I want to get the reverse of string "eht neewteb" in esql langauge.
What is most efficient algorithm for it. A sample code written in esql will be ...
0
votes
1answer
113 views
Entity sql concatenation
Hy!
I have a select in entity sql that returns simple strings, and i should concatenate to a string.
select (p.X + p.Y) from ExampleEntities.ExampleTable as p
group by p.X, p.Y
For example it ...
0
votes
1answer
191 views
Can I use Entity SQL to query an IQueryable<T>?
I know I can use ESQL to query an ObjectSet of T but can I use it to query an arbitrary IQueryable of T?
EDIT
Example:
var originalQuery = from t in Transactions where t.Date < DateTime.Now ...
0
votes
1answer
135 views
How to String Concatenation in Entity SQL?
A very quick question
SQL:
SELECT VALUE ROW( ('#' + CAST(pack.PackageID as Edm.String)) as PackageID) From ProductPackage
It show error, edm.String not found, I also try String or Varchar,still ...
0
votes
1answer
33 views
How do BeginsWith operations work in ESQL?
How do you perform a BeginWith SQL operation in ESQL syntax?
0
votes
1answer
48 views
sqlcode does not return DEADABORT when deadlock occurs in ESQL
I'm trying to understand how deadlocks can be managed using ESQL. I created 2 concurrent processes that try to update a "customers" table, exactly like the example given in O'Neil's book "Database": ...
0
votes
1answer
297 views
Limiting EF result set permanently by overriding ObjectQuery ESQL
Does anyone have any idea how to limit result set of EntityFramework permanently? I'm speakink about something like this Conditional Mapping. This is exacly what I want to achieve with one exception: ...
0
votes
2answers
121 views
entity framework 4 and NOT using ESQL
Starting to play around with EF4 and I notice there are several different ways to query the DB.
Currently I created an .EDMX with my tables/objects created.
In code when I use the Where method, it's ...
0
votes
2answers
192 views
SQL from EntityDataSource
Is there an easy way to see SQL statements generated by EntityDataSource?
SQL Server profiling/tracing is not an option here.
Thank You
0
votes
1answer
138 views
Informix Dynamic Server / ESQL question - TEXT Update versus TEXT insert
I maintain a 3rd party Informix driver that's written with ESQL-style (Informix API) calls. I'm working on a bug where, for TEXT fields, INSERTs work fine and UPDATEs fail. Stepping through the ...
0
votes
1answer
447 views
Comparing DateTime in Entity Framework with an Sql Server Compact database
Why this code throws a System.NotSupportedException telling that The specified method 'int? DateDiff(string, DateTime?, DateTime?)' on the type 'System.Data.Objects.SqlClient.SqlFunctions' cannot be ...
0
votes
1answer
160 views
How to change the condition of 2 ESQL where clauses in the final expression?
I have a fairly complex query where I am filtering results with a LIKE statement. Here is the query:
var qsFilter = entities.QueryStatements.Where("it.Statement LIKE @searchTerm",
new ...
0
votes
2answers
289 views
Blanks causing problem while fetching rows (Informix)
The always interesting issue of NULL Vs Blank is driving me bit crazy now.
I have two ESQL/C structures that represent two tables. I'm fetching a row from
one table in a cursor. Using the values of ...
0
votes
1answer
121 views
How should i use navigation properties while writing a query using eSQL?
i am trying to write a query using eSQL where in my entity has got navigation properties. i am not able to include these navigation properties in the query. Like in Linq to SQL we have this .Include ...
0
votes
1answer
377 views
Entity Sql Group By problem, please help
help me please with this simple E-sql query:
var qStr = "SELECT SqlServer.Month(o.DatePaid) as month, SqlServer.Sum(o.PaidMoney) as PaidMoney FROM XACCModel.OrdersIncomes as o group by ...
0
votes
2answers
2k views
Comparing Date / DateTime ine Entity SQL Where clause
I have a method which accepts an ObjectQuery and adds Where clauses to it depending on whether it receives values for various filter parameters. The method has to return an ObjectQuery. How can i do a ...