vote up 1 vote down star

I can't find how to do this on google anywhere. How do you save to a SQL DB using just C# code? Is it possible? The save method that comes default when you create a DB using the wizard dosen't actually save the DB:

this.Validate();
this.studentsBindingSource.EndEdit();
this.studentsTableAdapter.Update(this.studentsDataSet.FirstClass);
flag

Not exactly sure what you mean by "Save" the DB? – Rex M Apr 11 at 3:17
Actually update the file on the server not just the table adapter. – Lucas McCoy Apr 11 at 3:25
Are you able to retrieve data successfully from SqlServer? – Nathan Koop Apr 11 at 3:28
Yep, it loads and when I click the save button it dosen't throw any exceptions or anything. I'm using SQL Server Express Edition and C# 2008 Express Edition. Does either of these matter? It's also stored on the localhost, as I don't have a server lying around :P – Lucas McCoy Apr 11 at 3:30
see additional question below – Nathan Koop Apr 11 at 3:31
show 2 more comments

4 Answers

vote up 2 vote down check

It looks to me as though you are doing it correctly.

You should check your table adapter and verify that there is an update statement assigned. If you're using sprocs and only have the select sproc assigned then it'll be read only (and won't prompt you for the update/insert/delete sprocs).

link|flag
I'm a newbie when it comes to SQL programming, what are sprocs? – Lucas McCoy Apr 11 at 3:25
SQL "stored procedures", but since you ask I presume that this is not reason. – Nathan Koop Apr 11 at 3:27
You would be totally correct in that presumption ;-) – Lucas McCoy Apr 11 at 3:29
If you do select your tableadapter and then expand the UpdateCommand property, there is a CommandText property, does that have a value? – Nathan Koop Apr 11 at 3:31
Give me a minute I gotta go find that project.... – Lucas McCoy Apr 11 at 3:34
show 12 more comments
vote up 1 vote down

I can't get it to execute my query because I don't know how to do the connection string thing:

    private void button1_Click(object sender, EventArgs e)
    {
        SqlConnection conn = new SqlConnection("server=localhost;db=Database1;");
        SqlCommand x = new SqlCommand("SELECT ID, Name FROM People", conn);
        MessageBox.Show(x.ExecuteReader().ToString());
    }
link|flag
so it would select data even without the connectionstring? weird – Nathan Koop Apr 11 at 3:54
FYI: a great connection string reference website is connectionstrings.com – Nathan Koop Apr 11 at 3:55
That is the perfect word for it. – Lucas McCoy Apr 11 at 3:55
Thanks for the link I can't believe I never found this website! – Lucas McCoy Apr 11 at 3:56
Note: the code you have posted also doesn't open the sqlconnection so you should insert the following as line3: conn.Open(); – Nathan Koop Apr 11 at 3:59
show 6 more comments
vote up 1 vote down

Your connection string can be a few things depending on how you are configured to log into SQL.

Data Source=ServerName;Initial Catalog=DatabaseName;User Id=myUsername;Password=myPassword;

or

Data Source=ServerName;Initial Catalog=DatabaseName;Integrated Security=SSPI;

The latter is if you are using Windows Authentication; i.e. using the same user account you log into windows with.

DataSource is usually your machine's name or you can use (local) to get you over the hump should it be on the same machine you are working on.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.