output

How can I retrieve files from an iPad development tool app?

I'm not sure how best to word the Title of this, so if someone can suggest a better one, please feel free to edit. I'm writing an app for iPad that requires me to create some of the app data files with the iPad itself during development, i.e. a tool I am building with the iPad will be used by the developers themselves to create sample f...

How is *it++ valid for output iterators?

In example code, I often see code such as *it++ for output iterators. The expression *it++ makes a copy of it, increments it, and then returns the copy which is finally dereferenced. As I understand it, making a copy of an output iterator invalidates the source. But then the increment of it that is performed after creating the copy would...

perl Net::Telnet wait_for a middle character, while the "print" action still buffering data

I'm using perl with the Net::Telnet module. My problem is while sending a command that has an output of 1000 rows, the "wait_for" looks for a string in the middle. The wait_for stops but the buffer is still keeps storing the command's output. the problem is with the next command that I send - I'm getting the rest of the first command'...

What is wrong with the syntax of this OUTPUT statement (SQL Server 2005)?

I'm trying to use the OUTPUT statement in a stored procedure in order to return the ID of a newly inserted row. The stored procedure is: CREATE PROCEDURE PROC_RESTORE_REQUEST_TO_QUEUE @cs_uri_stem varchar(900), @cs_uri_query varchar(2500), @date datetime, @time datetime, @queue_state smallint, @process_id int, ...

I write a MySQL table into an output file (working on Unix) but I can not enter the file directory (permission denied)

When I output a whole table into an output file named 'Arshan.txt' this command works well but I can not access the output file created. When I access /usr/local/mysql/data it says permission denied. Any help will be appreciated. Thanks in advance. ...

Using prolog to output into bash shell

Hi. I am trying to call a prolog program and receive output into my bash script. Currently I am using the extremely crude version of using halt(0) or halt(1) and then examining the exit code in bash, using 0 as true and 1 as false to the question my prolog program answers. Is there a better way to handle output? I am using gnu prolog. I...

Direct access to memory devices under Windows / Linux

Hello I'm currently writing a software to test the integrity of flash-memory devices. (using c++ iostreams) To achieve this goal files with random content are written to the device, read back, copied, moved, compared ( I put the device under stress condition, and check if the data is valid from time to time)... Everything looks great on...

Why does this attempt to output an arrayList object to a JtextArea not work?

ArrayList list_of_employees = new ArrayList(); @Action public void reportAllEmployeesClicked(java.awt.event.ActionEvent evt) { this.outputText.setText(""); int i=0; //JOptionPane.showMessageDialog(null,"test Employee list print"); ListIterator list_ir = list_of_employees.listIterator(); //list_of_employees is of ...

PHP Output of SQL Query

As of now I have no errors in my program, but I need the primary key for one of the tables for a relation for the following Query. but instead of getting a actual number the value the query is sending back is Resource id #4 Here is my Code: (The query that I'm having issues with is the $sql_branch, is there a function to change the resu...

PHP query output of SQP

I have no actual php errors, but When I make my query this I get output : $sql_result = "SELECT AuthorFirst, AuthorLast, OnHand, Title FROM Inventory i, Wrote w, Author a, Book b WHERE i.BookCode = b.BookCode AND i.BookCode = w.BookCode AND a.AuthorNum = w.AuthorNum AND 2 = i.BranchNum"; When ...

Using OUTPUT Parameters within Dynamic SQL within Stored Procedures- Possible?

I have a SP that I have created to check for validations and return an OUTPUT Parameter of 0 (No Error) or 1 (Error). However, I have to run this SP within Dynamic SQL since it will be ran through a loop of different data. Can I pull the OUTPUT from the SP through the EXEC sp_executesql @SQL? I can not post the actual code, but I can g...

ASP.NET MVC Application not calculating, n00b question

OK, I have a problem where my calculation never takes place, like it is supposed to. i'm trying to make a computation which solves for the roots of a quadratic equation using the quadratic formula, based on the values of a, b and c entered in a primitive form. Now, let me supply the code for my Model, view and Controller for this appli...

Difficulty in creating filename

Hey guys. I have some difficulty in creating a filename. okay, here is what I want to do: a matlab function called file_save(filename,input_data) is to save data into a xml file. so in a for loop, I want to create xml file with sequential filename eg. output1.xml output2.xml output3.xml I guess there are some way of combining filename? ...

Smalltalk: Writing output to a file

Usually with my output I am writing it to the Transcript with... Transcript show: How does one write the output to a file instead? ...

Haskell: I/O and Returning From a Function

Hi all, Please bear with me as I am very new to functional programming and Haskell. I am attempting to write a function in Haskell that takes a list of Integers, prints the head of said list, and then returns the tail of the list. The function needs to be of type [Integer] -> [Integer]. To give a bit of context, I am writing an inter...

DevEnv Vs2008 crashing on exit when output window is undocked?

VS2008 SP1 I have a bunch of windows (output, call browser, error list, Find Results 1) docked in the lower pane of VS. If I simply undock those windows, then go to File->Exit, VS crashes with "microsoft visual studio has encountered a problem and needs to close" I attach a debugger, it takes me to line 75 of atlcomcli.h "if (*pp)" ...

Would it be possible to jump between prev/next Terminal command prompts?

Hi, I'm using zsh in OS X Terminal.app and for quite a while, I've been longing for a way to jump back and forth between prev/next prompts in the terminal's output. One convenience with this would be to be able to review (and track errors at) the end of each command's output; eg. when you building stuff from source with ./configure; mak...

store (x, y) positions in some output file using Xcode for iPhone?

Hello, I want to program an application on iPhone and I want to know if the idea of this application is doable. So in the Application I want to have an image that appears to the users (this is easy. When the user touches the image, the application records the (x,y) position of where the user touches exactly in the image and stores it in ...