2
votes
1answer
14 views
How do you update a table with a foreign key to another table in ADO.Net Entity Model?
I have 2 tables, Table1 has a primary key 'CustomizationId', and Table2 has a FK Customizationid which matches this. Table2 has no primary key.
I am trying to add a new record from a web based form. …
0
votes
1answer
17 views
SQLiteFunction Simple Not Working
I an attempting to use a SQLiteFunction from my C# and ADO.NET code. Can anyone say why I get this problem?
An unhandled exception of type 'System.Data.SQLite.SQLiteException' occurred in …
1
vote
1answer
21 views
Transactions carrying over after an ExecuteNonQuery?
Hello, I've discovered something pretty amazing that works recently. I am wanting to know if it is "correct" and if it should work "everywhere." (as, it's not just a coincidence and it's supported as …
1
vote
2answers
44 views
ADO.NET Entity Framework
I have little bit knowledge on Entity Framework.As we can do almost all operations using
MS Application Block,What are the benefits do we gather using Entity Framework ?
0
votes
3answers
36 views
DataTable filter expression with DateTime and less-or-equal operator problem
I have the following code:
DataTable t = new DataTable();
t.Locale = CultureInfo.InvariantCulture;
t.Columns.Add("Date", typeof(DateTime));
DateTime …
0
votes
1answer
47 views
Performance gains using straight ado.net vs an ORM ?
would i get any performance gains if i replace my data access part of the application from nhiberate to straight ado.net ?
i know that NHibernate uses ado.net at its core !
3
votes
5answers
128 views
What is a better practice ? Working with Dataset or Database
I have been developing many application and have been into confusion about using dataset.
Till date i dont use dataset and works into my application directly from my database using queries and …
2
votes
2answers
55 views
How can i retrieve a table from stored procedure to a datatable
I created a stored procedure so as to return me a table
something like that
create procedure sp_returnTable
body of procedure
select * from table
end
When i call this sp on frontend what code i …
0
votes
2answers
32 views
SQL <-> Class (De)Serializer?
Today i learned this
JavaScriptSerializer ser = new JavaScriptSerializer();
Foo foo = ser.Deserialize<Foo>(jsonSz);
I had to match the class with the json i …
5
votes
4answers
80 views
What is the most annoying feature (or lack of feature) you have found in the Entity Framework?
I am starting with the Entity Framework. It sounds great. But I am wondering if I should watch out for some weakness somewhere. Any experience there?
0
votes
0answers
18 views
Connection Pool in the context of ADO.NET
Like in ThreadPool
Is connection pool is a waiting threads for establishing ADO.NET connection controlled by CLR ?. I mean "Pooling" mechanism is same in both ADO.NET and MultiThread ?
1
vote
1answer
40 views
Efficiently adding large amounts of text to a database
I have a C# app that needs to add large amounts of text to a SQL Server database (one row could have up to 1GB of text). So, I have some code that looks like:
SqlParameter param = …
2
votes
1answer
18 views
SqlDataReader doesn’t have third record set
I have a Stored Procedure that returns three record sets. Here it is being called in Studio.
EXEC CampaignData '007CF7F8-AE8D-DE11-8BBA-0003FF4C13C9'
I can't cut and paste the record sets from …
0
votes
1answer
12 views
problem installing the WCF data services
I am trying to install the WCF data services from
http://www.microsoft.com/downloads/details.aspx?familyid=79d7f6f8-d6e9-4b8c-8640-17f89452148e&displaylang=en
However, I only get the error …
0
votes
4answers
31 views
How does ORM solve bidirectional relationship between entities (NHibernate, for example)?
I'm writing a homework for my RDBMS class, I need to perform CRUD operations on quite simple domain, which is cyber sport championship.
Students are required to use ADO.NET. My question is how can I …
