Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
7k views

SELECT INTO Variable in MySQL DECLARE causes syntax error?

I´d like to SELECT a single value into a variable. I´d tried to following: DECLARE myvar INT(4); -- immediately returns some syntax error. SELECT myvalue FROM mytable WHERE anothervalue = 1; ...
4
votes
4answers
522 views

Importing .xlsx file into R

Please can someone help me on the best way to import an excel 2007 (.xlsx) file into R. I have tried several methods and none seems to work. I have upgraded to 2.13.1, windows XP, xlsx 0.3.0, I don't ...
4
votes
2answers
10k views

insert into database from Joomla form fields

I am beginner to Joomla development, I have created a very simple module, How to create a form of three textfields in it, and then insert textfields data into database /. Any one can help ?
4
votes
2answers
262 views

How do I INSERT INTO from one mysql table into another table and set the value of one column?

I need to insert data from table1 into table2. However, I would like to set the myYear column in table2 to 2010. But, there isn't a myYear Column in table1. So, my basic insert looks like: INSERT ...
3
votes
1answer
239 views

Using MERGE INTO with Scope_IDENTITY

When Merge into does an insert with he following statement, Scope_Identity returns the correct surrogate key information. However when an update is performed Both Scope_Identity and @@Identity return ...
3
votes
3answers
912 views

Oracle SQL insert into with With clause

I'm new to sql, so maybe it is a dumb question, but is there any possibility to use With clause with Insert Into? Or are there any common workarounds? I mean something like this: With helper_table As ...
2
votes
2answers
35 views

oracle select into variable when select return nothing?

declare fName varchar2(255 char); begin SELECT x.constraint_name into fName FROM all_constraints x JOIN all_cons_columns c ON c.table_name = x.table_name AND c.constraint_name = x.constraint_name ...
2
votes
4answers
65 views

transform an xml into suitable text

I have an xml, that looks like this <person> <name> <name-first>foo</name-first> <name-last>bar</name-last> </name> ...
2
votes
1answer
82 views

Select Statement inside a procedure in Oracle

sorry for asking this question but it's because none of the answers given before are enough for me to understand. I want to write a stored procedure that returns all the columns in a table.As an ad ...
2
votes
1answer
77 views

SQL Server: How can I copy several columns from table1 into table2 while ALSO defining certain static rows in table2?

I understand how to copy a column from one table into another, but I need to do that + also define the values of extra columns in table2 according to local variables within my stored procedure. Is ...
2
votes
1answer
588 views

PL/SQL how do I select into table type local variable

PROCEDURE "ARCHIVE_CASE_LIST" ( a_case_id_list IN INLISTNUMBERS ) IS l_customers INLISTNUMBERS; INLISTNUMBERS is Oracle table of numbers; How do I prepeare pre-calculated list of customers ...
2
votes
3answers
3k views

oracle insert if row not exists

insert ignore into table1 select 'value1',value2 from table2 where table2.type = 'ok' When I run this I get the error "missing INTO keyword" . Any ideas ?
2
votes
6answers
6k views

Adding a Line Break in mySQL INSERT INTO text

Could someone tell me how to add a new line in a text that i enter in a mySql table. I tried using the '\n in the line i entered with INSERT INTO statement but '\n is shown as it is. Actually i have ...
2
votes
1answer
1k views

Read from a file into an array and stop if a “:” is found in ruby

How can I in Ruby read a string from a file into an array and only read and save in the array until I get a certain marker such as ":" and stop reading? Any help would be much appreciated =) For ...
2
votes
1answer
823 views

Using OUTPUT/INTO within instead of insert trigger invalidates 'inserted' table

I have a problem using a table with an instead of insert trigger. The table I created contains an identity column. I need to use an instead of insert trigger on this table. I also need to see the ...
1
vote
4answers
85 views

java add character into a string

i get a big string from a web page and its like this "07:10Ο ΑΣΔΦΑΣΔΦ07:30ΑΣΔΦΑΣΔΦ10:15ΝΑΣΔΦΑΣΔΦ" and i want every time i find time like this "17:50" or "07:30" to get a new line before the ...
1
vote
1answer
80 views

what is the equivalent of .class (used in Java) in C#

In Java : TokenStream my_stream = analyser_exclude.tokenStream(fieldName, my_reader); TermAttribute my_token = TermAttribute.getAttribute(TermAttribute.class); In VB.NET : Dim my_stream As ...
1
vote
3answers
60 views

