maxpo10 | 1 Apr 2006 09:05
Favicon

Sweatshirts / Textile Products Manufacturer [AD]


PROMOWEAR - THE PROFESSIONAL GARMENT MANUFACTURER


COTTON HOODED SWEATER
in high-performance, anti-pilling, 100% cotton sweat material, keep the wearer warm, dry and comfortable in all conditions.

Providing in 54 Different Existing Colours.

Quality passing the Azo-Free and ISO Standards.

Embroidery and imprint in customer design logo can be applied on sweaters.

Minimum ordered quantity can be flexible from 100 pcs per colour style.

 

Ref. SS9001




Ref. SS9002
Ref. SS9003
Ref. SS9010

TRIMMING : EMBROIDERY OR IMPRINT IN CUSTOMER DESIGN LOGO CAN BE APPLIED TO THE SWEATER
 
Ref. SS9012
Ref. SS9013
Ref. SS9014
Ref. SS9015

 

MEASUREMENT CHART :

12
14
16/XS
S
M
L
XL
2XL
3XL
4XL
C.B.L
63
65
67
69
71
73
75
77
79
81
1/2 Chest
54
56
58
60
62
64
66
68
70
72
1/2 Hem
52
54
56
58
60
62
64
66
68
70
Shoulder
46
48
50
52
54
56
58
60
62
64
Armhole
23
24
25
26
27
28
29
30
31
32
Sleeve
58
59
60
61
62
63
64
65
66
67
Cuff
10
10.5
11
11.5
12
12.5

13

13.5
14
14.5
* Measurement in cm.

 

Import & Export

We can arrange export licence (quota) of sweaters and other knitted quota-need items for the import to your country.

We can also handle the import procedure for you and deliver goods to your warehouse directly.


Cooperation with Us


We would like to cooperate with you to develop mutual business in your markets.

You are always welcome to send us enquiry with your quantity idea and logo artwork details (for embroidery or imprint).

And it is also recommended for you to send us samples of sweaters in your design for our quotation and samping.

If you have any enquiries, please contact us by sending email to
promowear <at> sina.com.

Thanks for your kind attention. Awaiting for your further comments.

 
Best regards.
>>>Designed by Nicklas

------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid

Dan McCullough | 3 Apr 2006 15:35
Picon

compile error on adodb ext

I was running ./configure
--with-php-config=/usr/local/php5/bin/php.ini and I get this error.

checking target system type... i686-pc-linux-gnu
/usr/local/php5/bin/php.ini: line 1: [PHP]: command not found
/usr/local/php5/bin/php.ini: line 3: syntax error near unexpected token `;;'
/usr/local/php5/bin/php.ini: line 3: `;;;;;;;;;;;'
/usr/local/php5/bin/php.ini: line 1: [PHP]: command not found
/usr/local/php5/bin/php.ini: line 3: syntax error near unexpected token `;;'
/usr/local/php5/bin/php.ini: line 3: `;;;;;;;;;;;'
configure: error: Cannot find php-config. Please use --with-php-config=PATH

Anyone know how to get around this, my php config file is standard
issue nothing has been changed.

-------------------------------------------------------
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0944&bid$1720&dat1642
Raine Virta | 22 Apr 2006 20:44

Question regarding AutoExecute

Hi, got one question about adodb.
If I use function like this,

  function sendMsg($post) {
    $this->db->AutoExecute($this->arr_table['message'], $post, 'INSERT');
  } // function

it works fine, however, if table also contains date -field, I want to 
fill it with result of MySQL function NOW().
Is there any simple way to do it? I like the simplicity of AutoExecute, 
but it's not quite clear to me how to use additional MySQL functions 
when INSERTing, same goes for SELECT.

Regards,
Raine Virta

-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
Renne Rocha | 26 Apr 2006 21:56
Picon
Gravatar

Problem using Insert_ID() method

  Hello,

  I have a PostgreSQL table with a SERIAL type field (my primary key). After an insert I would like to retrieve the last ID inserted. I tried to use the method Insert_ID() (with the connection object and after with the recordset object), but I got the following message:

  Fatal error: Call to undefined function: insert_id() in /home/xpto/my_file.php on line 21

  I haven´t found anything in the documentation of ADODB, neither on the Internet (Google). Anyone could help me with this?

  Thanks a lot.

  Renne Rocha

  The code I am trying to use is something like this:
