% ' Costanti Microsoft ADO '---- CursorTypeEnum Values ---- Const adOpenForwardOnly = 0 Const adOpenKeyset = 1 Const adOpenDynamic = 2 Const adOpenStatic = 3 '---- LockTypeEnum Values ---- Const adLockReadOnly = 1 Const adLockPessimistic = 2 Const adLockOptimistic = 3 Const adLockBatchOptimistic = 4 '---- CommandTypeEnum Values ---- Const adCmdUnknown = &H0008 Const adCmdText = &H0001 Const adCmdTable = &H0002 Const adCmdStoredProc = &H0004 Const adCmdFile = &H0100 Const adCmdTableDirect = &H0200 'APRO IL DB set conn=server.createobject("ADODB.connection") conn.open VarConn set rsNews = Server.CreateObject("ADODB.Recordset") rsNews.Open "select idnews,data,title,short_description from TbNews where show = true and category='Products news' order by data desc" , VarConn , adopenstatic, adLockReadOnly , adCmdText rsNews.pagesize = 5 %>