Home
last modified time | relevance | path

Searched refs:tableName (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/storage/
DDatabaseAuthorizer.cpp50 int DatabaseAuthorizer::createTable(const String& tableName) in createTable() argument
56 return denyBasedOnTableName(tableName); in createTable()
59 int DatabaseAuthorizer::createTempTable(const String& tableName) in createTempTable() argument
61 return denyBasedOnTableName(tableName); in createTempTable()
64 int DatabaseAuthorizer::dropTable(const String& tableName) in dropTable() argument
69 return denyBasedOnTableName(tableName); in dropTable()
72 int DatabaseAuthorizer::dropTempTable(const String& tableName) in dropTempTable() argument
74 return denyBasedOnTableName(tableName); in dropTempTable()
77 int DatabaseAuthorizer::allowAlterTable(const String&, const String& tableName) in allowAlterTable() argument
83 return denyBasedOnTableName(tableName); in allowAlterTable()
[all …]
DDatabaseAuthorizer.h46 int createTable(const String& tableName);
47 int createTempTable(const String& tableName);
48 int dropTable(const String& tableName);
49 int dropTempTable(const String& tableName);
50 int allowAlterTable(const String& databaseName, const String& tableName);
52 int createIndex(const String& indexName, const String& tableName);
53 int createTempIndex(const String& indexName, const String& tableName);
54 int dropIndex(const String& indexName, const String& tableName);
55 int dropTempIndex(const String& indexName, const String& tableName);
57 int createTrigger(const String& triggerName, const String& tableName);
[all …]
/external/webkit/WebCore/inspector/front-end/
DDatabaseTableView.js26 WebInspector.DatabaseTableView = function(database, tableName) argument
31 this.tableName = tableName;
58 …tx.executeSql("SELECT * FROM " + this.tableName, null, InspectorController.wrapCallback(this._quer…
72 … emptyMsgElement.textContent = WebInspector.UIString("The “%s”\ntable is empty.", this.tableName);
86 …ntent = WebInspector.UIString("An error occurred trying to\nread the “%s” table.", this.tableName);
DDatabasesPanel.js178 showDatabase: function(database, tableName) argument
187 if (tableName) {
190 view = database._tableViews[tableName];
192 view = new WebInspector.DatabaseTableView(database, tableName);
193 database._tableViews[tableName] = view;
261 for (var tableName in database._tableViews) {
262 if (!(tableName in tableNamesHash)) {
263 if (this.visibleView === database._tableViews[tableName])
265 delete database._tableViews[tableName];
554 WebInspector.SidebarDatabaseTableTreeElement = function(database, tableName) argument
[all …]
/external/clearsilver/python/examples/base/
Dodb_sqlite.py87 tableName = table.getTableName()
88 tmpTableName = tableName + "_" + str(os.getpid())
100 oldcols = self.listFieldsDict(tableName)
118 sql = "insert into %s select %s from %s" % (tmpTableName, tmpcolnames, tableName)
121 sql = "drop table %s" % tableName
127 … sql = "insert into %s(%s) select %s from %s" % (tableName, tmpcolnames, tmpcolnames, tmpTableName)