VS 2008 Run Same Query Several Times With Different Values?

Jun 3, 2010

This is the current code. Rather than put in this 100 times for each number, What would be a better way? Have had a go myself but can't get it to work.

[Code]...

View 6 Replies


ADVERTISEMENT

Add Rows With Different Values In Visual Basic 2008 Query?

Sep 25, 2009

I use LINQ but I am not an expert.. still learning as well on vb.net and sql

I have tables Orders and Numbers

Orders Table:
Order_ID -primary key
Date_Ordered

[Code].....

View 1 Replies

Running Same Report Multiple Times With Same Query?

Sep 5, 2011

I have a report that displays some sales info. I have a query that takes the data from an SQL Server database and I store it in a dataset. Up to there everything is ok. The problem is that I need to print the same report using Crystal Reports for each row in my query. Is there any way this can be done? I call a form with a ReportViewer tool to display the reports, wich are basic .rdlc reports.

View 1 Replies

Format XML Data In Values Using Insert Query In SQL Server 2008?

Feb 16, 2012

INSERT INTO [ET_SolutionText]
([SolnTextKey]
,[SolnTextValue]
,[SolnTextTitle])

[code]....

In Above Query, SolnTextValue is XML field. How i can format XML data in Values using insert query in SQL server 2008?

View 1 Replies

Entity Framework Query Returns Same Row Multiple Times

Aug 31, 2011

This is my first time using the Entity Framework and I'm getting some confusing results. I know a particular table contains 3 distinct rows when I run this SQL query:
SELECT * FROM mytable WHERE service_month = 201012

When I run this query against the framework however, I get 3 rows, but they are all copies of the first row (VB syntax).
Dim temp = _context.mytable.Where(Function(x) x.service_month = 201012)
Did I set up something incorrectly? This is how I'd do it with LINQ to SQL.

View 1 Replies

(VB 2008) Login System Using A Database And Query Builder To Return The Correct Values

May 10, 2011

I've created a log in system using a database and query builder to return the correct values, however, once the users signed in I need to bring up the rest of their data from the same table in the database. How'd be the best way of going about this? I'm not sure whether the log in should be changed to use the primary key as well.

View 2 Replies

Looping Code Is Adding Values Multiple Times?

Feb 17, 2011

Looping code is adding my values multiple times

View 4 Replies

Enlarge An Image Up To 32 Times Or 64 Times Bigger Than Original?

Dec 12, 2011

I want to enlarge an image, possibly up to 32 times or 64 times bigger than original dimensions (so that the user can see each pixel) if possible. The following is a simple function that I have to enlarge an image.

Private Function xEnlarge(ByVal Source As Image, ByVal Rate As Double, Optional ByVal Quality As Drawing2D.InterpolationMode = Drawing2D.InterpolationMode.HighQualityBicubic) As Image

[Code].....

View 6 Replies

Add SQL Query Values To Textbox

Apr 14, 2010

url...How do I reference a query in a DataTableAdapter so that I can put the values gathered into a Textbox? I'd like them to all go on their own line in an order like so: LastName, FirstName, GradYr: MP1_Pts: MP1_Comments; MP2_Pts: MP2_Comments.Can someone guide me in the right direction here? This is the final step I need to take in creating my program.

View 12 Replies

Parsing Values In Query?

Apr 24, 2012

Right now I have an array that is unparsed. One of its elements goes something like this:

"Blah, 555-5555"

So it's a name and a telephone number separated by a comma. The instructions I have tell me to use a query to put the information in the array into a data grid view in two columns, one for the name and one for the telephone number. I don't know how to isolate each inside a query.

View 6 Replies

C# - Asp.net Query With Insertion Of Values In A Table

Dec 26, 2011

suppose we have three tables in the Database:

[Code]....

View 1 Replies

Calcuate In A SQL Query With Feild Values From A Different Row?

Aug 10, 2011

If I have a query dataset in MS Access (or SQL query) that results in a table with column A as such:

A
500
400
300

How can I hav Column B show growth rates such as B2 = (A2/A1) where A2 = 500, A3 = 400, and A4 = 300, and so on successively (like one can perform on an excel sheet) as such:

B
1
.8
.75
(Columns shown adjectly below for clarity)

A B
500 1
400 .8
300 .75

View 3 Replies

LINQ To XML To Query Attributes Values

Oct 25, 2011

I am trying to use Linq to Xml to query attribute values that will be used to populate a combo box. My xml looks like this:

<Records>
<Record id="1">
<LogoPositioning>
<Brand id="26">
<Xpos>100</Xpos>
<Ypos>200</Ypos>
[Code] .....

