Topic profile page for Datatype.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Datatype.
Topic "Datatype" was discussed 7,674 times on 371 sites in last 3 months
Started 2 days, 2 hours ago (2009-11-28 01:49:00)
by TerryRC
Is it possible to use the sync framework to sync the filesteam datatype from sql server 2008 on a server to sql server express on an occasionally connected desktop application?
Started 2 days, 6 hours ago (2009-11-27 22:32:00)
by reezan
Hi, I have to implement a column (TransactionCompleted) which will only hold two states Yes/No. I am using SQL Express and wonder which would be the best DataType to go for that column, if I prefer to display the data in a DataGridView column as CheckBoxes later in my application? Reezan.
Started 2 days, 6 hours ago (2009-11-27 22:32:00)
by reezan
[RESOLVED] SQLCE DataType Hi, I have to implement a column (TransactionCompleted) which will only hold two states Yes/No. I am using SQL Express and wonder which would be the best DataType to go for that column, if I prefer to display the data in a DataGridView column as CheckBoxes later in my application? Reezan....
Started 3 days, 21 hours ago (2009-11-26 07:23:00)
by steel
> Hi experts, I am going through the connections on one of the live servers and found that there are more than 1000 connections with the database and the query type is sp_datatype_info. Please help me in finding the exact source from where this procedure is called as we are having ODBC connections from JAVA applications. Please help me
Started 3 days, 21 hours ago (2009-11-26 07:17:00)
by ryanbesitulo
Experts, How to ignore null values in database access,my datatype is data/time,I get error while updating data"Datatype conversion error 3421 ",I use vb 6 and my database is ms access 2003 Thanks
Started 5 days, 19 hours ago (2009-11-24 09:07:00)
by Eisi1482
Hello community, I got a problem to display a DataGridViewComboBoxColumn with an user-defined datatype in my DataGridView. In our project we have an user-defined datatype called SimpleEnum which provides basic functionality to load data from fix tables and validate new data during runtime of the application. When the user-defined datatype is bound to a DataGridViewComboBoxColumn there is ...
Started 4 days, 22 hours ago (2009-11-25 06:09:00)
by hari
Hi, I ahave a code snippet like this, int func(unsigned char* data,unsigned int* len) { unsigned short* netLenPtr; netLenPtr= (unsigned short*)(data+ 30); *len = htons(*netLenPtr); ..... } I am getting an Exception data type misallignment after line "*modulus_len = htons(*...
Started 3 days, 21 hours ago (2009-11-26 06:51:19)
by nathan12343
I've got a function that finds out if the current page is a sub page of another. Lifted the code from a post here I think: This lets me add a style sheet according the the top level parent. Anyway. When testing the 404 page the header goes wrong: Warning: in_array() [function.in-array]: Wrong datatype for second argument in /home/fhlinux133/i/inq-chat.duttonsdev.co.uk/user/ htdocs/inq_...
Started 5 days, 20 hours ago (2009-11-24 07:51:00)
by StefLausanne
Hi All I always used a Date dimension with several years inside it. Recently I was involved in a project in which some people were arguing that having about 5 times the needed members will have a significant impact on performance. Since we are creating one cube per year we could restrict us to have only the members of the needed year. What do you think about this statement? Furthermore using ...
Started 5 days, 11 hours ago (2009-11-24 16:39:00)
by iman-shani
I have just started java language course in my college. i wrote this code System.out.println( "Welcom to java programming language." ); double d = 2 / 3; System.out.println( "Result is " + d); // getting the answer (Result is 0.0) but i should be some thing like this 0,66666666666666666666666666666667 my question is why this code is showin 0.0 what is...
Started 1 week ago (2009-11-22 21:07:00)
by NZSolutions
heys, the following code works in firefox, but not in my old friend IE... function newCode() { $.ajax({ url: 'get_products.cfc?method=new_code', dataType: 'json', success: function(data) { $('##coupon_uid').val(data); } }); } simply replaces existing text field value with new value from component. in IE it will work ONCE, then the button does nothing. works as it should...
Started 5 days, 23 hours ago (2009-11-24 05:04:00)
by JHA
1) Im using data loader to export data but for lookup relationship datatype it is showing id not actual record . 2) I haved exported data and then deleted using data loader but now im tryng to again insert those same records it fails with error " cannot specify Id in an insert call ". Please help... i will be thankfull to u. Regards, Jha
Started 5 days, 8 hours ago (2009-11-24 20:03:00)
by JHA
1) Im using data loader to export data but for lookup relationship datatype it is showing record id not actual record in csv file. 2) Same way when im trying to insert record for lookup relationship column by name not by record id it says error : "Item Entry: id value of incorrect type: notebook1" Please help... i will be thankfull to u. Regards, Jha ...
Started 2 days, 21 hours ago (2009-11-27 06:45:00)
by aca98atw
hi all, i'm attempting to load data from XML and use this data as variable values. My problem is, loaded XML data is always a String, but sometimes I want to load other variable types. There are several boring solutions to this, such using typeof to determine the the datatype of a variable and then using a function and switch statement to convert the XML data to the appropriate data type....
Started 2 days, 18 hours ago (2009-11-27 09:48:00)
by PJDM_Work
Here's the code: protected void Page_Load(object sender, EventArgs e) { //Create a DataTable instance DataTable table = new DataTable(); //Create 7 columns for this DataTable DataColumn col1 = new DataColumn("ID"); //... //Define DataType of the Columns col1.DataType = System.Type.GetType("System.String"); //... //Add All These Columns into ...
Started 1 day, 9 hours ago (2009-11-28 19:08:00)
by Sam
Hi, ** Please find SQL scripts down below ** I'm "trying" to use the new HierarchyID datatype in a new products database. I want to get a list of all the products in a category AND its child categories. I'm trying to write a stored procedure that receives a CategoryID and returns a list of products in that category as well as products in all the other categories that are under that ...