I need to prepare ASP.NET script that matches an insert PHP script I already have, can anyone help me?
use username_db;
create table customer
(cust_num int(4) NOT NULL
company char(25),
cust_rep int(3),
credit_limit int(5));
//then i have four more tables and the following
/*---------------------*/
insert into customer values
(2111, 'JCP Inc.', 103, 50000)
insert into customer values
(2102, 'First Corp.', 101, 65000)
//and so on..
can anyone help???