home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 December
/
PCWorld_1998-12_cd.iso
/
software
/
sybase
/
ASA
/
asa60.exe
/
data1.cab
/
scripts_files
/
instjava.sql
< prev
next >
Wrap
Text File
|
1998-07-27
|
2KB
|
55 lines
-- ************************************************************************
-- * Copyright (C) 1998 by Sybase Inc. All rights *
-- * reserved. No part of this software may be reproduced *
-- * in any form or by any means - graphic, electronic or *
-- * mechanical, including photocopying, recording, taping *
-- * or information storage and retrieval systems - except *
-- * with the written permission of Sybase Inc. *
-- *************************************************************************
--
-- WARNING: This is a program generated file. Do not edit.
--
create variable @do_installs char(1)
go
if CURRENT USER <> 'SYS' then
set @do_installs = 'Y'
elseif @install_java_classes = 'Y' then
set @do_installs = 'Y'
else
set @do_installs = 'N'
end if
go
if @do_installs = 'Y' then
install java new
external jar 'ASASystem'
only java.beans.*,
java.io.*,
java.net.*,
java.lang.*,
java.math.*,
java.rmi.*,
java.security.*,
java.sql.*,
java.text.*,
java.util.*,
sun.io.*,
sun.misc.*,
sun.security.provider.*
from file 'classes.zip'
end if
go
if @do_installs = 'Y' then
install java new
external jar 'ASAJDBC'
from file 'asajdbc.zip'
end if
go
if @do_installs = 'Y' then
install java new
external jar 'ASAJDBCDRV'
from file 'jdbcdrv.zip'
end if
go
drop variable @do_installs
go