To Creators-
In my attempt to obtain 1 working example of this DB:
I am compiling all of the code. I have a request for Monty with the creators
in theit function declarations:
e.g.
int
strcasecmp(s1, s2)
 const char *s1, *s2;

please enclose the const char *s1, *s2 declaration within the argument  and
please keep on same line as
int strcasecmp(const char *s1,const char *s2)

as it stands now if another source translation unit references strcasecmp
there will be An "unresolved external reference"
Tack!
Martin
----- Original Message -----
From: "Wynne Crisman" <[EMAIL PROTECTED]>
To: "'Wileynet'" <[EMAIL PROTECTED]>; "'mysql users'"
<[EMAIL PROTECTED]>
Sent: Wednesday, March 26, 2003 4:47 PM
Subject: RE: Beginner question - Preventing Duplicate Entries


> If you wanted to use MyISAM tables and peform an initial select to
> determine whether you should insert, you could lock the table you would
> be selecting/insert from.  'LOCK TABLES table_name WRITE'  Don't forget
> to unlock the table when you are done 'UNLOCK TABLES', otherwise you
> will likely have deadlocks.
>
> ~Wynne
>
> -----Original Message-----
> From: Wileynet [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, March 26, 2003 2:04 PM
> To: 'mysql users'
> Subject: Beginner question - Preventing Duplicate Entries
>
>
> Is there a sql statement that would not allow the same entry twice.
> Something like INSERT into myTable s WHERE s != Value(?). I don't know
> if that makes sense but I thought I would give it a shot.
>
> Basically I want to know if it is possible and if so can you point me to
> a webpage or give me an example if you can?
>
> Thanks in advance -
> Wiley
>
>
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:
> http://lists.mysql.com/[EMAIL PROTECTED]
>
>
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]
>
>

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to