VBScript to insert values in database table.
We have table "EMP" in database "db"(Microsoft Access).
EMP Table has following data in it.
EMPNO EMPNAME EMPSAL
1 Lakshmi 30000
2 Laxmi 25000
3 Latha 15000
Check This Blog For SQL Queries
Check this post for Script to get column names from database table(MS Access).
Dim con,rs
set con= CreateObject( "ADODB.Connection")
set rs =CreateObject("ADODB.Recordset")
con.provider="microsoft.jet.oledb.4.0"
con.open"d:\db.mdb"
rs.open "insert into EMP(empno,empname,empsal) values(4,'Lakshmi',40000)",con
msgbox("Inserted")
Above script(code)will insert values in database table.
Output:
EMPNO EMPNAME EMPSAL
1 Lakshmi 30000
2 Laxmi 25000
3 Latha 15000
4 Lakshmi 40000
QTP Script to count no. of checkboxes in a webpage
SQL Queries Collection
QTP Script for Connecting to database
QTP Script to export database data to excel sheet
QTP Script to import database data to datatable
Connecting to MSAcess,Oracle,SQL Server Database
Hindi and Telugu Songs Lyrics
QTP Script to get column names from database table(MS Access).
QTP Script to Insert Values Into Database Table-Script for Inserting values in database table in QTP
Subscribe to:
Post Comments (Atom)
1 comment:
Hi,
i need to say thanks to you. Because i am really confused in this topic from the last two weeks. Now only i am starts to learn software testing. I collect some resources from here also. Keep updating.
All the best.
Thanks.
Post a Comment