how to handle null values while doing insert/update? here's my problem, the following SQL fails:
INSERT INTO t_customer (cust_cde, cust_name, m_ind, start_dte, lst_upd_id)
VALUES (,'Tata Young','','2/4/2005','sResh12')
db design:
cust_cde is smallint type in db that allows null.
cust_ind...
Is it required to have quotes around field values while doing insert/update/delete?
e.g.
INSERT INTO t_customer (cust_cde, cust_name, m_ind, start_dte, lst_upd_id)
VALUES ('452','Tata Young','S','2/4/2005','sResh12')
I receive following err msg if there's no quotes around field values (in this...
...Public function SaveCustomer() as boolean
Dim strsql As String
Dim myCommand As OdbcCommand
Dim dr As DataRow
Try
strsql = "SELECT * FROM t_customer WHERE cust_id=" & m_custID
myCommand = New OdbcCommand(strsql, myConnection)
Dim da As New OdbcDataAdapter(myCommand)
Dim...
...Dim strsql As String
Dim myCommand As OdbcCommand
Dim dr As DataRow, i As Integer
Try
strsql = "SELECT * FROM t_customer WHERE cust_id=" & m_custID
myCommand = New OdbcCommand(strsql, myConnection)
Dim da As New...
...Dim strsql As String
Dim myCommand As OdbcCommand
Dim dr As DataRow, i As Integer
Try
strsql = "SELECT * FROM t_customer WHERE cust_id=" & m_custID
myCommand = New OdbcCommand(strsql, myConnection)
Dim da As New...
...Dim dr As DataRow
Dim oInsuranceType As InsuranceType
Dim InsuranceTypes As New InsuranceTypes()
strSQL = "SELECT * from t_insurance_type"
Dim da As New OleDbDataAdapter(strSQL, myConnection)
Dim ds As New DataSet()
da.Fill(ds, "InsuranceType")...
...dr As DataRow
Dim oInsuranceType As InsuranceType
Dim InsuranceTypes As New InsuranceTypes()
strSQL = "SELECT * from t_insurance_type"
Dim da As New OleDbDataAdapter(strSQL, myConnection)
Dim ds As New DataSet()...
Thanks korach and stevexff for your valuable comments.
listcheckbox is good idea, didn't realize. :)
Like steve said, I have insurance types in the database.
And insurance class has enum type insurancetypes with the same value as in the database. Following korach's eg in the form load event...
A customer can have multiple insurances. So in user interface,
I have 4 checkboxes representing multiple insurance types.
If any box is checked, first I see if the checked insurance type
already exists in the collection before I create a new one. The following code works but is rather long when...
...trans = myConnection.BeginTransaction(IsolationLevel.RepeatableRead)
bolInTran = True
End If
strsql = "SELECT * FROM t_customer WHERE cust_id=" & m_custID
myCommand = New OleDbCommand(strsql, myConnection, trans)
Dim da As New OleDbDataAdapter(myCommand)
Dim cb As...
...trans = myConnection.BeginTransaction(IsolationLevel.RepeatableRead)
bolInTran = True
End If
strsql = "SELECT * FROM t_recip WHERE recip_id=" & m_recipientID
Dim mycommand As New OleDbCommand(strsql, myConnection, trans)
Dim da As New...
...trans = myConnection.BeginTransaction(IsolationLevel.RepeatableRead)
bolInTran = True
End If
strsql = "SELECT * FROM t_customer WHERE cust_id=" & m_custID
myCommand = New OleDbCommand(strsql, myConnection, trans)
Dim da As New OleDbDataAdapter(myCommand)...
Beck,
I cannot instantiate oledbtransaction because it shows
error when I try to.
I guess the reason it's bombing is because in
da.UpdateCommand.Transaction = Trans
da.InsertCommand.Transaction = Trans
da.DeleteCommand.Transaction = Trans
da.updatecommand, da.insertcommand and...
...= True) As Boolean
Dim strsql As String
Dim myCommand As OleDbCommand
Dim dr As DataRow, bolInTran As Boolean
strsql = "SELECT * FROM t_recip WHERE recip_id=" & m_recipientID
myCommand = New OleDbCommand(strsql, myConnection)
Dim da As New...
I am binding the collection to a Datagrid. I can bind to the collection successfully. I am using a tablestyle to limit the data the datagrid displays.
However, the tablestyle don't work. How can I make tablestyle to work for collections? another ques, what's the mapping name to be given for...
I am binding datagrid to collection (orequests) to display customer requests.
How do you format datagrid which has collection as datasource? what mapping name to use? i.e. oRequests.GetType.Name did not work. Currently, even though I want only selected fields contaied in collection objects to...
Suppose I have two tables: customers and orders. I created two class,
customer and orders.
tbl customer
-----------
custid
custname
tbl orders
----------
orderid
custid
orderName
orderAmt
I want to display customer orders in datagrid.
So, I created orders collection and binded...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.