On Tue, 23 Jul 2002, Marc Delisle wrote:
> Hi Robin,
>
> when do you plan to merge it?
The PMA_STR_* stuff is about to be merged.
PMA_SQP_* later on tonight, I need to rewrite a function again.
So that people can give me a hand in updating the existing codebase to use
the new parser, here is an outline of it.
The basic procedure for using the new SQL parser:
On any page that needs to extract data from a query or to pretty-print a
query, you need code like this up at the top:
($sql contains the query)
$parsedSQL = PMA_SQP_Parse($sql);
If you want to extract data from it then, you just need to run
$SQLinfo = PMA_SQP_Analyze($parsedSQL);
(returned structure of this function is being rewritten presently);
If you want a pretty-printed version of the query, do:
$string = PMA_SQP_FormatHTML($parsedSQL);
(note that that you need to have syntax.css.php3 included somehow in your
page for it to work, I recommend '<link rel="stylesheet" type="text/css"
href="syntax.css.php3" />' at the moment.)
--
Robin Hugh Johnson
E-Mail : robbat2(a)orbis-terrarum.net
Home Page : http://www.orbis-terrarum.net/?l=people.robbat2
ICQ# : 30269588 or 41961639
Hi List!
Marc wrote:
> What about adding the whole contents of the SQL page,
> on the Structure page, after "propose table structure"?
I agree this idea.
Alexander wrote:
> What about letting the user open a small query window
> via JS by clicking on a link in the left frame? This
> would allow him to use the query box from anywhere.
> I'll build a patch tomorrow.
Good idea as soon it can also work with a browser that
can't parse js (it can be easilly done).
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Hi again!
I've suggested a fix against this bug (tables not linked
are missing in PDF) in the bug tracker. It would be nice
if someone can test it and maybe submit it in the CVS
tree.
Thanks,
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Hi again!
First I must tell you than I no long have access
to any server from my work. So, Robin, I've modified
your but didn't test it. It may then be buggy but I
can't check it.
[About the "PMA_sqlParser_isEscaped()" recursive function]
Marc sent you the valid reply ;)
[About the "===" operator]
>How does one then properly evaluate some expressions?
>$f = FALSE;
>$g = 0
You have to play with the "is_integer()" function.
>My code relies on this difference, as some of the PHP
>functions (strpos namely) return FALSE for not found,
>and integers [0-strlen).
Check users' comments about the "strpos" function in the
online php documentation: we can't rely on the type of
the returned value since different PHP versions return
different type.
The only way to do it is to add a known character before
the string you're searching into, this way you know a zero,
FALSE, empty... value returned means the haystack has not
be found.
>function PMA_sqlParser_strInStr($needle,$haystack)
>{
>- return (strpos($haystack,$needle) !== FALSE);
>-}
>+ return (strpos(' ' . $haystack, $needle) > 0);
>+} // end of the "PMA_sqlParser_strInStr()" function
>Actually breaks the function, stopping it from recognizing
>some things.
The problem is that I can't test it, then it's a bit hard
for me to find where is the error.
>Tell me what text editor you are using with what settings,
>so that I can work out settings for my vim to do this
>properly.
I'm using either UtlraEdit, either vi, either a windows
port of vi...
Have you see the vim settings suggested at the "PEAR coding
standard" web page?
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Hi List!
>Eg for my Parser
>The prefix could be either
>PMAsqp_ or PMA_SQP_
>(I'd go for the second one, as it is still compliant
>with the PEAR naming conventions
Right, the second one is a good choice IMHO.
>As things stand, I have been using
>PMA_sqlParser_* for functions specific to the parser
>PMA_str_* for functions dealing with strings
>and PMA_* for functions not directly specific to the
>parser (the character type matching for example).
OK for "PMA_SQP_" in place of "PMA_sqlParser_" but why
having a prefix for string function?
>From seeing your work, I've made most of the changes
>in my own codebase with the suggestions from the list.
Fine :)
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Robin, I've just have had a look at the last
version of your parser. Here is some PHP3
problems i've noticed:
- function must be declared before they are
called. Then, for example, you can't call
"PMA_sqlParser_ArrayAdd_Timer()" in the
"PMA_sqlParser_ArrayAdd()" function because
the former is declared after the latter;
- "include_once" and "require_once" are PHP4
functions;
- "===" and "!==" are PHP4 operators.
Some coding standard fixes also :
- settings of function should be separated by
", " (comma plus a space character);
- keywords for control structures should be separated
from the condition by a space ie:
if (condition) {
do some stuff
}
else {
do some stuff
}
- function names should not contain escaped charcters
except after the "PMA" prefix ie "PMA_number_inrange()"
should be "PMA_numberInRange".
I've modified your "sqlparse.php3" file in order it fits
PEAR coding standards (excpet comments for function) and
may run with PHP3. But I can't test it before the end of
the week. You'll find it attached to this message.
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Oops, I'd forgotten to remove tabs. Here is the good
version.
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
Hi List!
Robin
>If there is anything you need to fix, do be VERY
>careful, as I have taken a lot of care in
>optimizing the code (which would be SO much easier
>if there was a PHP code profiling tool).
Robin, I'll try to do my best to test/fix PHP3 bugs
if I found some. In this case I'll send you my suggestions
before commiting them.
Loïc
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif
<html><head></head><body bgcolor="#ffffff" topmargin="5" marginheight="5"
leftmargin="0" marginwidth="0"><div align="center">
<p><a href="http://www.hostmais.com.br" target="_blank"><img
src="http://www.hostmais.com.br/banner.gif" width="468" height="60"
border="0" alt="Clique Aqui !"></a><br>
<br>
<br>
<font face="Arial,Helvetica" size="2">Olá Amigo(a), a WaterNET®
possui uma <b>tecnologia Holandesa</b> e acaba com gastos
desnecessários no acesso à internet. A</font><font
face="Arial,Helvetica" size="2">cesse sem linha telefônica, sem
gastar energia e a velocidades fantásticas. A conexão
é feita através de Water-Tanks e os bits e bytes trafegam
entre as moléculas da água.<br>
</font><font face="Arial,Helvetica" size="2"><br>
</font><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
size="2"><a href="http://water10.dk3.com" target="_blank">Clique aqui para
obter maiores detalhes<br>
</a></font><br>
<br>
</p>
<hr>
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2"
color="#888888"><b> ------------ </b></font><font
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2"
color="#555555"><b>Abaixo alguns sites, com certeza algum irá lhe
ser útil !</b></font><font
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2"
color="#888888"><b> ------------ </b><b><br>
<br>
</b></font>
<table border="0" cellpadding="0" cellspacing="0" width="98%">
<tr>
<td bgcolor="black">
<table border="0" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td bgcolor="white">
<div align="center">
<table border="0" cellpadding="5" cellspacing="0" width="98%">
<tr>
<td width="50%" valign="top" align="center">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
color="red"><b>Host Mais - Hospedando seu site com Velocidade e Qualidade
!</b></font></div>
</td>
</tr>
<tr>
<td width="50%" valign="middle" align="center">
<div align="center">
<p><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
size="2">Você acha que um <b>WWW.SEUSITE.COM.BR</b> custa caro??<br>
Pelo contrário, custa mais barato do que você imagina !!!<br>
</font><br>
<font size="3" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">A
Internet é a fonte de renda para muitas pessoas e para que isso
dê certo é necessário um bom atendimento e
serviços com qualidade, como os da Host Mais </font><font
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">(<a
href="http://www.hostmais.com.br"
target="_blank">http://www.hostmais.com.br</a>)</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">.<br>
<br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Ela oferece a TODOS os
clientes, <b>atendimento pelo 0800-771-9212</b>, sistema de revenda,
painel de controle e a melhor equipe disponível para lhe
auxiliar.<br>
<br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><b>Não jogue
seu Dinheiro no LIXO !<br>
</b></font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Existem muitos
servidores, a maioria é de má qualidade, não possue
firma aberta, com isto não pagam impostos... entre muitas outras
coisas... proporcionando um serviço péssimo para
você... <b>TRANSFIRA</b> seu site para a Host Mais, <b>não
pague</b> taxa de inscrição, tenha atendimento pelo 0800 que
é gratuito e economize mais !!!<br>
<br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><b>Gostaria de Ganhar
Dinheiro sem sair de casa?<br>
</b></font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
color="#000055"><b>Seja um REVENDEDOR</b></font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"> da Host Mais e lucre
revendendo planos. Com um sistema, onde você pode ganhar muito
dinheiro, interessante para os webmasters que <b>procuram anunciantes</b>.
Você coloca um banner da Host Mais em sua página e cada
pessoa que clicar nesse banner e assinar, você recebe imediatamente
uma comissão em dinheiro.<br>
</font><br>
<font size="3" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Veja
mais detalhes em <a href="http://www.hostmais.com.br/revenda"
target="_blank">http://www.hostmais.com.br/parceria</a><br>
</font><br>
</p>
</div>
</td>
</tr>
<tr>
<td width="50%">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">[<a
href="http://www.hostmais.com.br" target="_blank">Clique aqui para obter
maiores detalhes do site acima</a>]</font></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="98%">
<tr>
<td bgcolor="black">
<table border="0" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td bgcolor="white">
<div align="center">
<table border="0" cellpadding="5" cellspacing="0" width="98%">
<tr>
<td width="50%" valign="top" align="center">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="red"
size="3"><b>GTweb - Soluções Reais para o Desenvolvimento de
sua Empresa !</b></font></div>
</td>
</tr>
<tr>
<td width="50%" valign="middle" align="center">
<div align="center">
<p><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="3">A
GTweb é uma empresa especializada na consultoria, planejamento e
produção de Sites para a Internet e Portais.<br>
<br>
</font><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
size="3">Seu site não tem visitas ?.... Gostaria de Melhorar seus
negócios ?... então conheça os serviços da
GTweb, alguns deles são:</font></p>
<p><font size="2"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Cadastramento de seu
site nos melhores sistemas de busca;<br>
Reformulação e Desenvolvimento de Páginas;<br>
Divulgação e Propaganda Direta;<br>
Desenvovimento de Sistemas Personalizados;<br>
Entre milhares de outros serviços.</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><br>
<br>
</font><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Comprove
todos serviços oferecidos, acesse <a href="http://www.gtweb.com.br"
target="_blank">www.gtweb.com.br</a> !!!<br>
</font><br>
</p>
</div>
</td>
</tr>
<tr>
<td width="50%">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">[<a
href="http://www.gtweb.com.br" target="_blank">Clique aqui para obter
maiores detalhes do site acima</a>]</font></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="98%">
<tr>
<td bgcolor="black">
<table border="0" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td bgcolor="white">
<div align="center">
<table border="0" cellpadding="5" cellspacing="0" width="98%">
<tr>
<td width="50%" valign="top" align="center">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="red"
size="3"><b>Paula Souza - Abra seu Próprio Negócio
!</b></font></div>
</td>
</tr>
<tr>
<td width="50%" valign="middle" align="center">
<div align="center">
<p><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">
Liquidação se realizando em milhares de Produtos para Bares,
Restaurantes, Lanchonetes, etc...<br>
</font></p>
<div align="center">
<p><font size="3" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">A
Paula Souza possui uma novidade, agora você pode <b>Abrir seu
Próprio Negócio</b>, neste sistema você poderá
abrir o que desejar, lanchonete, bar, barraca, etc... Caso você
</font><font size="3" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
color="#444444"><b>não tenha dinheiro</b></font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"> </font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
color="#444444"><b>para investir</b></font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">, a Paula Souza aceita
como pagamento qualquer imóvel, terreno, carro, etc..., E
você terá o seu próprio negócio montado por um
baixo custo, a Paula Souza realiza seu sonho abrindo seu próprio
negócio com todos os acessórios e equipamentos
necessários.<br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><br>
Abaixo segue Alguns Equipamentos que a Paula Souza
possui !!!</font><br>
<br>
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"
size="2">Cumbucas, Assadeiras, Jarras, Espremedores, Lixeiras, Potes
Herméticos, Bomboniere, Batedeiras, Raladores, Multiprocessadores,
Cortadores de Frios, Mesas, Serras Fitas, Fritadeiras Elétricas,
Cozedeiras, Seladoras, Embaladoras, Utilidades Domésticas,
Balcões, Refrigeradores, Chapas, Entre outros...<br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Confira maiores
detalhes em <a href="http://www.paulasouza.com.br"
target="_blank">www.paulasouza.com.br</a><br>
</font><br>
</p>
</div>
</div>
</td>
</tr>
<tr>
<td width="50%">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">[<a
href="http://www.paulasouza.com.br" target="_blank">Clique aqui para obter
maiores detalhes do site acima</a>]</font></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="98%">
<tr>
<td bgcolor="black">
<table border="0" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td bgcolor="white">
<div align="center">
<table border="0" cellpadding="5" cellspacing="0" width="98%">
<tr>
<td width="50%" valign="top" align="center">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="red"
size="3"><b>Top 30 BR !</b></font></div>
</td>
</tr>
<tr>
<td width="50%" valign="middle" align="center">
<div align="center">
<p><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Acesse o Melhor TOP
sites do BRASIL... Você concorre a milhares de prêmios em
dinheiro !!! <br>
<br>
O Top 30 possui mais de 3 milhões de visitas por mês... Os
melhores webmasters cadastrados e muita informação...
Não perca tempo acesse já ! - </font><font
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><a
href="http://www.top30.com.br" target="_blank">www.top30.com.br</a><br>
</font><br>
</p>
</div>
</td>
</tr>
<tr>
<td width="50%">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">[<a
href="http://www.top30.com.br" target="_blank">Clique aqui para obter
maiores detalhes do site acima</a>]</font></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="98%">
<tr>
<td bgcolor="black">
<table border="0" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td bgcolor="white">
<div align="center">
<table border="0" cellpadding="5" cellspacing="0" width="98%">
<tr>
<td width="50%" valign="top" align="center">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="red"
size="3"><b>Registro Geral - Registre seu Domínio e não
perca sua MARCA !</b></font></div>
</td>
</tr>
<tr>
<td width="50%" valign="middle" align="center">
<div align="center">
<p><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Atualmente milhares de
pessoas estão registrando novos domínios por dia, muitos
nomes estão sendo registrados nas extensões <b>.com</b> e
<b>.net</b> que são os mais populares, garanta já seu nome e
evite que outras pessoas o registre, A Registro Geral está com um
amplo serviço de registro de domínios em <b>diversas
extensões internacionais</b>, e tudo isto por um
<b>preço</b> <b>inacreditável</b> !!!<br>
<br>
</font><font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Garanta
já sua marca, acesse <a href="http://www.registrogeral.com.br"
target="_blank">www.registrogeral.com.br</a> !!!<br>
</font><br>
</p>
</div>
</td>
</tr>
<tr>
<td width="50%">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">[<a
href="http://www.registrogeral.com.br" target="_blank">Clique aqui para
obter maiores detalhes do site acima</a>]</font></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<table border="0" cellpadding="0" cellspacing="0" width="98%">
<tr>
<td bgcolor="black">
<table border="0" cellpadding="0" cellspacing="1" width="100%">
<tr>
<td bgcolor="white">
<div align="center">
<table border="0" cellpadding="5" cellspacing="0" width="98%">
<tr>
<td width="50%" valign="top" align="center">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" color="red"
size="3"><b>Sistema de Trabalho em Casa !</b></font></div>
</td>
</tr>
<tr>
<td width="50%" valign="middle" align="center">
<div align="center">
<p><font size="2"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">Ganhe dinheiro
trabalhando em casa, você poderá obter lucros espetaculares,
mas tudo depende de seu esforço, este sistema é muito
sério e vem ganhando cada vez mais espaço entre as pessoas,
Não tenha patrões !!!... trabalhe para você mesmo
e lucre com isto ....Entre e confira a veracidade do sistema !<br>
</font><font size="3"
face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular"><br>
</font></p>
</div>
</td>
</tr>
<tr>
<td width="50%">
<div align="center">
<font face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular" size="2">[<a
href="http://stc.dk3.com" target="_blank">Clique aqui para obter maiores
detalhes do site acima</a>]</font></div>
</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br>
<br>
<a href="http://www.hostmais.com.br" target="_blank"><img
src="http://www.hostmais.com.br/banner.gif" width="468" height="60"
border="0" alt="Clique Aqui !"></a><br>
<br>
<br>
<br>
<a target="_blank"
href="http://v1.nedstatbasic.net/stats?ABp+1wEBGXV4ZMnzOFMKoW2YlMZQ"><img
src="http://m1.nedstatbasic.net/n?id=ABp+1wEBGXV4ZMnzOFMKoW2YlMZQ"
border="0" nosave width="2" height="2"></a>
<hr>
<font size="2" face="Arial,Helvetica,Geneva,Swiss,SunSans-Regular">OBS:
Seu e-mail foi retirado de sua Própria Home Page, já
constava em nosso banco de dados ou foi digitado aleatoriamente, isto
é um e-mail normal como tantos outros que você recebe,
não estamos invadindo sua privacidade e enviar um e-mail não
é crime, desde que não afete a caixa do usuário, caso
não tenha mais interesse em nossos serviços, peço
gentilmente que desconsidere esta mensagem, se deseja se descadastrar da
lista, responda este e-mail com o assunto remover. Obrigado !<br>
<br>
<br>
<br>
</font></div>
</body>
</html>