A record is a value that contains other values, typically in fixed number and sequence and typically indexed by names.

learn more… | top users | synonyms

0
votes
0answers
22 views

Fill dataset from another dataset

I'm trying to store un saved records based on query in dataset to show it in grid view to the user with no luck, How can I save them in dataset using the following code ? for (int i = 1; i < ...
0
votes
0answers
18 views

only local player is shown in game center

I am trying to develop game game-center compatible. All results pushed in game center are shown to current local player and aren't for my other app id's. I've tried on different game-center accounts ...
0
votes
0answers
13 views

phpMyEdit knows the records are there - they're just not displaying

So I've successfully gone through all the necessary steps as stated in the README file for phpMyEdit. The final result is supposed to display here: http://torbaybusroutes.co.uk/fleet/index.php But ...
0
votes
1answer
88 views

Tlistview - There is any component like Tlistview but with DB access?

I've been trying to make a creative thing to avoid the dbgrids, and i've found the Tlistview (using the one from alphaskins, tslistview), and seems to be a nice way! The problem is, i don't want to ...
-3
votes
0answers
22 views

Some basic cookie use questions

I have a small search engine. when people query records I want to add a link to "save to favorites" which I've seen on many sites and have read several posts here. My records have primary key IDs, so ...
1
vote
1answer
51 views

ocaml - array of record with mutable field

I'm new to OCaml and i'm trying to understand the concept of mutable record field. I'd like to create an array of records and that record contains a boolean mutable field. So i did something like: ...
-1
votes
0answers
46 views

VB 2010 text files, records

Is there anyway I can alter this code so that it creates records for each student? e.g. when the user adds a student, they are required to enter a record number so that they can use this record number ...
0
votes
3answers
47 views

C# Using a Struct to insert fields and records?

I want to insert some fields and records into a file I created using a struct. I'm not sure if I asking the question in a right way but here is the code I wrote: struct Student { public string ...
1
vote
1answer
49 views

C# How to create a file contains 4 fields or more with records? [closed]

I have this code to create a file called "SomeFile.txt" FileStream fsw = new FileStream("SomeFile.txt", FileMode.Append, FileAccess.Write); I want to know how to insert 4 fields and about 10 ...
0
votes
1answer
50 views

sql statement with codeigniter active records

I have a table "login_attempts" with the fields: id, ip, login_name, time. I want to achieve this: Count the number of occurrences for the last 10 minutes for a particular 'login_name'. I'd ...
0
votes
2answers
119 views

How to add records to MS Access via Java

Im trying to add a row of records to my already existing MS database. Basically these records are to be entered into a GUI and then added to the database when the user clicks submit. I've created the ...
0
votes
1answer
75 views

Delphi records: can we do aggregate assignment?

Is there a way to perform aggregate assignment for Delphi records like we can in C and C++? i.e. is there an equivalent syntax for the following: struct silly { int x; int y; }; // ... silly s = { 4, ...
-1
votes
1answer
92 views

How to list multiple records in an .asp classic page

Database screenshot This is a database that i am trying to link to a .asp classic page. I was wondering if there was a way to enter multiple records into the same .asp page and/or to enter a specific ...
1
vote
2answers
55 views

MySQL - combining two records, different fields from each record

I am updating an existing database to simplify it and extend its functionality. I have a table as follows: ID Parent increment info 1 info 2 1 103 0 25 1 2 103 ...
0
votes
2answers
32 views

R Programming - Prevent “apply” from repeating results beyone the range of data

I have a data set (in a data frame). I am using apply to add a new column to the data set in which the rows of the new column execute a function using elements from other columns within that row. ...
1
vote
3answers
82 views

Show specific column by ID in MySQL and PHP

I have problem (i think for you is simple to solve) with PHP and MySQL. I have database, that call "tekst". There is 3 column: id (autoincrement), date (timestamp), tresc (text) and the site: ...
4
votes
2answers
112 views

Erlang records with both type and value restrictions as well as default values

