Example #1
0
        public bool CreateTable(ISqlData data)
        {
            try
            {
                SQLiteCommand command = new SQLiteCommand(data.GetCreateCommand(), m_dbConnection);
                command.ExecuteNonQuery();
            }
            catch (Exception e)
            {
                Trace.WriteLine(e);
                return(false);
            }

            return(true);
        }