home *** CD-ROM | disk | FTP | other *** search
- <!---- Create the Client variable storage tables in a datasource --->
-
- <cfquery name="data1" datasource="#DSN#">
- create table CDATA
- (
- cfid char(20),
- app char(64),
- data memo
- )
- </cfquery>
-
- <cfquery name="data2" datasource="#DSN#">
- create unique index primary on CDATA (cfid,app)
- </cfquery>
-
- <cfquery name="global1" datasource="#DSN#">
- create table CGLOBAL
- (
- cfid char(20),
- data memo,
- lvisit date
- )
- </cfquery>
-
- <cfquery name="global2" datasource="#DSN#">
- create index id2 on CGLOBAL (cfid)
- </cfquery>
- <cfquery name="global2" datasource="#DSN#">
- create index id3 on CGLOBAL (lvisit)
- </cfquery>
-