[PHP-DB] odbc_columns() and DB2

2001-01-18 Thread szii
whole lot of what looks to be random strings. I can see parameter lists where there should be names or schemas for example. Again, it looks like random memory. If SQLColumns() is failing though, when the bindcols() method is called it'll bind random stuff, so it's not terribly unexpecte

RE: [PHP-DB] odbc_columns() and DB2

2001-01-19 Thread szii
Yeah, I'm using the Unified ODBC. The abstraction layer over DB2's CLI is faster than "real" ODBC. -Szii At 08:57 AM 1/19/01 -0500, Andrew Hill wrote: >Regarding the wrapper - I assume you are using the built-in unified-odbc... >which isn't really ODBC. >As I

[PHP-DB] odbc_columns()

2001-01-22 Thread szii
e bindcols() method is working. After more playing, I still cannot seem to actually USE the results of an odbc_columns() call on DB2 since just about everything "fetch-related" segfaults. Is there another method or set of methods that I'm missing? Thoughts? Ideas? -Szii --

Re: [PHP-DB] Connectivity to AS/400

2001-02-04 Thread szii
m-db2=. Make sure you run the CATALOG commands on the client so that it can find the AS400 database. 'Luck! -Szii At 10:41 AM 2/4/2001 -0800, Pete Lancashire wrote: >I'm going to be trying to connect to the native DB2 database in a AS/400 >So far thats all I know about the IBM side

Re: [PHP-DB] db2 with php

2001-02-04 Thread szii
can add a line into /etc/ld.so.conf too. -Szii At 11:08 PM 2/4/2001 -0500, Chris Book wrote: >Hello, > >I've installed db2 and created the default instance at /home/db2inst1/. >PHP is compiled with the --with-ibm-db2 option, however when I try to start >apache I get the m

Re: [PHP-DB] Tricky one - include($identifer);

2001-02-07 Thread szii
http://www.php.net/manual/en/function.eval.php Couple of notes from the userbase show how to include HTML in a php $content passed to eval() 'Luck. -Szii At 05:07 PM 2/8/2001 +1300, Simon Helson wrote: >Hey guys - I've been mulling this one over for a few days now - and still

[PHP-DB] mysql_insert_id()

2001-03-12 Thread szii
Is there a known way to "reset" this field? If I make a call and it succeeds, then it should be set. If it fails, shouldn't it at least be reset to 0 or -1 instead of simply the last successful insert? Is this the expected behavior? -Szii -- PHP Database Mailing List (htt

Re: [PHP-DB] Another Drop down question

2002-03-27 Thread szii
The easiest way... > $getlist = mysql_query("SELECT distinct Writer FROM stories"); > echo " \n"; echo "Search All"; > while ($row = mysql_fetch_array($getlist)) { > echo ' '.$row["Writer"]."\n"; > } > echo &q

Re: [PHP-DB] need some help...

2002-04-02 Thread szii
"; // Now fopen() the file, fputs the $output, and fclose() the file. ** http://www.php.net/manual/en/function.fopen.php http://www.php.net/manual/en/function.fputs.php http://www.php.net/manual/en/function.fclose.php Party on! -Szii -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DB] Complex (for me) table "join" - help please?

2002-04-19 Thread szii
is no match. 'Luck -Szii - Original Message - From: "Peter Westergaard" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 19, 2002 2:46 PM Subject: [PHP-DB] Complex (for me) table "join" - help please? > I'm trying to perform a &qu

Re: [PHP-DB] Re: Retrieve information from mutiple tables

