The data-type-conversion tag has no wiki summary.
-1
votes
1answer
16 views
GPS Coordinate - Data type in C++
I am working on C++ with GPS coordinates, as the format is usually as following "338766,703"
I tested this data with some datatypes however after processing with vector, the output is just "338766" I ...
0
votes
1answer
40 views
How to convert integer into categorical data in R?
My data set has 8 variables and one of them is categorical but R thinks that it is integer (0's and 1's). What I have to do inorder to covert it into categorical?
> str(mydata)
'data.frame': 117 ...
0
votes
2answers
39 views
BeanUtills Date conversion Issue
I tried to copy Data(java.util.Date) value from source to target using BeanUtills. It gives a Date to String conversion exception.
what will be the solution for that kind of issue?
My ...
0
votes
1answer
29 views
Converting 16-bit short to 32 bit float
In the tone generator example for iOS:http://www.cocoawithlove.com/2010/10/ios-tone-generator-introduction-to.html
I am trying to convert a short array to Float32 in iOS.
Float32 *buffer = ...
-1
votes
0answers
37 views
How to Convert HEX to Image: and display in PictureBox
I am trying to convert HEX data to an Image:
I don't know the Height, width, pixels of the Image. An external device is sending me these Images.
I have converted the HEX data to byte[]:
public ...
1
vote
1answer
112 views
Haskell How to convert general tree to Data.Tree
I have declared my general tree as follows
data GeneralTree a = EmptyTree | Node a [GeneralTree a]
I have built an instance of this GeneralTree. Now I want to convert it to the Tree type declared ...
1
vote
1answer
48 views
How to convert signed 32-bit int to unsigned 32-bit int in python?
This is what I have, currently. Is there any nicer way to do this?
import struct
def int32_to_uint32(i):
return struct.unpack_from("I", struct.pack("i", i))[0]
4
votes
2answers
51 views
Getting wrong result when using bigint in sql query
I have passed below AmountDue in query but am getting wrong result. AmountDue data type is Float.
AmountDue: 2412880.28
AmountDue: 561.06
My query:
select CONVERT(varchar,(select ...
0
votes
0answers
29 views
ORACLE vs SQL Server from text data type point of view
These days I am facing a problem related to text datatype differences between Oracle and SQL Server.
More exactly I am comparing a concatenation of chars from Oracle with a varchar column from SQL ...
1
vote
1answer
44 views
NullPointerException when using DatatypeConverter.parseHexBinary() [duplicate]
Am using parseHexBinary method of javax.xml.bind.DatatypeConverter but its giving me
java.lang.NullPointerException
at ...
0
votes
2answers
84 views
Get HBITMAPs For *ALL* Sizes and Depths of a File Type Icon (C++)
Compiler: MinGW/GCC
I'm trying to get the HICON of a file type based on what icon windows has registered for that file type, and then grab all of the HICON's images.
The problem is, I can't seem to ...
0
votes
1answer
64 views
Integer.parseInt does not parse String to int
The code below is from a Servlet trying to read data from a submitted html form. The variable fieldValue is a String and prints correct value (like so BizStr: 5) but when I try to parse this value to ...
6
votes
3answers
62 views
Is it possible to change data type from String to Date
I'm getting in trouble where I was coding for connection using OpenX API with XML-RPC2. I get the problem that the data type is required by the fire function is the dateTime.iso8601.
This is my code:
...
0
votes
1answer
81 views
pulling data from MySql Server using SQL server openquery
I am trying to pull data from Mysql server using SQL server OPENQUERY function. When I run a query to count the records that are in thew mysql server I get the value no problem
-this query works and ...
0
votes
1answer
18 views
SQL Server convert for batting average
And thanks in advance for help..
I am writing a very simple stats tracker for my softball team.. I know how to calculate the batting average, but I need 3 decimal places to show in the result field ...
0
votes
0answers
13 views
Convert Ascii file(IEC) to dll or two column file
I have a an *.IEC file like the one that follows.
A004 DET02 1 1 0
A004 361.080000 361.180000 4096
...
1
vote
1answer
41 views
How is this happening?
I am using an 8-bit Microcontroller. And this is the calculation that i want it to do:
unsigned int Vin_kl30 = 0;
unsigned int val_kl30; // val_kl30 gets the value from ADC.
int Vref = 5;
Vin_kl30 ...
1
vote
1answer
94 views
JSON data from google spreadsheet
I went through this fiddle which have a sample of three dropdown with json data. I have a sample google spreadsheet here. Now is it possible to render this spreadsheet data to the example given at ...
1
vote
2answers
52 views
unable to cast object of type 'system.int32' to type 'system.int32[] '
I get the above error in the fourth line. How do I (assuming I have to) convert the value to have the same datatype on both sides?
dsOrderList = objResult.ds
For Each drow As DataRow In ...
0
votes
1answer
40 views
Convert numeric to date
I'd like to convert this type of numeric values to a date but it doesn't work.
20100727 for instance
I tried to convert the numeric to character and applied this :
as.Date("20100727", "Y%d%m")
...
-2
votes
3answers
70 views
C unsigned char arithmetic operation does not works as expected
Here is the my snippet of code;
Npp8u * imageHost;
typedef unsigned char Npp8u;
...
for (int i=0;i<nHeight;++i)
{
for (int j=0;j<nWidth;++j)
{
...
0
votes
1answer
74 views
Transform from [[Char]] to own data type in Haskell
scanl (\exp y -> scanl (\x -> if (isLetter x) then update exp (Literal x) "" else
if x=='+' then update exp Epsilon "+" else
if x=='*' then update exp ...
2
votes
1answer
238 views
SSIS Script Component Transformation C# Code Date Conversion
I'm creating SSIS packages to import large Fixed Width text documents and need to transform various fields. One such field represents dates and is 8 characters wide. The format is "yyyyMMdd" and like ...
0
votes
1answer
64 views
Passing records from pl-sql to C# via ODP
I'm working on a project which has a business logic on Pl-Sql and GUI in C#.
I have a record type in Pl-Sql representing files table as:
type file_record is record(
id number
...
0
votes
2answers
36 views
Variable data type and changes to it
I am trying to find out a data type of a certain variable (it is a column in a db in RoR application). I would like to format it as a number with 2 decimals, but I want to first find out if it is a ...
1
vote
2answers
64 views
Type Casting from char * to int
how can i store the value pointed by char pointer into an integer variable. Suppose i have the following code
main ()
{
int i;
char *tmp = "10";
i = (int)tmp;
printf("value of i is ...
3
votes
1answer
56 views
Macro to cycle through and allocate data to members of structs incorrectly recognises struct member as pointer
My problem is that atoi is converting a string's hexadecimal memory address to decimal, instead of what's contained within the string. It is doing this during a macro. Why is it interpreting ...
0
votes
3answers
76 views
data type: float, long conversion in C
I was reading C primer plus, in chapter 3, data type, the author says:
If you take the bit pattern that represents the float number 256.0 and interpret it as a long value, you get 113246208.
I don't ...
1
vote
2answers
35 views
How to convert geographic data to CSV
I am trying to obtain accurate site geometry for a particular location in Autodesk Revit. The site in question is located near 19621 Waters Road, Germantown MD 20874-0000. The problem is that I can ...
1
vote
0answers
36 views
File getting truncated while conversion
When I am converting a folder with many files from ANSI(windows-1252) to UTF8, some of the files are getting truncated while a file with small size was completely blank. I tried converting the files ...
0
votes
1answer
42 views
Alter Object Type Definition in Oracle to add more columns
I am using a custom type with around 36 different data columns as an array in my PL/SQL procedure which allows me return data in the form of array, which i modify at my front end as required. As per ...
0
votes
0answers
20 views
Convert Complex Bean to String and String to Bean
I have this bean:
public class Person {
private int id;
private String name;
private List<Contact> contacts;
private User user;
//with get and set
}
public class Contact {
...
1
vote
1answer
83 views
character array to floating point conversion
I am trying to convert the output buffer(character array)
of the code below to floating point format for further calculations.
Can anybody tell me how to do it.
#include "usbtmc.h"
#include ...
0
votes
1answer
36 views
Reformat From String into Decimal
i had data = 137500 as double variable, and i converted with DecimalFormat into Rp.137.500,00 and set to a textfield.
how do i reformat from texfield to 137500. cz i want to multiply from that.
0
votes
1answer
40 views
Float value conversion in the database
In my database some fields (amount, balance) are assigned as floating value, but now i have a problem with that .if the amount is 1.56 it will take 1.6
then i alter the table using Round(amount,2)
...
0
votes
1answer
135 views
FFMPEG audio decoding: efficient conversion from short to float sample buffer
I am using the FFMPEG avcodec_decode_audio* to decode audio input files of various types. The resulting samples are of type SHORT.
These samples are processed with another library which requires the ...
0
votes
1answer
125 views
TryParse or Try/Catch equivalent in Crystal Reports?
I have created a report in Crystal Reports which takes a text column and splits it based on a delimiter, then the first part of the array is converted to number, the second part converted to date. We ...
0
votes
2answers
52 views
oracle convert to number
I am trying to convert 193 to 1000000193 in oracle. 193 could be any number less than 1000000000
This does not work.
select to_char(193,'1000000000') from dual;
2
votes
1answer
408 views
Create an object from JSON (GSON: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING)
I want to read the result of a GET method of REST services, using a Client Application that I build using HttpUrlConnection. That method returns information about an User. After read it, I want to ...
2
votes
2answers
74 views
What is the behavior of an unsigned int converted to an unsigned char in the C99 standard?
For example:
#include <stdio.h>
int main(void){
unsigned int x = 64;
x += 1023;
unsigned char y = x;
printf("%u\n", y);
return 0;
}
The variable y holds the value 63 on ...
0
votes
2answers
66 views
HttpURLConnection - returned format
I'm using HttpUrlConnection to consume REST services. When I do GET, like the one I show below, I don't want to get the information that is returned char by char. I want to get the result in the ...
0
votes
1answer
55 views
SQL server - Conversion failed error but not really
I've got a user-defined function to split lists of integers into a table of values. I'm using this to parse input to select a set of records for a given set of types or statuses.
This works:
select ...
0
votes
1answer
59 views
Table locking behaviour of SQL Server 2005 while extracting data from Oracle
I am trying to understand a SQL Server behaviour in below case.
I am fetching around half million rows from Oracle into a SQL Server 2005 database using linked server created in SQL Server. I am ...
4
votes
3answers
199 views
Format Stones and Pounds correctly?
I have a chart used to display weight in Stones and Pounds (lbs).
The chart is populated by data from a record, for weight the data type is Double.
The record data is edited at runtime and I need to ...
0
votes
1answer
154 views
SQL Server Convert Decimal
I need to convert the Bacice Salary to decimal values, where I want to give the
SELECT CONVERT(DECIMAL(10,2)
This is my procedure:
ALTER Procedure [dbo].[buson_getEMPLOYEEIDNAME_s]
(
...
0
votes
1answer
100 views
Is it ok to use int to convert CHARACTER(2) to SMALLINT in DB2?
I have two tables having the same value in different data types.
One is CHARACTER length 2 and another is a SMALLINT.
How can I compare both in a where clause?
I have INT(CHAR_COLUMN_X) = ...
0
votes
1answer
222 views
Converting the value of a string textbox in java to an integer so the value can be used in multiplication
Hey I am trying to convert string text boxes so i can multiply two variables and the display it in a third text box. My text boxes are txtTotalPre and i am trying to multiply this number by 1 and then ...
0
votes
1answer
73 views
How to implement an interval datatype in SQL Server
I wish to store the length of time a task should take to be completed. In Oracle, I would use an Interval datatype for this.
Is the best method for implementing this functionality in SQL Server? ...
0
votes
1answer
221 views
Remove Insignificant decimal places when converted to string (C#)
I have a property which has decimal datatype let's say "Interest" then I have another property of string type let's say "InterestString".
Properties
public decimal Interest { get; set; }
public ...
1
vote
2answers
142 views
What VHDL datatype should I use for a memory address?
I'm developing a description of a BIST engine, and I've been asked by my manager to transition from Verilog to VHDL. I'm very rusty with VHDL, and I can't figure out the right datatype to give to the ...





