The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
16answers
27k views

Converting CSV File to XML in Java

Is there an existing application or library in Java which will allow me to convert a CSV data file to XML file? The XML tags would be provided through possibly the first row containing column ...
25
votes
7answers
23k views

Convert 4 bytes to int

I'm reading a binary file like this: InputStream in = new FileInputStream( file ); byte[] buffer = new byte[1024]; while( ( in.read(buffer ) > -1 ) { int a = // ??? } What I want to do it ...
9
votes
2answers
284 views

decimals, javascript vs C#

I am trying to convert a JavaScript hashing function to C# hashing to do the exact same thing. I'm 99% there but I hit a snag with decimals used in this custom function. Am not sure why but this ...
8
votes
5answers
2k views

Matching records based on Person Name

Are there any tools or methods that can be used for matching by a person's name between two different data sources? The systems have no other common information and the names have been entered ...
7
votes
2answers
209 views

byte[] to ushort[]

Here is my questions. Bear with me giving a little explanation: I am reading tiff image into buffer; Each pixel of my tiff is represented by a ushort (16 bits data, non-negtive) My image size is ...
5
votes
3answers
4k views

convert C# date time to string and back

I'm converting C# date time to string. Later when I convert it back to DateTime object it appears that they are not equal. const string FMT = "yyyy-MM-dd HH:mm:ss.fff"; DateTime now1 = DateTime.Now; ...
5
votes
2answers
2k views

Convert Latitude and Longitude to point in 3D space

I need to convert latitude and longitude values to a point in the 3-dimensional space. I've been trying this for about 2 hours now, but I do not get the correct results. The Equirectangular ...
5
votes
1answer
101 views

Best Practice on Data Conversation in a Rails app

I'm currently developing a large custom content management sollution in rails to handle many different content types (models) and their relations. The whole data model is build upon active record and ...
4
votes
6answers
90 views

Does exist ORM / Framework that converts data automatically when I want to change column datatype in table?

Assume that I have existing database with existing data. Is there any framework / ORM that generates data conversion SQL scripts when I need change column datatype? Of course there is problem with ...
4
votes
5answers
684 views

How to convert data stored in XML files into a relational database (MySQL)?

