## @file
#
# Copyright (c) 2008, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
#
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#
##
# Import Modules
#
## TableReport
#
# This class defined a table used for data model
#
# @param object: Inherited from object class
#
#
## Create table
#
# Create table report
#
#
SqlCommand = """create table IF NOT EXISTS %s (ID INTEGER PRIMARY KEY,
ModuleID INTEGER DEFAULT -1,
ModuleName TEXT DEFAULT '',
ModuleGuid TEXT DEFAULT '',
SourceFileID INTEGER DEFAULT -1,
SourceFileFullPath TEXT DEFAULT '',
ItemName TEXT DEFAULT '',
ItemType TEXT DEFAULT '',
ItemMode TEXT DEFAULT '',
GuidName TEXT DEFAULT '',
GuidMacro TEXT DEFAULT '',
GuidValue TEXT DEFAULT '',
BelongsToFunction TEXT DEFAULT '',
Enabled INTEGER DEFAULT 0
## Insert table
#
# Insert a record into table report
#
#
def Insert(self, ModuleID = -1, ModuleName = '', ModuleGuid = '', SourceFileID = -1, SourceFileFullPath = '', \
ItemName = '', ItemType = '', ItemMode = '', GuidName = '', GuidMacro = '', GuidValue = '', BelongsToFunction = '', Enabled = 0):
SqlCommand = """insert into %s values(%s, %s, '%s', '%s', %s, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %s)""" \
return Item[0]