blah blah blah is here! blah blah » Close

0
votes
1 answers

filestreaming with SQL Server 2008 R2 and visual Studio 2010 Professional

Hi, I'm trying to use filestreaming (SQL 2008) with Visual Studio 2008 to load a file into a folder. I have a window that allows the user to select the file he wants to load into a SQL Server table called Available_files and then my code l ...

0
votes
1 answers

inserting data into ms acess database from textboxes in c#

can somebody help me with this. please i need some code snippets or tutorials for it :D.. thanks.:D

0
votes
1 answers

ASP.NET insertion and joining between tables

I have the following tables: 1.) PRODUCT_INFORMATION: "ID", "CUST_ID", "DISTR_ID", "PROD_ID", "CNC_ID" 2.) CUSTOMERS: "ID", "CUSTOMER_NAME" 3.) DISTRIBUTORS: &qu ...

0
votes
1 answers

Inserting data from text box

Hi All, I am trying to insert data in one of the tables using SQL Server. Below is the sql command: string insertSQL = "Insert into CUSTOMERS (" + " CUSTOMER_NAME" + ") VALUES ...

0
votes
1 answers

Faster database INSERTs???

I'm working on some code in C# that will run a query against a remote Sybase database and then insert those records into a local Access database. It works just fine, the problem is that it is SLOW!...it takes 15 seconds to insert 150 recor ...

1
votes
1 answers

C# question - textBox1.text needs to have dots inserted every 3 char for IP Address

Hello, I have a textBox1.text that I would like to have it insert a . every three characters. For an IP Address, like 192.168.001.016 [code]private void tbIPVM_TextChanged(object sender, EventArgs e) { if (tbI ...

Feedback