<?php
  $insere = "INSERT INTO contatos (str_nome, str_email, str_telefone, str_funcao) VALUES ('".$str_nome."', '".$str_email."', '".$str_telefone."', '".$str_funcao."')";
  if(!$faz_insere = $db->Execute($insere))
  {
    print $db->ErrorMsg().'<BR>';
    return false;
  } else
  {
    $id_contato = $faz_insere->Insert_ID();
    return true;
  }
?>

Alfredo Yong | 26 Apr 2006 22:45
Picon

Re: Problem using Insert_ID() method

Hi Renne,
 
Serial type, right? then, Postgresql has created a sequence object to serve you with the new keys. Usually serial key sequences  are named this way: TABLE_FIELD. So you can ask a new key from that sequence to use it in your INSERT sentence:
 
$db->GenID('sequence_name');
 
 
With our beloved postgreSQL, Insert_ID will provide you with the OID of the last row inserted, and is a method of the connection object.
 
hope this helps

 
On 4/26/06, Renne Rocha <rennerocha <at> gmail.com> wrote:
  Hello,

  I have a PostgreSQL table with a SERIAL type field (my primary key). After an insert I would like to retrieve the last ID inserted. I tried to use the method Insert_ID() (with the connection object and after with the recordset object), but I got the following message:

  Fatal error: Call to undefined function: insert_id() in /home/xpto/my_file.php on line 21

  I haven´t found anything in the documentation of ADODB, neither on the Internet (Google). Anyone could help me with this?

  Thanks a lot.

  Renne Rocha

  The code I am trying to use is something like this:
<?php
  $insere = "INSERT INTO contatos (str_nome, str_email, str_telefone, str_funcao) VALUES ('".$str_nome."', '".$str_email."', '".$str_telefone."', '".$str_funcao."')";
  if(!$faz_insere = $db->Execute($insere))
  {
    print $db->ErrorMsg().'<BR>';
    return false;
  } else
  {
    $id_contato = $faz_insere->Insert_ID();
    return true;
  }
?>



--
Alfredo Yong
Sistemas web
burtonl | 27 Apr 2006 16:34
Picon

possible to call stored procedures with custom types?

 
Hi,
Is it possible to call stored procedures that use custom types?
 
 
Example:

CREATE OR REPLACE TYPE varchar2_3200_array IS TABLE OF VARCHAR2(3200);

/

CREATE OR REPLACE TYPE number_array IS TABLE OF NUMBER;

/

function signature:
 
PROCEDURE test

( key_tbl OUT NOCOPY VARCHAR2_3200_ARRAY,

value_tbl OUT NOCOPY NUMBER_ARRAY,

refresh_type IN VARCHAR2

)

If so, can you give me an example?

thanks for any help!

 

Picon
Picon
Favicon

AttributeError: 'NoneType' object has no attribute 'Connect'

Hi :
 
I am tring tu use adodb for python.
 
Y install the extension psycopg.
Then i run the install script, to install adodb.
This installs ok.
 
I make a test probram coping from the manual
 
This code :
 
import adodb;
 
conn = adodb.NewADOConnection('postgres')
 
conn.Connect('localhost','probrax','pepe','probrax') --> Error is here.
 
cursor = conn.Execute('select * from users')

while not cursor.EOF:
  print cursor.fields
  cursor.MoveNext()
 
cursor.Close()
conn.Close()
 
When i try tu execute, program says error.
 
Message :
Traceback (most recent call last):
  File "D:\projetos\todolist\todolist.py", line 9, in ?
    conn.Connect('localhost','probrax','pepe','probrax')
AttributeError: 'NoneType' object has no attribute 'Connect'
 
Can you help me ?
What is hapening ?
 
Thanks in advance.
 
Alejandro Michelin Salomon
Porto Alegre
Brasil.
 
 
 

--
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.385 / Virus Database: 268.5.1/326 - Release Date: 27/4/2006

No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.385 / Virus Database: 268.5.1/326 - Release Date: 27/4/2006

Gmane