Posted by Padma Chitturi in Uncategorized. Leave a Comment Hi Folks, It has been such a long time that I have written on SQL Server. Let’s go for a trip on SQL architecture and few things which really might interest us. Every one of us write queries…
Sharing a form to generate Excel file report from SQL query in Oracle Forms. This form can be used in Oracle Forms 6i and 10g / 11g. Below is the screen shot of this form and could be download from the following link: Excel_Rep.Fmb A procedure…
I'm new in jasper ireport , and I want to know if it is possible to create a report only with static text and parameters, but without any sql query. When I design my report it is possible , but when I try to preview it , I get this message: "The docu…
SQL query for entity types: using (var ctx = new SchoolDBEntities()) { var studentList = ctx.Students.SqlQuery("Select * from Student").ToList<Student>(); } 注意:查询的字段必须和实体中的属性名对应 SQL query for non-entity types: using (var ctx = new SchoolDB…
Execute Native SQL Query You can execute native raw SQL query against the database using DBContext. You can execute the following types of queries: SQL query for entity types which returns particular types of entities SQL query for non-entity types w…