I am trying to write a record which represents a bank account: -record(account, { name :: atom(), type :: atom(), balance = 0 :: integer() }). I also want ...
0
votes
2answers
112 views

Prevent Duplicate Insertion on DB When page refresh - Asp.net

(ASP.NET) How do i prevent duplicate records insertion in my database when user refreshs the page after post back. i know it can handle by redirecting the page. it and also handle through the check ...
0
votes
2answers
85 views

LINQ update table replacing NULL with EmptyString 1 million records

I have been trying to update a table that has 1 million records and replace the NULL values of 4 of its fields to a empty string ( "" ). Foreach and for seem to take a long long time. It took me 1 ...
0
votes
1answer
32 views

How do I make a Record in MYSQL [closed]

How do I make a counting Record in MySQL?
0
votes
1answer
101 views

Salesforce Split one object into two(parent-child relationship)

I have data coming to a salesforce object from a third party tool like this: ID | field1 | field2 | criteria1importance | criteria1score | criteria1competitorscore | criteria2importance | ...
1
vote
2answers
76 views

Show number of factories behind categories in sidebar. codeigniter

I have a sidebar with categories. when i click on one categorie it shows me the factories who are located in that category. I did this using joins in codeigniter. Now i want to show how much ...
0
votes
0answers
109 views

Dreamweaver Changing Data on a mySQL

I was trying to use the dreamweaver Update Record to create a page where users could edit their accounts but once I submit nothing is updated in the database. Any suggestions? The code is below. Help ...
0
votes
1answer
43 views

Get the difference of Values between two records in sqlite

I have a sqlite table with the following data, _Id Mode Reading 1 Water 100 2 Water 300 5 Water 496 6 Water 600 ...
-2
votes
2answers
476 views

Copy rows from one table onto another using INSERT query [closed]

I have a table with 158 columns and 22,000 rows and I have another empty table where I want insert values dynamically based on the WHERE condition coming from the user. The SELECT query will look ...
-1
votes
2answers
26 views

Store records with variable count of fields [closed]

I want to store some records in a database. The number of that record's fields is variable. for example the first record has 2 fields and the 2nd record has 5 fields. how can i accomplish this?
0
votes
2answers
31 views

MySQL query for counts by state

Here is my setup database = mine table = mytable field = hair field = eyes field = state Currently I am able to run a query that gives me the count for anyone that has "brown" in the hair and eyes ...
2
votes
1answer
104 views

Adding methods to records type from Delphi in DWScript

After I've created a TRecordSymbol, how do I add a constructor and methods to it? I've tried using TMethodSymbol with little success, as I can't find a way to define the execution of the method.
1
vote
1answer
23 views

Show 1 factory (individual) on page when factoryname is clicked

i have a searchfunction for factories. when i search for a factory and click on the name (a hyperlink) i want to show the individual factory on a new page. You can see it here: ...
0
votes
2answers
95 views

Repeated Rows Sql Query

I am running a query and I am getting duplicated rows. I dont understand why this is. Here is my Query: SELECT c.FName, p.ProductName, s.Description, s.Quantity, s.Price ...
-2
votes
3answers
39 views

Counting Retrieved Records from SQL Server

I just want to ask if how I may be able to create a dynamic numbering column based from what I will be retrieving from the database? Ex. Table Reservations ...
0
votes
2answers
186 views

ROWTYPE definition in pl/sql

I have written a PL/SQL Procedure which compares data between two tables and print the difference if any, but the twist is the table names to the procedure is dynamic. Here is the procedure create or ...
0
votes
4answers
42 views

Rails — Select records based on defined attributes

