This is a pretty simple question, but I’m learning C# and I’m wondering if when you add a Local Database to your project (The book I’m using is Head First C#) if it’s a SQL Server database or just an Access database (or something else).
I’m using just the Windows forms to add a database, and it’s filling a bunch of columns in with the names/id’s/etc of a database I filled out. It was super easy to do (I can see why people like C# now) But I didn’t know if this was an actual SQL Server database you could do inserts/updates and such with. Or something else entirely.
I forgot to mention this is VS 2012 Express.
By default if you’re using VS 2012, a LocalDB database will be created. With prior versions of Visual Studio, the database will be SQL Server Express.