Tagged Questions

Multiple Active Result Sets

learn more… | top users | synonyms

9
votes
1answer
170 views

What effect does MARS have on NHibernate?

When using SQL Server, what effect (if any) would enabling or disabling MARS support have on NHibernate? MARS = Multiple Active Result Sets Reason for asking: Comparing Entity Framework and ...
6
votes
3answers
1k views

Disadvantages of MARS (Multiple Active Result Sets)?

Does anyone disadvantages of MARS (Multiple Active Result Sets)? Does any one know any reason which should make one avoid using MARS, like cases where cursors are more useful then MARS.
5
votes
3answers
506 views

SQL Exception: “Impersonate Session Security Context” cannot be called in this batch because a simultaneous batch has called it

When opening a connection to SQL Server 2005 from our web app, we occasionally see this error: "Impersonate Session Security Context" cannot be called in this batch because a simultaneous batch has ...
3
votes
2answers
6k views

Creating (and accessing) an array in MIPS

I'm trying to create an array in MIPS Assembly, and then add all the elements together. However, when I try to assemble the following, it says Error in read_array line 1 position 7: ".word" ...
2
votes
2answers
70 views

Why can I not use li.s in MARS?

I cannot use li.s in MARS. I am new to MIPS programming and I am trying not to use any co processors. Why can I not use li.s is MARS the program? It would be very helpful is someone could lead me in a ...
2
votes
1answer
149 views

Reading files in MARS

I'm trying to write a program that reads in characters from a .dat file that correspond to different colors to be displayed in the LED simulator; x = off, R = red, etc. My problem is, I cannot figure ...
2
votes
1answer
87 views

is it Efficient to use Mars to Update 7000 Rows?

I have a service to update/inserts 7000+ rows using MARS. Is there a better way to do this?
1
vote
2answers
67 views

Mips jump back to a branch statement

I'm having a lot of trouble trying to figure out how to implement this in the Mips/Mars architecture. I'm making a Battleship game and storing the board as an array that can hold 100 ints. I need to ...
1
vote
1answer
190 views

MIPS Assembly - Accessing one character in a string

I am using something like SPIMS or MARS with syscall functions. I am reading in a string (and it works because I can print it out) as follows: li $v0, 8 la $a0, string li $a1, 256 syscall ...
1
vote
1answer
2k views

reading the file name from user input in MIPS assembly

I'm writing a MIPS assembly code that will ask the user for the file name and it will produce some statistics about the content of the file. However, when I hard code the file name into a variable ...
1
vote
2answers
524 views

MARS vs NextResult

I rehydrate my business objects by collecting data from multiple tables, e.g., SELECT * FROM CaDataTable; SELECT * FROM NyDataTable; SELECT * FROM WaDataTable; and so on... (C# 3.5, SQL Server ...
1
vote
1answer
265 views

Membership.GetUser() & MARS

I'm using asp.net membership, and need to make a call to Membership.GetUser() while I have another open SQL connection, but my code dies at that call. I have MultipleActiveResultSets=True in the ...
0
votes
0answers
124 views

MIPS assembly convert string to ascii character values

I need to read in a string and sort it, then print it back out in sorted order. The sorting and printing of the ascii characters isn't troubling me but I'm wondering how to convert the individual ...
0
votes
1answer
51 views

Random numbers in MIPS

I'm trying to generate a random integer from 0-99 (inclusive) but I'm having some difficulty finding where it stores the value to when using the 42 syscall. So far I have: li $a1, 100 li $v0, 42 ...
0
votes
1answer
67 views

Decoding BNE MIPS Instruction

I am running the following MIPS code in MARS simulator: add $t0, $zero, $zero # i = 0 add $t4, $zero, $zero # initialize the sum to zero add $t5, $zero, $zero # ...
0
votes
1answer
44 views

MARS Simulator MIPS “la” pseudo instruciton

In MIPS, the la instruction translates into lui and ori. However, MARS Simulator does not seem to do that at all. When I dump the following machine code: .text la $a0, array la $a1, ...
0
votes
2answers
36 views

Manually specify memory address for labels (MIPS)?

Is it possible to change or modify the address of a label in MIPS? (I am using MARS) for example... .data x: .half 9 now that 'x' will be stored randomly in memory, but what if i wanted to store ...
0
votes
1answer
55 views

MIPS temporary registers - values preserved after return?

I am writing a program in MIPS assembly using the MARS simulator. I'm using jal to make a function call, then using jr $ra at the end of that to return to the original point in the program. What I'm ...
0
votes
0answers
169 views

MIPS MARS Simulator Error - “Operand is of incorrect type”

I am trying to run an example of a MIPS assembly program in the MARS simulator. I am getting an error that $L1 is the incorrect type of operand when using jr. Any suggestions? The equivalent C code ...
0
votes
2answers
103 views

Problem loading memory address only using real instructions in MIPS asm on MARS

I'm trying to learn MIPS assembly language by myself using MARS simulator. For didactic reasons I'm limiting myself to not using pseudo-instructions. While trying to get the address of some data ...
0
votes
0answers
53 views

MARS Include File

I'm currently learning MIPS, and coding within MARS. I'm starting to compile a small of various utility functions, and I need to know how to include it. I read somewhere about .include - it appears ...
0
votes
0answers
113 views

Show division result in MIPS

Hi I'm coding a small program in MIPS and I have this code li $v0, 2 div $t0,$t2,$t1 move $a0,$t0 syscall (it's not the full code, just the section handling division) Where $t1 is 2, $t2 is 9. ...
0
votes
1answer
117 views

