Thanks
saltcode
Posts
-
Restricting Database Login to a user -
Restricting Database Login to a userHi, I'm a freelance developer, I have a database application i developed for a client. I have deployed the database on my client server. My client uses the builtin\administrator to login into the database server. My Question is I will like to protect my database from the builtin\administrator from accessing it, because i don't want them to access it from the backend. am a novice to sql server security. Note: its on Sql Server 2000. How do i protect my Database?
-
Biometricsfingerprint identification
-
BiometricsHi, please can any one recommend a good .net or java biometric sdk and device. I have Googled and seen different ones but confused on which one to go for. your suggestion will be appreciated. :confused:
-
Linq to EntitesHi please am new linq to entities, my question does linq support oracle or mysql? If there is any other database it support please list it out. thanks
-
BEST birthday gift.am also 5 may HAPPY BITHDAY
-
datatable expression columnHi, I have a datatable with 3 expression column bind to datagridview with a bindingsource but the column are not displayed in the datagridview. when i debug, it was throwing a StronglyTypedException and the innerexception is InvalidCastException "can not convert dbnull to decimal". Please help. Thanks in Advance Lookman
-
datatable expression column and datagridviewHi, I have a datatable with 3 expression column bind to datagridview with a bindingsource but the column are not displayed in the datagridview. when i debug, it was throwing a StronglyTypedException and the innerexception is InvalidCastException "can not convert dbnull to decimal". Please help. Thanks in Advance Lookman
-
System.NotSupportedException: Collection is read-only.wat happens to the NameValueeCollection Set Method, wat is d use?
-
System.NotSupportedException: Collection is read-only.Hi, I have an httpmodule which am using to modify the value of my querystring parameter. What i did was to encrypt the value of the querystring parameter, am decrypting the parameter inside the BeginRequest event so my code behinde will have access to the plaintext. the issue is when retrieve the parameter into a NameValueCollection and try to use the Set method to update the parameter value i get this error. System.NotSupportedException: Collection is read-only. but i can't access the IsReadOnly property of the class. how do i update the decrypted parameter value to the querystring so i can have the plaintext in my code behind. Thanks in advance Lookman
-
free cmshi fellows can anyone suggest a good content management software, am having difficulty choosing from varieties out there.
-
Help!!!!!! TableAdapter Or BindingSource ?Hi, my question is thus: i created a master detail entry form, i have to insert the master record before the detail record. :(( the issue is the master does not insert here is the code:
private bool Save() { bool saved = false; Validate(); fACTORY_PURCHASEBindingSource.EndEdit(); fACTORY_ITEMSBindingSource.EndEdit(); FactoryDataSet.FACTORY_PURCHASEDataTable newInvoice = (FactoryDataSet.FACTORY_PURCHASEDataTable) factoryDataSet.FACTORY_PURCHASE.GetChanges(DataRowState.Added); FactoryDataSet.FACTORY_ITEMSDataTable newItems = (FactoryDataSet.FACTORY_ITEMSDataTable) factoryDataSet.FACTORY_ITEMS.GetChanges(DataRowState.Added); FactoryDataSet.FACTORY_PURCHASEDataTable deleteInvoice = (FactoryDataSet.FACTORY_PURCHASEDataTable) factoryDataSet.FACTORY_PURCHASE.GetChanges(DataRowState.Deleted); FactoryDataSet.FACTORY_ITEMSDataTable deleteItems = (FactoryDataSet.FACTORY_ITEMSDataTable) factoryDataSet.FACTORY_ITEMS.GetChanges(DataRowState.Deleted); try { if (newInvoice != null || newItems != null) { fACTORY_PURCHASETableAdapter.Update(newInvoice); fACTORY_ITEMSTableAdapter.Update(newItems); } if(deleteInvoice != null || deleteItems != null) { fACTORY_ITEMSTableAdapter.Update(deleteItems); fACTORY_PURCHASETableAdapter.Update(deleteInvoice); } factoryDataSet.AcceptChanges(); saved = true; } catch (Exception ex) { MessageBox.Show(ex.Message); } return saved; }
-
Software Requirement Bookcan anyone recommend a good software requirements book to read. cheers
-
Software Requirementam searching for an experience consulting firm that can draw up a software requirement documentation for my company. any suggestion is welcome
-
Bulk Upload ErrorHi Guys, Please,help with this.I am using bulk insert to upload a text file but i receive the following error message : System.Data.SqlClient.SqlException was caught Message="Bulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 2, column 13 (EFFECTIVE_DATE).\r\nBulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 3, column 13 (EFFECTIVE_DATE).\r\nBulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 4, column 13 (EFFECTIVE_DATE).\r\nBulk load data conversion error (type mismatch or invalid character for the specified codepage) for row 5, column 13 (EFFECTIVE_DATE)." Thanks in Advance.
-
My books arrived!CONGRATS NISH!!!
-
Budget-Lover's Laptop -Toshibagive a developer spec
-
Help!!!!!but, have i tot there should be a software that can retrieve erased data on hdd. please if u know of any kindly let me know, because i have google to find, all what have been seeing doesn't recover it, they are all scams telling you on their website their software can recover formatted data from hdd. Please Help!!!
-
Help!!!!!Please Help!!! I mistakenly formatted my notebook Hard disk with HP PC Recovery Manager. can anyone provide me with software to get my data from the formatted hard disk. thanks in advance. :((
-
sending emailSMTP Service is running.
ailMessage msg = new MailMessage("sample@lookman","kapat_saltcode@yahoo.com"); msg.Body = "Did u receive this, if u did don't reply, just testing"; msg.Subject = "TESTING"; try { SmtpClient sc = new SmtpClient("lookman"); sc.Send(msg); } catch (SmtpException smtpex) { Label1.Text = smtpex.Message.ToString(); } catch (Exception ex) { Label1.Text = ex.Message.ToString(); }