I have a few XML files containing data for a research project which I need to run some statistics on. The amount of data is close to 100GB. The structure is not so complex (could be mapped to perhaps ...
4
votes
4answers
2k views

Avoiding TSQL Data-conversion errors

I think this is best asked in the form of a simple example. The following chunk of SQL causes a "DB-Library Error:20049 Severity:4 Message:Data-conversion resulted in overflow" message, but how come? ...
4
votes
2answers
280 views

Excel time dd/hh/mm conversion to minutes only

How do I convert turn around time written in an Excel cell as (0D/1H/6), meaning 0 days, 1 hour and 6 minutes to minutes only in another or adjacent Excel cell. I would like to automate that to make ...
4
votes
1answer
300 views

conversion tool for xml to yaml?

I have an xml file structure and I want to convert it to yaml file structure and probably also for the future use. Could you please suggest/recommend me a conversion tool to convert xml to yaml?
3
votes
2answers
7k views

Problem convert column values from VARCHAR(n) to DECIMAL

I have a SQL Server 2000 database with a column of type VARCHAR(255). All the data is either NULL, or numeric data with up to two points of precision (e.g. '11.85'). I tried to run the following T-SQL ...
3
votes
2answers
6k views

Converting NSString to NSData and vice versa

I am having an issue while trying to convert NSString to NSData and vice versa. I am trying to store encrypted string to my database. For that I am using AES algorithm. Now what I am doing is I get ...
3
votes
2answers
455 views

Correct converting bytes from C++ to delphi AnsiString

I have dll which accepts Pointer to array of bytes from C++ and try to move this data into AnsiString the following way procedure Convert(const PByteArr: Pointer; ArrSize: Cardinal); export; cdecl; ...
3
votes
2answers
1k views

How to clear memory stream

I use this code to covert image from binary to image. public class ImageConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, ...
3
votes
2answers
348 views

Simple conversion to edgelist with R?

I need to do a simple data conversion in R for usage with igraph. My dataframe is in this format, grouped by GROUP: A GROUP 1 1 a 2 2 a 3 3 a 4 4 a 5 1 b ...
3
votes
1answer
863 views

How to do FLAC or mpeg with python

I'm looking for python code that can convert .wav or other format to FLAC or mpeg. I hope there is one that doesn't depend on other binaries or libraries and just pure python so that it can run ...
2
votes
5answers
2k views

How to output IEEE-754 format integer as a float

I have a unsigned long integer value which represents a float using IEEE-754 format. What is the quickest way of printing it out as a float in C++? I know one way, but am wondering if there is a ...
2
votes
7answers
1k views

How to convert data into DateTime object

How do I convert a date string, in the general form of "ccyymmdd" in to a DateTime object in C#? For example, how would I convert "20100715" in to a DateTime object. Please - No RTFM links to ...
2
votes
2answers
2k views

How to convert letters with accents, umlauts, etc to their ASCII counterparts in Perl?

I'm writing a program that works with documents in Perl and a lot of the documents have characters such as ä, ö, ü, é, etc (both capital and lowercase). I'd like to replace them with ASCII ...
2
votes
1answer
258 views

Read Values from .csv file and convert them to float arrays

I stumbled upon a little coding problem. I have to basically read data from a .csv file which looks a lot like this: 2011-06-19 ...
2
votes
3answers
586 views

Why am I getting a “[SQL0802] Data conversion of data mapping error” exception?

I am not very familiar with iseries/DB2. However, I work on a website that uses it as its primary database. A new column was recently added to an existing table. When I view it via AS400, I see the ...
2
votes
3answers
235 views

Optimize Perl script - runs too slow on 40GB+ files

I made the following Perl script to handle some file manipulation at work, but it's running far too slowly at the minute to be put in production. I don't know Perl very well (not one of my ...
2
votes
4answers
385 views

Fast integer to decimal conversion

Given an (unsigned) integer, what is the generally fastest way to convert it into a string that contains its decimal representation? The naïve way of doing that is repeatedly dividing by 10, ...
2
votes
7answers
8k views

Reading Paradox Database files

I'm working with a client who has an existing system, built on what is apparently a Paradox database. I've got the database, in the form of a zip file containing .DB, .MB and .PX files, one for each ...
2
votes
1answer
76 views

Python units module for conversion between liters and milliliters not working

Using the 'units module for performing basic conversions between units. However it does not seem to be possible to perform an easy conversion between liters and milliliters...why? >>> from ...
2
votes
4answers
279 views

Converting T-SQL Left Join Subqueries to MS-Access

I need help in converting this T-SQL query to MS ACCESS. The error that I'm getting is JOIN expression not supported. Update: I can't add: DDA ON TT.[Description] = DDA.AccountTypeDesc AND ...
2
votes
1answer
3k views

Converting MM:SS.ms to seconds using MS excel

I am looking for a neat way of converting a cell from Minutes:Seconds.Milliseconds to Seconds.Milliseconds i.e. 11.111 = 11.111 1:11.111 = 71.111 I have something in place at the moment but ...
2
votes
2answers
283 views

Change data type of keys in array from numeric to string

I have two arrays with numeric keys. This is a small example: $test_a = array(1 => 'one', 2 => '二'); $test_b = array(2 => 'two', 4 => 'four'); I want to merge them, with array_merge(), ...
2
votes
2answers
113 views

What's a good way to abstract conditional logic for “weird” hard-coded values?

I'm working on a pretty simple problem, with design ramifications. Please bear with me, while I describe the situation in vague terms. I have an entity, call it EntityA: EntityA{ attr1 : type1; ...
2
votes
3answers
3k views

SQL Server converting a variable varchar field to money/decimal/something with decimal places

I'm looking for an elegant way to convert a field of type varchar, with variable data in it, to a data type which can be used for mathematical operations sample data from the field (excluding quotes) ...
2
votes
2answers
293 views

SSIS Data Conversion numbers forces rounding

Situation: A column containing an number is imported into SSIS as a string. We are converting the string to either an integer or decimal number based on what the data type is expected to be using the ...
2
votes
3answers
608 views

Converting a database from DBF to SQL without recoding

I've seen many solutions on how to convert DBF files into a SQL database, but is there anyway to convert the tables without re-coding the program that refers to the DBF files? For example convert the ...
2
votes
1answer
208 views

SSIS User-Defined Types

We are trying to import data into our SQL 2005 database from flat files using SSIS packages. Our database has a CLR User-Defined Type that we use to hold some related information, lets call it ...
2
votes
2answers
112 views

Are non-latin numerals in Windows SBCS codepages used by any Microsoft libraries to represent numerical data in C strings?

I'm trying to write a parser for "text" files which I know will be encoded in one of the Windows single byte code pages. These files contain text representations of basic data types, and the spec I ...
2
votes
1answer
550 views

Using antlr and the DLR together — AST conversion

I have an AST generated via ANTLR, and I need to convert it to a DLR-compatible one (Expression Trees). However, it would seem that i can't use tree pattern matchers for this as expression trees need ...
2
votes
1answer
827 views

Data Conversion Issue in SSIS package - Text to GUID

I am developing a SSIS package that will open an Excel spreadsheet and import the data into a database table in SQL Server 2008. When I try to convert the Excel column data type: Unicode String ...
2
votes
3answers
1k views

MVVM and Conversion Errors in WPF - Combining ConvertBack Exceptions from View with Validation Errors from Model?

I am developing a WPF application using the MVVM pattern as described by Josh Smith in the article at http://msdn.microsoft.com/en-us/magazine/dd419663.aspx. I can't figure out a good way of reacting ...
2
votes
0answers
55 views

How to create a GIT repository from a series of periodic development snapshots? [duplicate]

Possible Duplicate: How do I convert simple non source controlled project backups into a versioned git repository? Suppose I developed some software without GIT, and throughout development ...
2
votes
0answers
115 views

Python library for data conversion

I'm writing a RESTful service using Pyramid. My data is stored as SQLAlchemy models. I need to convert it to elementary data structures (such as dicts, lists, ints, etc.) so that I can further render ...
2
votes
1answer
132 views

How to get ip address from NetService

When I get a NetService object,I try to do: NSNetService *ss=[netArray objectAtIndex:indexPath.row]; ss.delegate=self; [ss resolveWithTimeout:3.0]; On the delegate method: ...
1
vote
7answers
170 views

get integer / float from string in PHP

I ran into an issue with a data feed I need to import where for some reason the feed producer has decided to provide data that should clearly be either INT or FLOAT as strings-- like this: ...
1
vote
3answers
507 views

C++ convert date formats

I would like to convert an int date like: 20111201 to string: 01DEC2011 Is there a fast date format conversion built into C++ (or maybe a bash system command I can execute instead) to do ...
1
vote
3answers
342 views

How to replace all non-sequential GUIDs with sequential ones?

I have a brown-field SQL Server 2005 database that uses standard, unsorted GUIDs as the majority of the primary keys values and also in clustered indexes (which is bad for performance). How should I ...
1
vote
3answers
52 views

Starting project with 100s of data conversions into a SQL database. What is the correct way?

We will have about 200 files (csv, excel, PDF, screen scrape) that all need to go into a SQL db. So there will be a unique procedure for most data sources Only 2 ideas we have so far are: Write ...
1
vote
7answers
403 views

use type() information to cast values stored as strings

In my application I have generated a number of values (three columns, of type int, str and datetime, see example below) and these values are stored in a flat file as comma-separated strings. ...
1
vote
1answer
36 views

Issue with Time Conversion

I have write code to get time from long and get long from time. While I am running I can't get proper datetime from long. Can you help me to fix this issue. TimeConverterUtil.java import ...
1
vote
1answer
76 views

How should i return an object from a conversion function if the class of the returned object is defined later?

class time24; class time12 { operator time24() { ... return time24(temp) // error } } class time24 { ... }; error C2440: '' : cannot convert from 'int' to 'time24' how else can i return ...

1 2 3 4