You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
3.0 KiB

{capture name="subDisplay"}
<table width="100%" class="formCad" border="0" cellspacing="0" cellpadding="2">
<tr>
<th width="150" align="left" nowrap>Selecione o Banco</th>
<td><select name="db_type" id="db_type">
<option value="mssql">MS Sqlerver</option>
<option value="oci">Oracle</option>
<option value="mysql">Mysql</option>
<option value="pg">Postgresql</option>
<option value="ibase">Firebird</option>
</select></td>
</tr>
<tr>
<th align="left">Host</th>
<td align="left"><input name="db_host" type="text" id="db_host" value="{$db_host}" size="60" maxlength="1024" /></td>
</tr>
<tr>
<th align="left">Porta</th>
<td align="left"><input name="db_port" type="text" id="db_port" value="{$db_port}" size="15" maxlength="8" /></td>
</tr>
<tr>
<th align="left">Base de Dados</th>
<td align="left"><input name="db_database" type="text" id="db_database" value="{$db_database}" size="30" maxlength="32" /></td>
</tr>
<tr>
<th align="left">Usu&aacute;rio</th>
<td align="left"><input name="db_user" type="text" id="db_user" value="{$db_user}" size="30" maxlength="32" /></td>
</tr>
<tr>
<th align="left">Senha </th>
<td align="left"><input name="db_password" type="password" id="db_password" value="{$db_password}" size="30" maxlength="20" /></td>
</tr>
<tr>
<th align="left">Tipo de Comando</th>
<td align="left"><input type="radio" name="db_command_type" id="radio" value="0" {if !$db_command_type}checked="checked"{/if} />
Text
<input name="db_command_type" type="radio" id="radio1" value="1" {if $db_command_type}checked="checked"{/if} />
Stored Procedure</td>
</tr>
<tr>
<th align="left">Comando Decis&atilde;o</th>
<td align="left"><input name="db_command" type="text" id="db_command" value="{$db_command}" size="60" maxlength="1024" />
<input name="db_result" type="checkbox" id="db_result" value="1" {if $db_result}checked="checked"{/if}/>
Retorna Dados</td>
</tr>
<tr>
<th align="left">Comando Abandono</th>
<td align="left"><input name="db_command_abd" type="text" id="db_command_abd" value="{$db_command_abd}" size="60" maxlength="1024" /></td>
</tr>
<tr>
<th align="left">Fila Padr&atilde;o</th>
<td align="left"><select name="db_queue_def" id="db_queue_def">
{$db_queue_def}
</select></td>
</tr>
<tr>
<td align="left">&nbsp;</td>
<td><input name="btGravar" type="submit" id="btGravar" value="Gravar"> </td>
</tr>
</table>
{/capture}