Can someone please review my code and see where I can be missing information. I get the following error:
Line 1: Incorrect syntax near ','. Unclosed quotation mark before the character string ' )'. at System.Data.SqlClient.SqlConnection.OnError(SqlExc eption exception, Boolean breakConnection)...
I have a page that I've built that does a bulk insert from a file that is stored on a web server. When the user clicks on the submit button, they receive the following error:
Operating system error code 3(The system cannot find the path specified.).
I have made sure that the SQL server has...
I have a site that I've almost completed and while testing it today noticed that it's not uploading any files or doing the bulk insert in SQL that I need it to. Here is my codebehind:
Imports System.IO
Imports System.Data
Imports System.Data.SqlClient
Partial Class _Default
Inherits...
I have a simple browse and upload web page that users can upload a .csv file to a server and then a bulk insert is ran after the user clicks the "upload" button.
Here is my default.aspx code:
@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %>...
I have the following SQL Bulk Insert query:
BULK INSERT [dialerresults] FROM [C:\IVR Test\csvtest.txt] WITH (FIELDTERMINATOR = ',' ROWTERMINATOR = '/n')
and here is the sample data:
1,512 206 1293,rob stevens,doctor alexander,1 5 10,12:30, null
2,512 555 1212,jason reed,doctor smith,5 5...
I am trying to write a page that requires a Pass/Fail for conditions that are done everyday and then posting them to a database. The problem I'm having is the validation of the checkboxes. Find the code below:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Everyone,
I'm trying to run a stored procedure to give me more than a single result using the following line:
SELECT TOP 1 @FirstListing = FirstListing, @Comment = Comment, @oc_start = oc_start, @oc_end = oc_end
Granted there is much more to the stored procedure than this but this is a snip...
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.