Version 5.x contains the ability to use stored procedures and logic. You
could also look into using lua as your scripting language for MySQL.
-Original Message-
From: Lourenço de Paula
To: [EMAIL PROTECTED]
Sent: 6/15/04 11:54 AM
Subject: Re: Batch Script
Thanks, but can not I use a
Thanks, but can not I use a MySQL native script language like in MS Sql
Server and Oracle?
- Original Message -
From: "George Chelidze" <[EMAIL PROTECTED]>
To: "Lourenço de Paula" <[EMAIL PROTECTED]>
Sent: Tuesday, June 15, 2004 1:23 PM
Subject: Re: Bat
Hi,
In my database I've a table with a field that control de version of may tables, now I
need to make a script to update my tables and I would like to make something like that:
DECLARE
i number;
BEGIN
select version into i from mytable;
if version = 1 then
create table...
insert