How do I create a table in SQLite using the VS2008 Server Explorer

Posted by fishhead on Stack Overflow See other posts from Stack Overflow or by fishhead
Published on 2010-01-09T23:21:04Z Indexed on 2010/04/02 11:33 UTC
Read the original article Hit count: 219

Hello, I would like to create a table in a SQLite database using the Server Explorer in VS2008. I am able to do other operations on the database but when it comes to creating a table using the query builder I get Not Supported messages. is there another way other than writing code just for the sole purpose of creating the table?

CREATE TABLE myTable
(
ID INTEGER PRIMARY KEY AUTOINCREMENT,
Name VARCHAR(100)
)

.NET Framework Data Provider for SQLite 3.6.16

© Stack Overflow or respective owner

Related posts about sql

Related posts about server-explorer