Am 24.12.2009 02:16, schrieb Ernany:
> Hello guys,
>
> How i run sqllite with VB2005 , NE|T. I need tio run  *"Vacuum"*.
>
> Thanks a lot
>
> Ernany
> _______________________________________________
> sqlite-users mailing list
> sqlite-users@sqlite.org
> http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users
>

there is a sqlite .NET framework provider available on 
http://sqlite.phxsoftware.com/
So it's just something like that:

using (SQLiteCommand command = m_connection.CreateCommand())
{
     command.CommandText = "vacuum;";
     command.ExecuteNonQuery();
}

merry Christmas altogether, Bernd
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to