Jump to content
Fórum Script Brasil
  • 0

Onde Eu Coloco O Order By ?


ViniciusJau

Question

e ai pessoal, tenho.... esse codigo que faz consulta no meu BD.....

porém eu queria colocar um order by nele.. e não sei onde coloco ohmy.gif

<%

n_page=request("n_page")

If n_page="" Then n_page = 1

  Caminho="DBQ=" & Server.MapPath("../../dados/mural.mdb")

  Set Conex=Server.CreateObject("ADODB.Connection")

  Conex.Open Caminho & ";Driver={Microsoft Access Driver (*.mdb)}","",""

  Set RecSet=Server.CreateObject("ADODB.Recordset")

  RecSet.Open "tab", Conex, 3,3

  RecSet.PageSize=5

 

  If RecSet.EOF Then

    response.write "Não existem registros para exibição..."

  Else

%>

<table width="250" border="0" cellspacing="0" cellpadding="0">

  <tr>

    <td>

      <%    RecSet.AbsolutePage = Cint(n_page)

   

    contador=0

    While not RecSet.EOF AND contador < RecSet.PageSize         

%>

eu estava dando uma lida nos topicos do forum , e percebi que tenho que colocar ele na sql depois de todos os parametros..

eu tentei assim:

  Set RecSet=Server.CreateObject("ADODB.Recordset")

  RecSet.Open "tab", Conex, 3,3 , ORDER BY Autonum

mais ele dá erro de fim de instrução esperada..... eu coloquei ele no lugar certo mesmo ?????????

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      651.8k
×
×
  • Create New...