I want to select records for a model based on a defined attribute. I have a Docket model. Dockets have many Statuses. (I want to record each status change to maintain status change history and some ...
-2
votes
1answer
54 views

how to insert records on a table having one is to many relationship in sql server 2005 from c# [closed]

Im having trouble in inserting records in sql server from c#(windows application) wherein the tables has a one to many relationship, the app always give me an error. Please help me to know this one. ...
-4
votes
3answers
167 views

Counting data in ACCESS database? [closed]

I have 3 records in my database (database type : microsoft access ) . they are personal information of 3 Customers. Now in interface I have button in the name of "Count Customers" . when I push it I ...
0
votes
3answers
74 views

same query returnd different number of records every time

This query result every time differently: update product_models set category_id = (select id from categories order by RAND() limit 1) Different counts repeatedly: 884 record(s) were affected 878 ...
0
votes
1answer
169 views

Updating arrays values existing stock levels and prices in database using PHP

I am creating a website when users can purchase products. I have created an admin side of this website and am trying to create a page where an admin, once logged in, can update the stock levels of a ...
0
votes
0answers
19 views

comparing counts of child table records

I have the below 3 tables: Table1 - Parent Table Table2 - A child table that has many records for each record in Table1 (row_id in Table1 maps to par_row_id in Table2) Table3 - A child table that ...
0
votes
1answer
147 views

dynamic record access

i'm relativity new to delphi and trying to write a complex search algorithm for my a2 computing coursework. i need to access my record field from a string variable. e.g. ...
0
votes
1answer
173 views

Laravel - Working with multiple records, how do I pull the data I need?

WARNING:: LARAVEL SUPER-BEGINNER, BE GENTLE:: In my controller: public function get_index(){ $lease_rates = DB::table('lease_rates'); $this->layout->nest('content','admin.lease_rates', ...
1
vote
1answer
379 views

Update Statement in SQL Server

I am trying to update some records after a new record was inserted where it was not updating and I'm not getting any error. Here is my code: If txtSearch.Text <> txtUserID.Text Then ...
3
votes
1answer
58 views

Mysql Join Multiple Table Excluding Some Records

I am not very good in MySQL so need some help. I have three tables author (author_id, name), book (book_id, name), publisher(id, author_id, book_id) I want to fetch only those authors who have ...
-1
votes
2answers
287 views

Set a label text message to count the records

Okay. I'm gonna ask it again with full clear explanations. I want to add a label text message on my admin.aspx like this (please see the image below...i just edit it in paint so that you can see the ...
0
votes
2answers
80 views

How to prevent a struct member value from being overwritten when updating a file c++

Let's say I have a binary file, a text file, and 3 struct members. I already wrote in a set of numbers for struct member 1, lets call this one "score1". Now, I want to update the binary file with ...
-2
votes
1answer
212 views

C# Add rows to Microsoft Access table

I want to import an Excel file to a Access table. I have a code that works well the first time. It is making a loop through all the sheets of the excel file, and it inserts the records. At the ...
2
votes
1answer
146 views

DATA and IMAGE are populated in two rows. I want to bind them in a single row

I'M GOING TO ASK THIS FOR THE SECOND TIME. I'M GOING TO MAKE IT CLEAR SO YOU CAN HELP ME :) Okay let's start. I have a Registration Process. I split the process into two page. The first page is for ...
0
votes
3answers
184 views

How can I replace a string in a MySQL database for all tables in all fields in all rows?

I have a Moodle installation that I migrated to another server and I need to change several references to the old domain. How can I replace a string for another string in MySQL for a given database ...
1
vote
2answers
346 views

Adding data to XML file

My XML file is: <?xml version="1.0" encoding="utf-8" ?> <people> <person index="1" name="Zlecenie numer jeden" beneficiary="Kowalski" description="Proste zlecenie jakiejs strony czy ...
1
vote
1answer
92 views

Add missing records into mysql table based on primary key

I have a mysql table with members, about 1400 records, and I am going to switch to a new membership software (amember v3 to amemberv4). The problem is that amember v4 is a whole new program so the ...
0
votes
1answer
350 views

Insert Records From GridView to another GridView Page

Can somebody help me? I am developing a website using Microsoft Expression Web. My database is MS Access. My page extension is .aspx (ASP.NET) I have two gridview: Pending Records GridView should ...

1 2 3 4 5 6