Copying data into differently named columns in another SQL table

I want to copy data from one table into another table where the columns have different names, and am trying to use the following SELECT `content` AS `name`, `id` AS `orig_id` INTO `songs` FROM ...
1
vote
5answers
148 views

INSERT INTO database table, from form not working. SQL

lets get straight to my problem, the code I have written here does not write to my database and I cannot figue out why. At the moment I am simply trying to get to grips with php and sql so there is no ...
1
vote
1answer
372 views

Javascript/Jquery parse excel into text

I am fairly new to javascript but I would like to possibly create a javascript of jquery that would go through all the records in the excel sheet row by row, and for each record parse in TEXT file the ...
1
vote
1answer
698 views

Display data from table in Ms.access into text box C#

I have a problem to ask you. I have a table in Ms.Access that contain: (FoodID, FoodName, Price) and in C# I have three text boxes (txtId, txtName, txtPrice) and a button (btnSearch). My question is ...
1
vote
2answers
136 views

im trying make a insert into with select and value

Im trying make a INSERT INTO with a SELECT and values, but no works. TABLE SOURCE: CREATE TABLE "MICV_PRE"."TS$SEQUENCES" ( "ID_NODE" NUMBER DEFAULT 1 NOT NULL ENABLE, "ID_TASK" ...
1
vote
2answers
310 views

select into temporary table repeatedly

HI, how can I select repeatedly into the same temporary table and then return the full outcome. something like select col1, col2 into #temp where col4="abc" and col5=10 select ...
1
vote
0answers
327 views

bind xmldata in android grid

I am developing Android Applicastion,I am retriving data from one server to display data in to android grid through webservices,i created webservices in .net and connected to server in that webservice ...
1
vote
1answer
235 views

kohana how to bundle javascript into view

I have a javascript with a counter, and a view. I want the javascript counter to start whenever some one hits the buy product button. my problem is: how can i control the javascript from the kohana ...
1
vote
1answer
440 views

android pagination in gridview

Is it possible pagination in android gridview? if it is available can you provide any link.
1
vote
2answers
134 views

how to insert xml data into sql

<FILE> <TITLE> Final Fuel Tax Rates </TITLE> <QUARTER>1Q2010</QUARTER> <RECORD> <JURISDICTION ID="#16">AB</JURISDICTION> ...
1
vote
1answer
372 views

Convert Excel documents to wiki markup

Is it possible to convert Excel spreadsheets into MediaWiki markup? I stumpled upon strange recommendations exporting to HTML and convert it into markup. Is there a solution, maybe exporting to XML ...
1
vote
3answers
1k views

python MySQLdb got invalid syntax when trying to INSERT INTO table

COMMENT OUT below just for reference "" cursor.execute (""" CREATE TABLE yellowpages ( business_id BIGINT(20) NOT NULL AUTO_INCREMENT, categories_name VARCHAR(255), ...
1
vote
2answers
423 views

ignore some values in insert into select from sql stament

Suppose that I have a Table Symbols(Symbol, Value) and a Table SymbolValues (Symbol, Value) which contains a list of values for the symbol. How to choose maximum values fromt he SymbolValues table and ...
1
vote
0answers
561 views

Struggling to translate SQL Query to Linq in a Domain Services Class and Entity Data Model

Visual Studio 2008 | Silverlight 3 | SQL Server 2005 | Domain Services Class | Entity Data Model I have a database table "Students" with columns FirstName, LastName, Semester, ProgramOfStudy, Column ...
1
vote
1answer
625 views

How to get the values of the radiobuttonlist which will be selected in nested datalist to use it in multi insert later using c# asp.net 2

How to get the values of the radiobuttonlist which will be selected in nested datalist to use it in muliti insert later i want to get all the values of the controls of radiobutton list to use them in ...
0
votes
0answers
19 views

How to store selected item of flex combobox as an item renderer in datagrid into mysql?

I am using combobox as an item renderer in a flex datagrid. I want to save the selected value of combo box to mysql database. Can anybody help me regarding that?
0
votes
2answers
47 views

Change download url depending on browser

What I want to do is have a normal link for desktop browsers like so: <div style="text-align: center;"> <a href="http://db.tt/b6ecH2Dh"> <img src="img/download.gif"/> ...
0
votes
0answers
52 views

checkboxes not working correctly

I am having a problem with checkboxes. The value is inserted into MySQL, but will not record empty checkboxes. each time I add a element, (the checkbox is in that element), if it is checked, once ...
0
votes
0answers
19 views

xml office file into xml openoffice

I have some Java code which outputs XML Office files. Those files are then processed to become .doc files (talking about MS Word 2003). Is there a way (known frameworks, custom code, anything) to ...
0
votes
0answers
8 views

Deki is converting html tags into entities, how do I keep the tags as tags?

I tried linking the following: Net Logo tutorial on Youtube" and instead of a link, it got converted to: '<a href="http://www.youtube.com/watch?v=XJ-gO-yAwHU" ...
0
votes
2answers
102 views

Multiple SELECT statements in INSERT INTO query in SQL

INSERT INTO TextTable(Number, Tokens) SELECT (SELECT ID FROM Tureme WHERE leksem IN (SELECT Tokens FROM Text)), (SELECT Tokens FROM Text WHERE Tokens IN (SELECT leksem FROM Tureme)); ...
0
votes
0answers
33 views

VBA Process to add a date into a cell next to a inserted line

I have an issue that i am trying to resolve. Basically i have two worksheets in one workbook. Sheet1 = Input Sheet2 = Data In the "Input" sheet the user would copy a random amount of lines which ...
0
votes
2answers
187 views

SQL Insert Into - Multiple Rows - Oracle

Dear Stackoverflow users, I have a query where I am trying to insert data into my database that I have created by using SQL commands such as CREATE TABLE CUSTOMER ( REFERENCE NUMBER(5) PRIMARY ...
0
votes
1answer
33 views

If a SELECT “string” INTO var1 with a WHERE return no lines, does the string still get moved into var1?

MOVE "Y" TO :LKG-RETURN EXEC SQL SELECT "N" INTO :LKG-RETURN FROM SOME_TABLE WHERE ...
0
votes
1answer
46 views

PYTHON Add the contents of a string variable to the beginning of a function?

So what I have here is one function, which is in an object: class objectOne: def funct1(self): #Do Stuff And what I would like to do is have it so when I create two instaces of the ...
0
votes
0answers
208 views

Problem when insert record into google spreadsheet through Android

package com.f1; import com.google.gdata.client.spreadsheet.*; import com.google.gdata.data.*; import com.google.gdata.data.spreadsheet.*; import com.google.gdata.util.*; import ...
0
votes
1answer
32 views

I want to use two queries into one using a column from first query in the second one in MySQL

I have these two queries : The first one : SELECT * FROM item, user WHERE item_def = '289' AND item_quality = '6' AND user.steam_64 = item.steam_64 The second one : select count(item_id) ...
0
votes
0answers
120 views

Trying to insert variable data via webpage into SQL tables using C#

I a trying to insert data into a SQL table using a stored procedure. I am using multiple variables for this insert via a fill in from c#. When I click on the button, no data is passed to the table. ...
0
votes
3answers
64 views

Storing multiple values in one field

I have a script that will insert a value in a cell, in my database. That cell will contain 4 values total. It should look like this: 0;0;0;0 (Each '0', represents a value) How can I insert example ...
0
votes
1answer
35 views

Storing into a Java Array through OnClickListener

I'm sorry if this comes through as a "noob" question, but I'm really stuck and I couldn't find any help, no matter where I looked. The problem I'm having is this: The user fills out a textbox saying ...
0
votes
2answers
112 views

Loading text into OpenGL texture

I am developing openGL application on iPad and i came up to one quite large problem. I used already existing posts to learn that i can use UILabel to generate text into opengl texture, so i did that. ...
0
votes
0answers
181 views

“Syntax error in INSERT INTO statement”? vb 2010

My code is as follows: Dim cb As New OleDb.OleDbCommandBuilder(dataAdapter) Dim dsnewrow As DataRow connection.Open() dsnewrow = ds.Tables("Main").NewRow() dsnewrow.Item(1) = ...
0
votes
0answers
297 views

Import Large Excel CSV or xls file into phpmyadmin (6Mb)

phpmyadmin gives a timeout error if I try to upload my file. I have tried this 1 C:\wamp\apps\phpmyadmin3.2.0.1\config.inc.php Find the line with $cfg['UploadDir'] on it and update it to: ? 1 ...

1 2