The Wayback Machine - https://web.archive.org/all/20060315110639/http://www.web-developer-india.com/WD/B/C151.html

Web development India freelance website designer developer India SEO

Sub ADOCreateRecordset()

Dim rst As New ADODB.Recordset

rst.CursorLocation = adUseClient

' Add Some Fields
rst.Fields.Append "dbkey", adInteger
rst.Fields.Append "field1", adVarChar, 40, adFldIsNullable
rst.Fields.Append "field2", adDate

' Create the Recordset
rst.Open , , adOpenStatic, adLockBatchOptimistic

' Add Some Rows
rst.AddNew Array("dbkey", "field1", "field2"), Array(1, "string1", Date)
rst.AddNew Array("dbkey", "field1", "field2"), Array(2, "string2", #1/6/1992#)

' Look at the values - a value of 1 for status column = newly record
rst.MoveFirst
Debug.Print "Status", "dbkey", "field1", "field2"
Do Until rst.EOF
Debug.Print rst.Status, rst!dbkey, rst!field1, rst!field2
rst.MoveNext
Loop

' Commit the rows without ActiveConnection set resets the status bits
rst.UpdateBatch adAffectAll

' Change the first of the two rows
rst.MoveFirst
rst!field1 = "changed"

' Now look at the status, first row shows 2 (modified row), second shows 8 (no modifications)
' Also note that the OriginalValue property shows the value before the modification
rst.MoveFirst
Do Until rst.EOF
Debug.Print
Debug.Print rst.Status, rst!dbkey, rst!field1, rst!field2
Debug.Print , rst!dbkey.OriginalValue, _
rst!field1.OriginalValue, rst!field2.OriginalValue
rst.MoveNext
Loop

End Sub
Recordset, Create

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300

India web developer web development India | Freelance web development ecommerce web developer | Prayagasoft - web designer India, Ecommerce developer india, Ecommerce design