full project
-
Stop posting these messages; nobody is going to give a you a full project for anything.
The best things in life are not things.
-
Thanks anyway, but I just need to train the program through a project , but if you please you can explain to me some thing in (windows form Application , ADO)
-
Buy a book, read some articles, use Google. Unless you are willing to learn for yourself you will never succeed in this field.
The best things in life are not things.
Univote countered
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
You have been given the advice you need: Pick one of: 1) Get a book and read it. Do all the examples yourself. 2) Go on a formal course, and learn that way. 3) Find an internet tutorial and try to keep up with it. Even if we gave you a full project, what would you learn from it? Nothing useful. You might be able to follow it a bit and see how it works, but that would not give you any insight into why it works. The Why is far more important than how. For example, this is all the code you need to retrieve information from an SQL Server database:
using (SqlConnection con = new SqlConnection(strConnect)) { con.Open(); using (SqlCommand com = new SqlCommand("SELECT iD, description FROM PurchaseTypes WHERE iD=@ID", con)) { com.Paramaters.AddWithValue("@ID", requestedId); using (SqlDataReader reader = com.ExecuteReader()) { while (reader.Read()) { int id = (int) reader\["iD"\]; string desc = (string) reader\["description"\]; Console.WriteLine("ID: {0}\\n {1}", iD, desc); } } } }
Using that pattern you can retrieve any info from any SQL server database. But you don't know why
using
is there. Would it work without it? Yes. So why put it there? Why the parameters? and so forth. Structured learning tells you these things. And they are important, because if you don't know them, the will bite you on the ass. Not now, but someday, when they have hidden for a while, and you have no idea that the problem was caused in that code that worked so well... Oops. Where did my database go?Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
Univote countered
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
Thanks, it's only because I haven't given him/her a full working project. Just another lazy B who thinks the world owes him a living.
The best things in life are not things.
I figured it was. How did he escape from Q&A? :laugh:
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
I figured it was. How did he escape from Q&A? :laugh:
Real men don't use instructions. They are only the manufacturers opinion on how to put the thing together. Manfred R. Bihy: "Looks as if OP is learning resistant."
-
If you do not even know the basics of Sql and C#, how will a project make sense to you? How can you even think of learning technologies by investigating code. It may help you when you have a basic understand of the technology, but not at the initial stage. Get hold of some good books that teach you SQL and C#, learn and understand the basic concepts, write some code and compile it yourself. When it doesn't work the way it should, debug your code and fix it, repeat this for each important concept that you learn. That way, you'll learn a lot more than what you can think of learning from code written by someone else.
-
Stop posting these messages; nobody is going to give a you a full project for anything.
The best things in life are not things.
Hi, You can download code from wrox.com. They have complete code available for download for their books. That could help you to find a complete running DB application. with kudos, Pradeep
-
Hi, You can download code from wrox.com. They have complete code available for download for their books. That could help you to find a complete running DB application. with kudos, Pradeep