2002-04-22 Thread szii
uot;])) && (sizeof($result["col1"]))) { // do stuff here } Remember that the above SEQUENCE is important. If you deviate from it, you may get "unknown variable" or other error messages. -Szii - Original Message - From: "Prodoc" <[EMAIL PRO

Re: [PHP-DB] auto-increment question

2002-04-23 Thread szii
This is more of a MySQL question, but you can set the column default for the auto_increment column to something other than 1. Look up the "SET DEFAULT" clause of the table create / alter table calls. -Szii - Original Message - From: "Dan Swensen" <[EMAIL PROTEC

Re: [PHP-DB] please help!

2002-04-23 Thread szii
ooks like you were trying to do string appends, but they're not being used correctly 'Luck -Szii - Original Message - From: "Evans, Josh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 11:26 AM Subject: [PHP-DB] please help!

Re: [PHP-DB] User getting superuser access. ack!

2002-04-23 Thread szii
Well, that looks like a problem within the findLoginType() call. Since it's not been included, it's hard to help you. :) 'Luck -Szii - Original Message - From: "J. Wharton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 23,

Re: [PHP-DB] User getting superuser access. ack!

2002-04-24 Thread szii
years old by now, and I'm not sure if it ever changed, or what the status is currently. 'Luck! -Szii - Original Message - From: "J. Wharton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 8:51 AM Subject: Re: [PHP-DB] User g

Re: [PHP-DB] Mssql/Sybase errors

2002-04-25 Thread szii
hehehe, you recoded PHP to reconnect to MSSQL, but you forgot to redo your connection stuff. "Sybase error:" means that you're connecting to Sybase and not MSSQL. *wink* 'Luck -Szii - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECT

Re: [PHP-DB] FORM not inserting data

2002-04-26 Thread szii
put in a "var_dump($sql);die();" right after $result = mysql_query($sql); Then copy/paste it into mysql's command line util, and see what you get. -Szii - Original Message - From: "Neil" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thu

Re: [PHP-DB] selected problem

2002-04-26 Thread szii
When you build the list up, originally, you'll NOT put "selected" on Choose City, but move it to "Alexandria." -Szii - Original Message - From: "its me" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 26, 2002 1:39 AM Su

Re: [PHP-DB] Session Problem, Please Help.....

2002-05-02 Thread szii
I believe it's because $CLIENTID is not set at ALL before you register it. (ie, isset($CLIENTID) would fail) Therefore it cannot register the variable...there's nothing for it to register or track. Try... $CLIENTID = ""; session_register("CLIENTID"); $CLIENTID="SOMEVALUE"; - Original Mes

Re: [PHP-DB] Re: Spaces Problem php & mysql

2002-05-02 Thread szii
le ( name ) VALUES ( '$name' ) Make sure you escape out all single quotes in $name. $name = " This is Paul's field." . . . INSERT INTO table ( name ) VALUES ( '$name' ) Will fail, because you have VALUES ('This is Paul'); Post the full value o

Re: [PHP-DB] Global Connection object

2002-05-02 Thread szii
e has pooling capabilities, so it's not really any overhead to "reconnect." If no pooling is available, then you limit yourself (and your webserver) to a single connection. (Will kill your performance.) HTH. 'Luck -Szii - Original Message - From: "Shaun Johnston&qu

Re: [PHP-DB] Re: Spaces Problem php & mysql

2002-05-02 Thread szii
AddSlashes() or AddCSlashes() -Szii - Original Message - From: "Paul" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, May 02, 2002 4:11 PM Subject: Re: [PHP-DB] Re: Spaces Problem php & mysql > On Thursday 02 May 2002 10:10 am, you wrot

Re: [PHP-DB] sql querry problem

2002-05-03 Thread szii
"Delete from" does not work with multiple tables, AFAIK.. -Szii - Original Message - From: "andy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 03, 2002 2:02 AM Subject: [PHP-DB] sql querry problem > Hi there, > > I do have

Re: [PHP-DB] need help on improving performance on this querry

2002-05-07 Thread szii
SELECT DISTINCT L.* from data.languages L, data2.user U WHERE L.id IN (U.language_1, U.language_2, U.language_3) order by name; I believe the IN clause is a shade faster than multiple ORs, but I'm not 100% sure. 'Luck -Szii - Original Message - From: "andy" &l

Re: [PHP-DB] PHP/MySQL and inserting blob data?

2002-05-09 Thread szii
$escdata = addslashes($data); UPDATE Blabla SET value = '$escdata' WHERE... Make sure you use addslashes, though. It's important. 'Luck -Szii - Original Message - From: "Hadmut Danisch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: [PHP-DB] DB and eval. HELP !!!

2002-05-20 Thread szii
foreach($website = mysql_fetch_array($result)) { $text = "You can go here: and find information"; eval($text); } You get the idea... 'Luck -Szii - Original Message - From: "Bogdan ROMAN" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monda

Re: [PHP-DB] problems 'adding' to MySQL DBs

2002-05-20 Thread szii
// command line interface. You can also use the mysql_error() and mysql_errno() calls to see what went wrong. -Szii - Original Message - From: "cin" <[EMAIL PROTECTED]> > > > mysql_connect("localhost", "test", "t

Re: [PHP-DB] DB and eval. HELP !!!

2002-05-20 Thread szii
;information"; > } The above code doesn't even require an eval() call. Apologies for the confusion.. -Szii - Original Message - From: <[EMAIL PROTECTED]> To: "Bogdan ROMAN" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, May

Re: [PHP-DB] DB and eval. HELP !!!

2002-05-20 Thread szii
I'm sorry, I'm having an "off day." This'll be my last post on the subject. *sigh* Apologies up front... while($website = mysql_fetch_array($result)) { $text = "You can go here: " . $website['originalDomain'] . " and find information

Re: [PHP-DB] JOIN statement not producing expected output

2002-05-20 Thread szii
me basic info on SELECTs. http://www.mysql.com/documentation/mysql/bychapter/manual_Reference.html#SELECT 'Luck -Szii - Original Message - From: "admin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, May 20, 2002 5:48 PM Subject: [PHP-DB] JOIN statement not pro

Re: [PHP-DB] replication questions

2002-05-20 Thread szii
in `my.cnf' or just exclude a set of databases with replicate-ignore-db. -- Two-way replication is not supported yet. http://www.mysql.com/documentation/mysql/bychapter/manual_MySQL_Database_Administration.html#Replication 

Re: [PHP-DB] xml doc validation .... details ...... ! ! ! !

2002-05-20 Thread szii
Your questions are far too vague and XML/XML:Schema/XSLT etc are far too complicated to explain without definitive focus'd questions. XML allows you to do whatever YOU want in whatever format YOU want. Best help I can give is this... http://www.w3.org/ 'Luck -Szii - Origin

Re: [PHP-DB] String datetime to DateTime

2002-06-20 Thread szii
Hmm...odd. I guess their %s (yes that was a typo) looks for a space as a delimiter and not the specified next one. Easiest workarounds off the cuff... 1) sscanf() to get the bulk of the data out, then regex out the %s string. 2) eregi_replace() Jun with the numeric 3) Dump it as numeric inste

Re: [PHP-DB] got it, thanks

2002-06-24 Thread szii
Because it's not $s in the context of a printf() call. It is %s to denote a string replacement. -Mike - Original Message - From: "Matthew Crouch" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 12:41 PM Subject: [PHP-DB] got it, thanks > > > Seth Yount wrote

Re: [PHP-DB] check two tables at same time?

2002-06-24 Thread szii
SQL JOINs... http://www.mysql.com/doc/J/O/JOIN.html -Mike - Original Message - From: "Noah Spitzer-Williams" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 4:21 PM Subject: [PHP-DB] check two tables at same time? > hey guys, > > im trying to figure out a

Re: [PHP-DB] Works with one server and not the other

2002-06-24 Thread szii
MySQL doesn't support subselects. Look up mysql_insert_id(). It'll return the ID of the last inserted record. Or just break out the second INSERT statement into one "SELECT" and then the actual INSERT. -Mike - Original Message - From: "Christine Clerc" <[EMAIL PROTECTED]> To: <[EMAI

Re: [PHP-DB] what the heck? (elementary question)

2002-06-24 Thread szii
- Original Message - From: "Cosby, Christopher" <[EMAIL PROTECTED]> > I don't want to start a tangent here, but the most accepted way for > generating HTML with PHP is to NOT generate HTML with PHP. Thus, the > original code should be written like this: Huh? ".. most accepted way for g

Re: [PHP-DB] Re: brand new elementary question

2002-06-24 Thread szii
Just a quick follow up... from http://www.w3.org/MarkUp/html-spec/html-spec_8.html#SEC8.1 "When there is only one single-line text input field in a form, the user agent should accept Enter in that field as a request to submit the form. " and a random link... http://ppewww.ph.gla.ac.uk/~flav

Re: [PHP-DB] PHP in Database Fields..

2002-06-24 Thread szii
exec() the query results. -Mike - Original Message - From: "Matthew Tedder" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 2:31 PM Subject: [PHP-DB] PHP in Database Fields.. > > Question: > > I want to put PHP code into database fields holding HTML text,

Re: [PHP-DB] PHP in Database Fields..

2002-06-24 Thread szii
I'm sorry, brainfart. Don't exec(), eval(). Apologies. -Mike - Original Message - From: "Matthew Tedder" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Monday, June 24, 2002 4:00 PM Subject: Re: [PHP-DB] PHP in Database Fields.. > On Monday 24 June 2002 09

Re: [PHP-DB] what the heck? (elementary question)

2002-06-25 Thread szii
One large PHP block is more efficient than multiple small blocks of php. It's a tradeoff of "multiple invocations of the parser" versus having the parse run through (and ignore) normal text. We have run tests inhouse that validate the performance difference is fairly small, but it does exist.

Re: [PHP-DB] Re: DB400 on AS/400

2002-06-25 Thread szii
There's a long thread somewhere in the archives of PHPBuilder.com in regards to getting DB2/PHP to work on an AS/400. -Mike - Original Message - From: "John Lim" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 12:01 AM Subject: [PHP-DB] Re: DB400 on AS/400 > H

Re: [PHP-DB] A JOIN that works sometimes ?

2002-06-25 Thread szii
Make sure you're exec'ing against the correct database with identical schema. Different MySQL versions? Schema? Permissions? var_dump() and cut'n'paste onto the server to make sure the query DOES run, then look for remote DB connection issues, permissions, database, etc. Are there multiple "n

Re: [PHP-DB] email format: meeting request

2002-06-25 Thread szii
You're going to have to rip open the MS-specific format and handbuild (or script) your PHP to custom-build that format with the correct data fields. While it can be done, it's a good bit of time and energy. -Mike - Original Message - From: "Dib, Walid (MED, Stagiaire GEMS)" <[EMAIL P

Re: [PHP-DB] Form not working...

2002-06-25 Thread szii
okay, couple of questions in this one... =) First... is shorthand for if you care. With a there is no "value" attribute. Your "UPDATE" call via sprintf() is okay for the parameter passing, but you're missing single quotes around the text values. UPDATE test SET (number = 1, name = 'th

Re: [PHP-DB] INNER JOIN by field content

2002-06-25 Thread szii
You need to have "keys" in each table to join them together. Once you have those "keys" in place, you can match the keys across the tables and use a WHERE clause to filter the results. 'Luck! -Mike - Original Message - From: "José Moreira" <[EMAIL PROTECTED]> To: "Php-Db" <[EMAIL PROTEC

Re: [PHP-DB] Re: DB400 on AS/400

2002-06-25 Thread szii
Sorry, that was vague. ODBC is a standard of connectivity and IS supported by the AS/400 platform. With that said, if AS/400 has ODBC support and PHP has ODBC support then the two can "talk." -Mike - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PR

Re: [PHP-DB] Time difference question...

2002-06-25 Thread szii
Watch out, though, as "direct date math" can really screw ya over when it Daylight Savings changes (if you're not in a daylight savings area, you're okay.) Best bet is to use getdate() to build up the array, modify the array elements, then mktime it. If you just add seconds you'll get odd result

Re: [PHP-DB] Updating multiple forms

2001-04-18 Thread Szii
Off the top of my head, and it's 3am local so take this with a grain of salt, but I think that this will work... Update Table1, Table2 SET Table1.column1 = 'blah', Table2.column1='foo' WHERE Table1.ID = x AND Table2.ID = y 'Luck -Szii - Original Message -

Re: [PHP-DB] MySQL transactions?

2001-04-18 Thread Szii
The newest MySQL code has transactions via their implementation of Sleepcat's BDB tables. If you use BDB tables instead of MyISAM you can do transactions. Check the syntax on CREATE TABLE for details on how to create BDB tables. 'Luck -Szii - Original Message - From: Gar

Re: [PHP-DB] PHP question needing info

2001-04-20 Thread Szii
*begins dousing Paul S with water before the flames start* -Szii - Original Message - From: Paul S <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 20, 2001 3:04 PM Subject: [PHP-DB] PHP question needing info > I have a question that I need help with. &g

Re: [PHP-DB] reword my question

2001-04-20 Thread Szii
Read The Fine Manual? exec(); -Szii - Original Message - From: Paul S <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, April 20, 2001 4:13 PM Subject: [PHP-DB] reword my question > How do I execute a shell script in php? > > I just started to use php an

Re: [PHP-DB] Can't get my head around this problem...

2001-04-24 Thread Szii
Perhaps...? $x = 0; while ($x < 7) { if (!isset($myArray[$x])) { $myArray[$x] =0; } } -Szii - Original Message - From: "Tyrone Mills" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, April 24, 2001 3:58 PM Subject: [PHP-DB] Can't g

Re: [PHP-DB] Url link

2001-05-14 Thread Szii
search results after they're already done searching and each one wasting cycles loading/reloading it. =) Global includes work well for this - if (!isset($isSearchResult)) { unset($session_resultArray); } Anyone got any improvements on this? Peace, love, code. -Szii - Origina

Re: [PHP-DB] Flash+PHP search error

2001-05-14 Thread Szii
This is not really related to PHPDB Send me the code . It looks like you have an unbalanced double-quote. Same thing's happening with your footer, too. Should be an easy fix. -Szii - Original Message - From: "Brian Tegtmeier" <[EMAIL PROTECTED]> To: <

Re: [PHP-DB] 'the missing character'

2001-05-16 Thread Szii
f() clause that inc's your start by one, and then adds 3500. Drop the second if($start == 0) clause which sets $start to 1. 'Luck -Szii - Original Message - From: "Jimmy Brake" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2

Re: [PHP-DB] Filling mysql db with access db

2001-05-16 Thread Szii
Export as a comma-delimited file, explode() the file one line at a time along commas, and use insert via normal methods. Not sure if MySQL has a parser for comma-delim (probably does) but this way you have more control over how it goes in. -Szii - Original Message - From: "Ga

Re: [PHP-DB] 'the missing character' YIKES

2001-05-16 Thread Szii
Haven't pounded it yet, but it seems to work... -Szii - Original Message - From: "Jimmy Brake" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 15, 2001 9:58 PM Subject: [PHP-DB] 'the missing character' YIKES > I forgot to detail the p

Re: [PHP-DB] mySQL Addition Problem

2001-05-16 Thread Szii
Remove the comma after the "SET" clause? -Szii - Original Message - From: "Miles Thompson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 16, 2001 3:50 PM Subject: Re: [PHP-DB] mySQL Addition Problem > > Dammit, that code lo

Re: [PHP-DB] mySQL Addition Problem

2001-05-16 Thread Szii
Sorry, last message was a little vague. Your SQL will fail because of the ',' after the SET clause. Therefore affected_rows shows 0, and inserts a new row. Then when you match with the LIKE clause, it's going to match multiple times. Miles, you were SO close with #2. =) -Szii

Re: [PHP-DB] Storing duplicate checkbox values

2001-05-17 Thread Szii
o)) // It's checked, therefore it's set - if it's not checked, it's just not set. { echo "Set\n"; } else { echo "Not set\n"; } } This will give you "Set"/"Not Set" lines 80 times. G'luck.. -Szii - Origina

Re: [PHP-DB] Need Database Design help

2001-05-18 Thread Szii
ID = 4; or if you wanted to check multiple groups, SELECT UserID from GroupMemberTable WHERE GroupID IN (4,2,3); The map table may get huge depending on the number of users/groups, but it's a possibility. -Szii - Original Message - From: "Doug Schasteen" <[EMAIL PROTECTED

Re: [PHP-DB] RE: Storing Code in a db?

2001-07-02 Thread Szii
e-quotes if you're more comfortable with them $str .= "echo \"Done!\";"; // note that it's got a ; INSIDE the string...it's PHP in there, after all eval($str); If you wanted to pre-generate it, I don't see any reason why you couldn't addslashes() the co

Re: [PHP-DB] kinda unrelated, but curious...

2001-07-02 Thread Szii
your friends know that you're a PHP/web coder looking for work. It's amazing how many people know people that know people and you end up with work. 8-) -Szii - Original Message - From: "David Balatero" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent:

Re: [PHP-DB] Not Really A DB Question

2001-07-27 Thread Szii
This is not VB - this is better. Probably want to name all of your text fields something similar, since they'll be mixed in with the drop downs, radio buttons, etc... Check $HTTP_POST_VARS and $HTTP_GET_VARS in your form's target. -Szii - Original Message - From: "Pet

[PHP-DB] MySQL Modules and multiple database

2001-08-13 Thread Szii
to find anothe solution. Anyone have any ideas/thoughts? Thanks. -Szii -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-DB] MySQL Modules and multiple database

2001-08-13 Thread Szii
If you call it on two different links, it's seems to modify both links. Almost like it's global *shrug* -Szii - Original Message - From: "Paul Burney" <[EMAIL PROTECTED]> To: "Szii" <[EMAIL PROTECTED]>; "php mailing list" <[EMA

Re: [PHP-DB] db's war

2001-09-18 Thread Szii
r sure.) If you need a consolodated system for the whole company, well, Oracle wins that hands down. If you just need a super fast lightweight database, OpenSource. For everything else, DB2. And if you need a kick-arse track-anything-anywhere-anyhow system, look at Camstar Systems, which will ha

Re: [PHP-DB] Learning PHP Sessions

2001-10-30 Thread Szii
collector do the work periodically instead of cleaning up each session individually. Check out http://www.php.net/manual/en/ref.session.php 'Luck -Szii - Original Message - From: "Matthew Tedder" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, October 3

Re: [PHP-DB] Re: fulltext not for me/alternatives

2001-10-22 Thread Szii
In the source directory, there's a "myisam/ftdefs.h" file. You can change the min word size there. Note that you will have rebuild it, and reinstall. Usually via "make/make install." Also you have to rebuild the indicies. Easiest way is to drop and readd them. &#