Cuestión : Del BCD a la DIFICULTAD

¡Los estimados expertos,

I tienen un ejemplo del BCD y quiero convertirlo a ADO.
It contengo 1 TDatabase componente y 6 TQuery-components.
I no pueden imaginar con el código y el designcode del the
example cuáles la estructura de la base de datos es! ¿El
1. cuántas tablas están allí y cómo son ellos llamaron?
2. ¿Cuáles son los nombres de columna de cada tabla?
2. ¿Cómo las tablas están conectadas con el eachother?
3. ¿Y hay llaves primarias y extranjeras? ¿el
Can alguien imagina lo que puede crear la estructura del is
so de la base de datos yo una base de datos predefinida del MS-Access? ¿el

Who está dispuesto a ayudarme? el
I ha puesto algo de los procedimientos y del designcode que el
comes con el componente y los 6 TQuery-components
in de TDatabase el code-section.

Peter Kiers
class= > " claro " del
> del " codeSnippet " del class= del
class= " lineNumbers " del
class= del
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
>object notpretty NeedApptsQuery " del class= " del id= " codeSnippet842405 del
= de StartDate: D1) y (<= de EndDate: D2))")
    Izquierda = 392
    Tapa = 560
    ParamData = <
      artículo
        DataType = ftString
        Nombre = “SchedName”
        ParamType = ptUnknown
      extremo
      artículo
        DataType = ftDate
        Nombre = “D1”
        ParamType = ptUnknown
      extremo
      artículo
        DataType = ftDate
        Nombre = “D2”
        ParamType = ptUnknown
      end>
  extremo
  objeto ApptSchedulesQuery: TQuery
    DatabaseName = “UTF”
    RequestLive = verdad
    SQL.Strings = (
      “Seleccionar * de GroupLink”
      “Donde ApptID =: ApptID ")
    Izquierda = 424
    Tapa = 560
    ParamData = <
      artículo
        DataType = ftString
        Nombre = “ApptID”
        ParamType = ptUnknown
      end>
  extremo
  objeto GetApptQuery: TQuery
    DatabaseName = “UTF”
    RequestLive = verdad
    SQL.Strings = (
      “Seleccionar * de GroupAppt”
      “Donde ApptID =: ApptID ")
    Izquierda = 456
    Tapa = 560
    ParamData = <
      artículo
        DataType = ftString
        Nombre = “ApptID”
        ParamType = ptUnknown
      end>
  extremo
  objeto DeleteApptLinkQuery: TQuery
    DatabaseName = “UTF”
    SQL.Strings = (
      “Cancelación de GroupLink”
      “Donde ApptID =: ApptID ")
    Izquierda = 488
    Tapa = 560
    ParamData = <
      artículo
        DataType = ftString
        Nombre = “ApptID”
        ParamType = ptUnknown
      end>
  extremo
  objeto DeleteApptQuery: TQuery
    DatabaseName = “UTF”
    SQL.Strings = (
      “Cancelación de GroupAppt”
      “Donde ApptID =: ApptID ")
    Izquierda = 520
    Tapa = 560
    ParamData = <
      artículo
        DataType = ftString
        Nombre = “ApptID”
        ParamType = ptUnknown
      end>
  extremo
  objeto SchedulesQuery: TQuery
    DatabaseName = “UTF”
    SQL.Strings = (
      “Distinto selecto (SchedName) de GroupLink ")
    Izquierda = 552
    Tapa = 560
  extremo
  dbUTF del objeto: TDatabase
    DatabaseName = “UTF”
    DriverName = “ESTÁNDAR”
    LoginPrompt = falso
    Params.Strings = (
      “DEFECTO DRIVER=PARADOX”
      “PERMITIR BCD=FALSE ")
    SessionName = “defecto”
    Izquierda = 448
    Tapa = 528
  extremo
extremo
(*---------------------------------------------------*)
procedimiento TMainForm.utfSchedMgrDeleteAppt (remitente: TObject; Appt: TJvTFAppt);
comenzar
  Con DeleteApptQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      ExecSQL;
    Extremo;
  Con DeleteApptLinkQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      ExecSQL;
    Extremo;
extremo;
(*---------------------------------------------------*)
procedimiento TMainForm.utfSchedMgrLoadBatch (remitente: TObject; BatchName: secuencia;
  BatchStartDate, BatchEndDate: TDate);
var
  Appt: TJvTFAppt;
  NewAppt: Boleano;
comenzar
  Con NeedApptsQuery hacer
    Comenzar
      ParamByName (“D1”) .AsDate: = BatchStartDate;
      ParamByName (“D2”) .AsDate: = BatchEndDate;
      ParamByName (“SchedName ").AsString: = BatchName;
      Abierto;
      Primero;
      Mientras que no hace el EOF
        Comenzar
          utfSchedMgr.RequestAppt (FieldByName (“ApptID ").AsString,
            Appt, NewAppt);
          Si NewAppt entonces
            Comenzar
              Appt.SetStartEnd (FieldByName (“StartDate ").AsDateTime,
                               FieldByName (“StartTime ").AsDateTime,
                               FieldByName (“EndDate ").AsDateTime,
                               FieldByName (“EndTime ").AsDateTime);
              Appt.Description: = FieldByName (“descripción ").AsString;
              Appt.AlarmEnabled: = FieldByName (“AlarmEnabled ").AsBoolean;
              Appt.AlarmAdvance: = FieldByName (“AlarmAdvance ").AsInteger;
              Con ApptSchedulesQuery hacer
                Comenzar
                  ParamByName (“ApptID ").AsString: = Appt.ID;
                  Abierto;
                  Primero;
                  Mientras que no hace el EOF
                    Comenzar
                      Appt.AddSchedule (FieldByName (“SchedName ").AsString);
                      Después;
                    Extremo;
                  Cierre;
                Extremo;
            Extremo;
          Después;
        Extremo;
      Cierre;
    Extremo;
extremo;
(*---------------------------------------------------*)
procedimiento TMainForm.utfSchedMgrPostAppt (remitente: TObject; Appt: TJvTFAppt);
var
  I: Número entero;
comenzar
  Con GetApptQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      Abierto;
      Si RecordCount > 0 entonces
        Corregir
      
        Comenzar
          Insertar;
          FieldByName (“ApptID ").AsString: = Appt.ID;
        Extremo;
      FieldByName (“StartDate ").AsDateTime: = Appt.StartDate;
      FieldByName (“StartTime ").AsDateTime: = Appt.StartTime;
      FieldByName (“EndDate ").AsDateTime: = Appt.EndDate;
      FieldByName (“EndTime ").AsDateTime: = Appt.EndTime;
      FieldByName (“descripción ").AsString: = Appt.Description;
      FieldByName (“AlarmEnabled ").AsBoolean: = Appt.AlarmEnabled;
      FieldByName (“AlarmAdvance ").AsInteger: = Appt.AlarmAdvance;
      Poste;
      Cierre;
    Extremo;
  Con DeleteApptLinkQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      ExecSQL;
    Extremo;
  Con ApptSchedulesQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      Abierto;
      Para I: = 0 a Appt.ScheduleCount - 1 hace
        Comenzar
          Insertar;
          FieldByName (“ApptID ").AsString: = Appt.ID;
          FieldByName (“SchedName ").AsString: = Appt.Schedules [I];
          Poste;
        Extremo;
      Cierre;
    Extremo;
extremo;
(*---------------------------------------------------*)
procedimiento TMainForm.utfSchedMgrRefreshAppt (remitente: TObject; Appt: TJvTFAppt);
comenzar
  Con GetApptQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      Abierto;
      Si RecordCount = 1 entonces
        Comenzar
          Appt.SetStartEnd (FieldByName (“StartDate ").AsDateTime,
                           FieldByName (“StartTime ").AsDateTime,
                           FieldByName (“EndDate ").AsDateTime,
                           FieldByName (“EndTime ").AsDateTime);
          Appt.Description: = FieldByName (“descripción ").AsString;
          Appt.AlarmEnabled: = FieldByName (“AlarmEnabled ").AsBoolean;
          Appt.AlarmAdvance: = FieldByName (“AlarmAdvance ").AsInteger;
        Extremo;
      Cierre;
    Extremo;
  Appt.ClearSchedules;
  Con ApptSchedulesQuery hacer
    Comenzar
      ParamByName (“ApptID ").AsString: = Appt.ID;
      Abierto;
      Primero;
      Mientras que no hace el EOF
        Comenzar
          Appt.AddSchedule (FieldByName (“SchedName ").AsString);
          Después;
        Extremo;
      Cierre;
    Extremo;
extremo;
(*---------------------------------------------------*)
class= del

Respuesta : Del BCD a la DIFICULTAD

Picosegundo.   cómo utilizar preguntas con DIFICULTAD ver http://delphi.about.com/od/database/l/aa050101a.htm

si usted quiere utilizar eg. El ms TIENE ACCESO y dejó a su uso del programa los componentes http://zeos.firmos.at/portal.php de la base de datos de ZEOS

, el ms grande ACCESSS de la ventaja no sólo, pero usted puede entonces utilizar también el servidor del ms SQL, MI SQL, ..... - > la flexibilidad más grande para la ayuda de más systemes de la base de datos

 

Otras soluciones  
 
programming4us programming4us