I've checked other Stack Overflow questions to find answers, but I just can't find a solution to this. I am trying to insert string data into a SQL CE (local database).

I can read from the database, but I cannot insert data, regardless of whether I hard-code it or try to add it with parameters.

The table to be modified is called users. It has 3 columns: ID, name, email.

Here is the code I am using:

string connection = Properties.Settings.Default.LocalDBConnectionString;

using (var con = new SqlCeConnection(connection))
{
    con.Open();

    // (I also tried adding with parameters but couldn't get it working.)
    using (var com = new SqlCeCommand("INSERT INTO users (name, email) " +
                                      "VALUES (N'jimmy', N'email@jim.com')", con))
    {
        int numRowsAffected = com.ExecuteNonQuery();

        // This returns '1 row affected' but doesn't actually update the database
        Console.WriteLine(numRowsAffected);
        Console.ReadKey();
    }
}

Although the Console outputs 1, because 1 row is affected, when I go back into the database and check, it has not inserted the new data.

I was following this tutorial, but only the Read works, the Insert or write doesn't work.

I also found this similar Stack Overflow question, but using parameters, still couldn't get it to work.


Edit:

My connection string is:

Data Source=|DataDirectory|\LocalDB.sdf

I don't know how to find the Build Settings, it is a Local Database I created within the console application solution, It is stored in the project directory.

I am in "Debug" configuration if that helps?


Here is another example I found on the internet:

SqlCeConnection con = new SqlCeConnection(Properties.Settings.Default.LocalDBConnectionString);
con.Open();

SqlCeCommand comInsert = new SqlCeCommand ("INSERT INTO users(name, email) VALUES('value 1', 'value 2')", con);
comInsert.ExecuteNonQuery();

SqlCeCommand comSelect = new SqlCeCommand("SELECT * FROM users", con);
SqlCeDataReader reader = comSelect.ExecuteReader();

while (reader.Read())
{
    Console.WriteLine("{0} {1}", reader["name"], reader["email"]);
    Console.ReadKey();
}

con.Close();

I just copied and pasted this in, and changed the main variables. This example temporarily inserts the data, but when I go to Visual Studio's Server Explorer and view the table, it hasn't updated.

link|improve this question

Does it not effect the database during the current run of your application (i.e. what happens if you breakpoint readkey and execute SELECT * FROM users WHERE name = 'jimmy'), or does it only not persist between runs? If it's not persisting between runs, where is your database file stored, is it a resource of your project (and if so what are the build settings for that file), and what does your connection string look like? – Paul Wheeler Jul 9 '11 at 18:12
feedback

2 Answers

up vote 3 down vote accepted

Are you sure that the database you INSERT into and the database you're looking at with Server Explorer are the same one?

Remember, we're talking about a file-based DB here (SQL Server CE). So it could be that you're INSERTing into a copy of your DB and then look at the (unchanged) original.

  • Is the DB file part of your solution? If so, does it get copied to the output directory (e.g. bin\Debug)? Check the properties of the corresponding solution item, like in the screenshot below (sorry for it being in German):

    Screenshot showing a 'Local Database' project item and its 'Copy to output directory' property setting

  • Where exactly does DataDirectory in the connection string point to? If you're not sure, replace it with something absolute for the time being and see if that solves your problem.

Make double sure that your connection string really points to the database you're looking at with Server Explorer!

link|improve this answer
Your Right!, I was looking at the wrong DB, I had one db in the project file and another in the bin/debug folder, which was the one I was writing to. What would I have to do to change all the paths to just one DB located in the bin/debug directory? – JustAnil Jul 9 '11 at 18:50
Hmm... I can't quite remember what I ended up doing when I had the same problem, but: I'd suggest you set up your DB file solution item so that it will be copied to the output ("bin") directory, and change the connection string to something like Data Source=.\LocalDB.sdf. (During program execution, your bin directory will be the current directory.) Or you designate any other directory and have the DB file copied there & the connection string pointing there. You can use System.Data.Common.DbConnectionStringBuilder to manipulate parts of a connection string at runtime. – stakx Jul 9 '11 at 19:03
1  
Here is more info regarding this issue from MSDN for anyone else with the same problem. blogs.msdn.com/b/smartclientdata/archive/2005/08/26/456886.aspx – JustAnil Jul 10 '11 at 10:06
feedback

I was also having same problem so i checked my solution explorer connection string and pasted in code file and problem was solved so make changes to your connection string

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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