Ciao a tutti;

sto cercando di prendere dei dati da un db in base a una data ma non riesco a farlo....

... vi posto il codice


vnow=now()
odierna = year(vnow) & right("00"& month(vnow),2) & right("00"& day(vnow),2)
session("data") = request.QueryString("data")
IF session("data") = "" Then session("data") = odierna


sql_0 = "SELECT * FROM ARTICOLI where ARTI_DATA = "&session("data")&" ORDER BY ARTI_DATA DESC"
set rs = server.CreateObject("ADODB.recordset")
set rs = RsCon2.Execute(sql_0)
if not (rs.EOF or rs.BOF) then
Do while not (rs.EOF or rs.BOF)
ARTI_ID = rs.fields("ARTI_ID")
ARTICOLO = rs.fields("ARTI_TITOLO")
%>
<%=ARTICOLO%>
<%
Rs.MoveNext
Loop
Rs.Close
Set Rs = Nothing
End If
%>

Questo è l'errore

The conversion of the varchar value '20041119181505' overflowed an int column. Maximum integer value exceeded.

cosa significa?