GD SQL HISTORY
Материал из GedeminWiki
(Различия между версиями)
SYSDBA (обсуждение | вклад) (Создана новая страница размером Category:База данных) |
SYSDBA (обсуждение | вклад) |
||
| Строка 1: | Строка 1: | ||
| + | |||
| + | <syntaxhighlight lang="SQL"> | ||
| + | CREATE TABLE gd_sql_history ( | ||
| + | id dintkey, | ||
| + | sql_text dblobtext80_1251 not null, | ||
| + | sql_params dblobtext80_1251, | ||
| + | bookmark CHAR(1), | ||
| + | creatorkey dintkey, | ||
| + | creationdate dcreationdate, | ||
| + | editorkey dintkey, | ||
| + | editiondate deditiondate, | ||
| + | exec_count dinteger_notnull DEFAULT 1 | ||
| + | ) | ||
| + | </syntaxhighlight> | ||
[[Category:База данных]] | [[Category:База данных]] | ||
Текущая версия на 11:34, 13 октября 2015
CREATE TABLE gd_sql_history ( id dintkey, sql_text dblobtext80_1251 NOT NULL, sql_params dblobtext80_1251, bookmark CHAR(1), creatorkey dintkey, creationdate dcreationdate, editorkey dintkey, editiondate deditiondate, exec_count dinteger_notnull DEFAULT 1 )