February 7, 2000

Delay Script Run in IE5

Question: My project is a based on thin client/server architecture. Internet Explorer 3.02 is the front end using ASP; ActiveX controls and DLLs form the business objects; and Oracle is the back end. We are now migrating from IE 3.02 to IE 5.0. The problem is that in IE5, the

A Simple Beginner’s Problem from a Swedish Student

Question: Facts: Employee(name,salary,boss,department) Question: Which employees earn more than their boss ? Answer: Please make sure you don’t share the results with your boss! : ) Try the following: use pubsgocreate table myemployee( name char(30), salary int, boss char(30), department char(15), constraint pk_employee primary key(name)) goinsert into myemployee (name,salary,boss,department)values (‘FRANK’,50000,’FRANK’,’ACCOUNTING’)insert