My issue is with getting the attribute values. I tried this:
For
Each xattr
As
XAttribute
In
attr
cboBrandChoice.Items.Add(test.Value)
Next

However, I keep getting the following error:
{"Unable to cast object of type '<GetAttributes>d__8' to type 'System.Xml.Linq.XAttribute'."}
I'm new to using Linq so this error isn't making a whole lot of sense to me.

View 2 Replies

Query Values In SQL Without Filling Controls?

Oct 26, 2009

I want to check some values in a sql db without populating controls. I can select the row i want, but for some reason my mind then hits a blank, maybe its because its monday.I want to check a few bit fields in the row and if 1 - do something, if 0 do something else. In this case depending on which bit fields are set to what, id like to enable/disable various controls on my form.

Heres the code i got so far, but as i said then i drew a blank, and i may be going about this completely wrong:Dim SQLcon As New SqlConnection("server=DEVSERVERDEVSQL;" & _

"integrated security=sspi;database=WDA_SQL")
Dim SQLqry As New SqlCommand("SELECT * FROM Users WHERE (Username = @Username) AND (Password = @Password)", SQLcon)
SQLqry.Parameters.AddWithValue("@Username", UsernameTSlbl.Text)

[Code]...

View 15 Replies

Return Multiple Values From A Query .net?

Apr 10, 2012

how to store or return multiple queries result values into multiple variables.. I'm using a query that return 4 columns but how to.. individual store those results into 4 separate variables.. here is my code

Private Sub FrmAlumnos_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
txtCurrentUser.Text = Login.txtUser.Text
Dim strsql As String

[code]....

View 3 Replies

Sql - Show Previous Day Values In Query?

Jun 1, 2010

I have a table which fields are Date, No, Turnover, TotalWin, Opencredit, Handpay, Billin, gamesplayed and I am trying to write sql in vb.net that will show me previous day value but I cant. Here is what I am trying to do.

[code]...

Ok Thomas I am not able to give correct answer to your question because first time in my Life I am trying to write sql. I was doing this with MSAccess and it was easy. Now I am getting pretty simple error I think with this code but I can't find solution again. What is wrong.

View 2 Replies

SQL Adding Multiple Values Within Query

Nov 15, 2011

I have a sql query with that adds numerical values from different table to find total for a shipment. When I execute this query, it works fine for the first record but rest of the records show null value when I know there are records present. SQL pros take a look if there is a problem with my syntax.

CODE:

View 8 Replies

Sql Server - Sql Query And Double Var Values?

Aug 18, 2011

Im having an issue with a certain query,Dim nwLat As Double Dim Ssql As String

nwLat = nwLatHidden.Value
Ssql = " select * from customer where latitude < " & nwLat
TFRcount.SelectCommand = Ssql
TFRcount.SelectParameters.Clear()
TFRcount.DataBind()

All it does is refresh the page and does nothing; it should populate a chart. However when I replace nwLat with a value (eg where latitude = 56) it works perfectly and populates the chart. Any ideas what's wrong with nwLat?

EDIT: I switched nwLat to long and it works; however it only takes the number up to the decimal and ignores the rest. Any way to fix? (eg as double 56.764746 and long 56)

View 2 Replies

.net - Update 2 Table Values In One Query In LINQ?

Apr 26, 2010

I have 2 tables Table1 with columns [BId,Name,Amount] Table2 with columns [CId,BId, ExpenseType,Expense]. BId Is the foreign key in Table2. The Amount field in Table1 is always higher than Expense in Table2. I need to update the values of Amount (increase or decrease) based on value of Expense and I want to do it in single query in LINQ. Eg If the Expense has to be updated with 200, I would decrease(negate) Amount value with 200. If Expense is reduce to 100 then the Amount is increased by a value of 100.

View 1 Replies

Asp.net Mvc - Sorting Or Ordering Values Returned In A EF Query MVC 3 App

Oct 24, 2011

I am using a where comparer in the below snippet from my function.. I need to order or sort the returned items by one of the columns... I tried using .OrderBy(function(f) f.regDate) but that dont work at all... The part of the function in question looks like this:

[Code]...

View 1 Replies

DB/Reporting :: Simple XML Query And Comparing Values

Aug 5, 2009

I've tried different approaches to query a simple xml and compare one of it's values but none of them worked well.

Consider the following XML structure:
<?xml version="1.0" encoding="iso-8859-1" ?>
- <Shops>
- <Shop>
<text>Northampton</text>
<value>NN</value>
<currentdate>050809</currentdate>
<labelcounter>1</labelcounter>
[Code] .....

