在VBA中,我有一组ADO记录集,我希望在用户使用表单时对记录集中的值进行计算和存储。
我的问题:在我做了一个计算,比方说,和整数之后,我得到了一个double / float。当我尝试将其存储在记录集中时,它被转换/更改为整数。我希望保留计算后double / float的精度。
我的想法:更改我正在计算和存储的字段的数据类型。 我没看到该怎么做。我该怎么做?我能这样做吗?
例如:
Option Explicit
Sub test()
Dim rs As ADODB.Recordset
Dim sql As String
sql = "select * from test;"
Set rs = frsGetPgRecordset(sql)
Do While rs.EOF = False
Debug.Print rs!x & "<- original"
Debug.Print Application.WorksheetFunction.Log(rs!x) & "<- what I want stored"
rs.Fields("x") = Application.WorksheetFunction.Log(rs!x)
Debug.Print rs!x & "<- what I get"
rs.MoveNext
Loop
End Sub
我明白了:
8<- original
0.903089986991944<- what I want stored
1<- what I get
20<- original
1.30102999566398<- what I want stored
1<- what I get
注意,这不会改变数据库,因为在frsGetPgRecordset中(不提供,因为它对问题不重要)我有:
rs.CursorType = adOpenKeyset
rs.CursorLocation = adUseClient
rs.LockType = adLockBatchOptimistic
您可以在此处获得更多信息,因为人们会问: https://docs.microsoft.com/en-us/sql/ado/reference/ado-api/cursortype-property-ado Update recordset without updating database
答案 0 :(得分:3)
我只是将计算结果存储在新字段中,而不是尝试更改现有字段:
rs.Fields.Append "New_Field", adDouble