MIPS Instruction in Data Directive

I'm trying to figure out what this program does, but I have a feeling MARS isn't handling the .data directive correctly. What is stored in the data segment if an assembly instruction is given under ...
0
votes
0answers
197 views

Use of MultipleActiveResultSets=True recommended?

I want to write a query to display the contents of 2 table in a dataGridView. Basically the query from SQLtable1 will give me the CardId and the StCode. With this StCode, I want to lookup in another ...
0
votes
1answer
92 views

normalize floating point

hey,i am doing floating point addition using MARS. SameExponent: add $s6,$s4,$s5 after I aligned the exponents, I added up the significands,but how do I detect if the sum is still normalized ...
0
votes
0answers
139 views

Assembly division

move $t0,$zero #t0 is counter addi $t9,$zero,33 # 33 repetitions move $s4,$t7 #set the remainder equal to dividend Division: sub $s4, $s4,$t8 #check if the divisor is less ...
0
votes
1answer
261 views

Mars mips simulator

Hey, I am using MARS MIPS simulator to simulate the division in assembly codes. during the shifting process, how do I set the rightmost bit of the quotient to 1 and 0? i used ori $t2,$t2,1 to set 1 ...
0
votes
2answers
820 views

MIPS: How to sort

I need your help with this problem of sorting in MIPS assembly : how to write a MIPS program to read a text file containing only decimal integers and sort them in descending order. The program ...
0
votes
1answer
192 views

What is the instruction in MARS simulator (assembly language) that flips/reverses one word (4 bytes) of the LED lights on the LED display?

Apparently there is one simple instruction to accomplish this. I was unable to find it anywhere. Little help? Thanks in advance
0
votes
1answer
250 views

creating a queue, enque, deque and qempty functions

this is breadth first graph traversal algorithm. i don't know how to create a queue, dequeue, enqueue , qempty functions. NEED HELP queue:creats a queue ($s5) enqueue: gets value from source into q ...
0
votes
4answers
1k views

invalid program counter value: 0

i'm currently working with assembly language under the MIPS processor. I'm currently using MARS simulator and for reasons unknown i get the following error message after every run: Go: running try.s ...
0
votes
2answers
755 views

Keyword not supported MultipleActiveResultSets

We are using a custom Membership Provider in an ASP.NET MVC application. We have been experiencing intermittent 'System.InvalidOperationException - There is already an open DataReader associated with ...
0
votes
1answer
292 views

Is ODBC from MARS but ADO/OLEDB from VENUS?

Short question: I am finding I need to use MARS over ODBC but not over ADO/OLEDB, is that correct? Longer explanation: I just discovered my ODBC code (using "Driver={SQL Native Client}", MFC ...
0
votes
1answer
313 views

EF-Reference.Load() - There is already an open DataReader

Looks like EF Reference.Load() is not working without MARS? Is that right?
0
votes
1answer
1k views

help with my MARS MIPS Simulator Code

hey, i need help. I have written this code in MARS. It is supposed to receive an integer from the user, and convert it to HEX. I've been going over it for hours and as far as i can see, it should work ...