I have the shop name in a drop down list which is ShopsDDL and it's set to autopostback. What I want to achieve is:
On postback, check for a xml node where node's text = shopDDL shopname
And retrieve also this node's currentdate and label counter.
Rhen, if the node currentday = today then increment labelcounter by 1
Else set labelcounter = 1 and currentday= today
My problem is the XML query, I can do all the logic as soon as I manage to retrieve data from the XML.

View 1 Replies

Linq Query Handling Null Values?

Nov 12, 2011

From r In ReceiptLines
Where
r.RECEIPT.RECEIPTDATE >= _reportStartDate
And r.RECEIPT.RECEIPTDATE <= _reportEndDate

[Code].....

I am fetching all departments and their sales, average, count from the ReceiptLine, Receipt, ReceiptDiscount tables. The problem i am facing is, if i remove where discount > 0, I am getting null exception. But if I include that, then I only get sales that has discount. How would I write query that bring all sales less discount (if it has one).

View 2 Replies

Mysql Parameterized Query Not Filling In The Values

Nov 8, 2010

Trying to do a mysql parametrized query and i'm having a little issue.

cmd = conn.CreateCommand
cmd.CommandText = "insert into `rootforest` (rootforestname, BusinessName) VALUES (?rfname, ?bname)"

[Code]....

It errors on the executenonquery. Says the column rootforestname can not be null. i don't under stand why it does not fill in the value in the command text.

View 3 Replies

Number Of Query Values And Destination Field Are Not The Same?

Jul 28, 2011

Private Sub ButtonSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonSave.Click

[Code]...

View 3 Replies

Number Of Query Values And Destination Fields Are Not Same

May 9, 2011

I am getting the above error in my code. I've searched the net (on this site and others) for a solution to this problem and it seems that its either something to do with a field name being a reserved name ie. Date, Time etc.... or its missing (') or (") in the SQL command. ive tried both these solutions to no avail.

Dim objDataAdapter As New OleDbDataAdapter
Dim objDataSet As New DataSet
Dim objDataReader As OleDbDataReader
Dim i As Integer
Dim SQLstr As String
[Code] .....

View 2 Replies

Query Table Retrieve Filtered Values?

May 24, 2011

I am trying to Query a table with data from another table and return a filtered result

Dim i As Integer = 0
For Each lrow In dtlist.Rows()
Dim lat As Double = dtlist.Rows(i)("Latitude") 'CDbl(Me.SubjLat_txt.Text)
Dim lon As Double = dtlist.Rows(i)("Longitude") 'CDbl(Me.SubjLon_txt.Text)

[code]....

Obviously doesnt work but the idea is thats the Value i need to put in the Value Column of dtlist In short the project, loops through one table(dtlist) of address's and gets the distances of it from the address's in the second table(dtsold) then gets the higest value from dtsold within a certain distance?

View 2 Replies

Sql - Pass Multiple Values From Same Column In A Query?

Aug 23, 2011

Hpw can I pass multiple values from same column in a query? I am using vb.net and sql server database.

With my query an exception is generated saying that @booking_date has already been declared try a different variable....

My query is:

Dim da As New SqlDataAdapter("select * from Bookings where booking_date Between (@booking_date AND @booking_date) AND booking_time Between (@booking_time AND @bookinbg_time) AND game = " & x, con)

View 1 Replies

Use The Selected Dropdown Values To Determine A Query?

Apr 2, 2012

I am having trouble using the values that were selected from the dropdown list. How would you reccommend passing the selected values from the view?Ideally, we want to use the selected dropdown values to determine a query.

View 1 Replies

Why Are Number Of Query Values And Destination Fields Not The Same

Feb 6, 2011

here is my code. dont seem to know whats the problem. i have 12 data fields in access excluding the ID field.

Dim strCon As String = "Provider=Microsoft.jet.oledb.4.0;data source=C:UsersdexterDocumentsdesktopcsci14databaseMuseum-final.mdb"
Dim dSet As New DataSet

[Code].....

View 3 Replies

Forms :: Find If Times Is Between 2 Times?

May 13, 2009

I have just started using vb.net and I have a checked list box with times throughout the day shown as

00:00 - 00:14
00:15 - 00:29
00:30 - 00:44
00:45 - 00:59

What I am trying to find is a way to get the current time and find which list item it fits into. What I think I need to do is to first of all get the current time and then go through the list splitting each item into 2 times and seeing if the current time fits. For example: Split the item 00:00 - 00:14 to 00:00 and 00:14 and then check if the current time is more than 00:00:00 but less than 00:14:59 and if so do certain task.how to go about taking each list item and splitting it into 2 separate times so I can check between them?

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved